Updated readme.txt and changed arduino.berlios.de links to www.arduino.cc

This commit is contained in:
David A. Mellis 2006-03-21 00:19:51 +00:00
parent 512b1a0a00
commit a0a21caa22
2 changed files with 8 additions and 6 deletions

View File

@ -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);

View File

@ -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