From a0a21caa224de520a6a9a75c63a1ec5d2a830186 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Tue, 21 Mar 2006 00:19:51 +0000 Subject: [PATCH] Updated readme.txt and changed arduino.berlios.de links to www.arduino.cc --- app/Editor.java | 4 ++-- readme.txt | 10 ++++++---- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/app/Editor.java b/app/Editor.java index b0f80df85..14deb4a50 100644 --- a/app/Editor.java +++ b/app/Editor.java @@ -818,10 +818,10 @@ public class Editor extends JFrame // }); // menu.add(item); - item = newJMenuItem("Visit arduino.berlios.de", '5'); + item = newJMenuItem("Visit www.arduino.cc", '5'); item.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { - Base.openURL("http://arduino.berlios.de/"); + Base.openURL("http://www.arduino.cc/"); } }); menu.add(item); diff --git a/readme.txt b/readme.txt index d7d70cb0c..acd20b3ce 100644 --- a/readme.txt +++ b/readme.txt @@ -5,8 +5,8 @@ can be connected to software on your computer (e.g. Flash, Processing, MaxMSP). Arduino is an open source project, owned by nobody and supported by many. -For more information, see the website at: http://arduino.berlios.de/ or the -forums at http://arduino.berlios.de/cgi-bin/yabb/YaBB.cgi +For more information, see the website at: http://www.arduino.cc/ or the +forums at http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl The Team is composed of Massimo Banzi, David Cuartielles, Tom Igoe, David A. Mellis and Nicholas Zambetti. @@ -48,9 +48,11 @@ Updated avr toolchain. printInteger(), printHex(), etc. now handle longs. millis() fixed (now overflows after days, not minutes) Fixed path to java in Windows run.bat. -Added Matrix and Sprite libraries. -PWM now working on pin 11 (as well as 9 and 10). +Added Matrix and Sprite libraries (written with Nicholas Zambetti). +PWM now working on pin 11 (in addition to pins 9 and 10). Slowed PWM frequency (on all three PWM pins) to 1KHz. +Now give an error if compiled sketch is too big. +Fixed abs(), min(), max(), and constrain() macros. 0003