2005-10-04 11:28:33 +02:00
|
|
|
Arduino is an open-source Physical Computing platform based on a simple
|
|
|
|
i/o board and a development environment that implements the Processing/Wiring
|
|
|
|
language.
|
2005-08-25 23:06:28 +02:00
|
|
|
|
|
|
|
Arduino is an open source project, owned by nobody and supported by many.
|
|
|
|
|
2006-01-13 00:24:12 +01:00
|
|
|
For more information, see the website at: http://arduino.berlios.de/ or the
|
|
|
|
forums at arduino.berlios.de/cgi-bin/yabb/YaBB.cgi
|
2005-11-29 14:42:50 +01:00
|
|
|
|
2005-10-04 11:28:33 +02:00
|
|
|
The Team is composed of Massimo Banzi, David Cuartielles, Tom Igoe,
|
2006-01-13 00:31:40 +01:00
|
|
|
David A. Mellis and Nicholas Zambetti.
|
2005-08-25 23:06:28 +02:00
|
|
|
|
2005-10-04 11:28:33 +02:00
|
|
|
Gianluca Martino works with us on many projects providing help, ideas and
|
|
|
|
taking care of the production.
|
2005-08-25 23:06:28 +02:00
|
|
|
|
2005-10-04 11:28:33 +02:00
|
|
|
Yaniv Steiner and Giorgio Olivero have been supporting the project and are
|
|
|
|
working at using it with the Instant Soup platform.
|
2005-08-25 23:06:28 +02:00
|
|
|
|
2006-01-13 00:24:12 +01:00
|
|
|
Arduino uses the GNU avr-gcc toolchain, uisp, avr-libc, avrlib, and code
|
|
|
|
from Processing and Wiring.
|
|
|
|
|
|
|
|
UPDATES
|
|
|
|
|
2005-11-28 14:31:08 +01:00
|
|
|
0003
|
|
|
|
millis() now updates every millisecond instead of every second.
|
2005-11-29 14:42:50 +01:00
|
|
|
Keyspan and FTDI USB drivers included with Mac and Windows distributions.
|
|
|
|
Bootloader included with Windows distribution (it was already in the Mac dist).
|
2005-11-28 14:31:08 +01:00
|
|
|
Reversed the analog input pins to correspond to newer boards. This means
|
|
|
|
a call, for example, to analogRead(0) must be changed to analogRead(5) in
|
|
|
|
order to read the same physical pin.
|
|
|
|
Now flushing the serial port before uploading (should fix some errors).
|
|
|
|
Added a printNewline() function.
|
2005-11-29 14:42:50 +01:00
|
|
|
Updated icon of the Windows executable.
|
2005-12-03 18:03:26 +01:00
|
|
|
Improved accuracy of the delayMicroseconds() function.
|
2005-12-06 12:08:25 +01:00
|
|
|
New blue color scheme and icons courtesy of Noah Shibley (colors are hardcoded
|
|
|
|
into the source to ensure consistency with image files).
|
2006-01-13 00:31:40 +01:00
|
|
|
Serial monitor added (click the toolbar button to turn it on or off). Baud
|
|
|
|
rate is controlled by the serial.debug_rate field in preferences.txt, defaults
|
|
|
|
to 9600. Icon and implementation from Wiring.
|
|
|
|
Serial port menu now automatically refreshes when opened.
|
|
|
|
Created Xcode project for building Arduino on the Mac (doesn't yet regenerate
|
|
|
|
the grammar files or package the distribution); active target should be "App".
|
2005-11-28 14:31:08 +01:00
|
|
|
|
2005-10-04 11:28:33 +02:00
|
|
|
0002 - 2005.10.05
|
|
|
|
New build process no longer uses makefiles; now controlled by preferences.txt.
|
|
|
|
core/ replaced with targets/; can now link against Wiring libraries.
|
|
|
|
Replaced print() with printString, printInteger, printHex, printByte, etc.
|
|
|
|
Added menu for selecting serial port speed.
|
|
|
|
Updated icon.
|
|
|
|
Bootloader shrunk to less than 1 KB; fuses updated accordingly.
|
|
|
|
Added serialRead(), serialAvailable(), and delayMicroseconds().
|
|
|
|
|
|
|
|
0001 - 2005.08.25
|
2005-08-25 23:06:28 +02:00
|
|
|
This is the first released of the unified IDE + language library
|
|
|
|
it's a terrible hack... but it works. at the moment it's in alpha stage
|
|
|
|
but it can be used to work.
|
|
|
|
The processing preprocessor is included but not used.
|