From db605dd18b11ecfb5cd9f92c721c52cb70543384 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Mon, 1 Jun 2009 08:32:11 +0000 Subject: First integration of the Arduino code in Processing 5503: PreProcessor and Compiler have been integrated with changes to the Sketch. Compilation still has problems (Thread error on success, and can't handle non-pde files in a sketch). Modified the Mac OS X make.sh to copy the hardware, avr tools, and example over. Removing some of the antlr stuff. Disabling the Commander (command-line execution) for now. Added Library, LibraryManager, and Target. Added support for prefixed preferences (e.g. for boards and programmers). --- .../LiquidCrystal/examples/HelloWorld/HelloWorld.pde | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde (limited to 'libraries/LiquidCrystal/examples/HelloWorld') diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde new file mode 100644 index 0000000..2f244d0 --- /dev/null +++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde @@ -0,0 +1,18 @@ +#include + +// LiquidCrystal display with: +// rs on pin 12 +// rw on pin 11 +// enable on pin 10 +// d4, d5, d6, d7 on pins 5, 4, 3, 2 +LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2); + +void setup() +{ + // Print a message to the LCD. + lcd.print("hello, world!"); +} + +void loop() +{ +} -- cgit v1.2.3-18-g5258 From b63012069f6a239de812ed37b8a4a4141791b864 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Mon, 13 Jul 2009 02:31:46 +0000 Subject: Removing old LiquidCrystal examples. --- .../LiquidCrystal/examples/HelloWorld/HelloWorld.pde | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde (limited to 'libraries/LiquidCrystal/examples/HelloWorld') diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde deleted file mode 100644 index 2f244d0..0000000 --- a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde +++ /dev/null @@ -1,18 +0,0 @@ -#include - -// LiquidCrystal display with: -// rs on pin 12 -// rw on pin 11 -// enable on pin 10 -// d4, d5, d6, d7 on pins 5, 4, 3, 2 -LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2); - -void setup() -{ - // Print a message to the LCD. - lcd.print("hello, world!"); -} - -void loop() -{ -} -- cgit v1.2.3-18-g5258 From f30af5e28868811d802edc2d874ce832652512f0 Mon Sep 17 00:00:00 2001 From: "David A. Mellis" Date: Mon, 13 Jul 2009 02:33:02 +0000 Subject: Adding Tom's examples for the new LiquidCrystal library. --- .../examples/HelloWorld/HelloWorld.pde | 53 ++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde (limited to 'libraries/LiquidCrystal/examples/HelloWorld') diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde new file mode 100644 index 0000000..9909349 --- /dev/null +++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde @@ -0,0 +1,53 @@ +/* + LiquidCrystal Library - Hello World + + Demonstrates the use a 16x2 LCD display. The LiquidCrystal + library works with all LCD displays that are compatible with the + Hitachi HD44780 driver. There are many of them out there, and you + can usually tell them by the 16-pin interface. + + This sketch prints "Hello World!" to the LCD + and shows the time. + + The circuit: + * LCD RS pin to digital pin 12 + * LCD Enable pin to digital pin 11 + * LCD D4 pin to digital pin 5 + * LCD D5 pin to digital pin 4 + * LCD D6 pin to digital pin 3 + * LCD D7 pin to digital pin 2 + * 10K resistor: + * ends to +5V and ground + * wiper to LCD VO pin (pin 3) + + Library originally added 18 Apr 2008 + by David A. Mellis + library modified 5 Jul 2009 + by Limor Fried (http://www.ladyada.net) + example added 9 Jul 2009 + by Tom Igoe + + http://www.arduino.cc/en/Tutorial/LiquidCrystal + */ + +// include the library code: +#include + +// initialize the library with the numbers of the interface pins +LiquidCrystal lcd(12, 11, 5, 4, 3, 2); + +void setup() { + // set up the LCD's number of rows and columns: + lcd.begin(2, 16); + // Print a message to the LCD. + lcd.print("hello, world!"); +} + +void loop() { + // set the cursor to column 0, line 1 + // (note: line 1 is the second row, since counting begins with 0): + lcd.setCursor(0, 1); + // print the number of seconds since reset: + lcd.print(millis()/1000); +} + -- cgit v1.2.3-18-g5258 From a0f72ba82cf427f0253a848385d6f52aa55aa0e8 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Sun, 2 Aug 2009 18:44:59 +0000 Subject: Changed begin() in LiquidCrystal examples --- libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libraries/LiquidCrystal/examples/HelloWorld') diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde index 9909349..642b80f 100644 --- a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde +++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde @@ -38,7 +38,7 @@ LiquidCrystal lcd(12, 11, 5, 4, 3, 2); void setup() { // set up the LCD's number of rows and columns: - lcd.begin(2, 16); + lcd.begin(16, 2); // Print a message to the LCD. lcd.print("hello, world!"); } -- cgit v1.2.3-18-g5258 From e94732715829502b266bfac59a7226017cbadaa4 Mon Sep 17 00:00:00 2001 From: Tom Igoe Date: Wed, 5 Aug 2009 14:41:14 +0000 Subject: Checked and updated all LiquidCrystal examples --- libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'libraries/LiquidCrystal/examples/HelloWorld') diff --git a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde index 642b80f..76cd746 100644 --- a/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde +++ b/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde @@ -25,7 +25,10 @@ library modified 5 Jul 2009 by Limor Fried (http://www.ladyada.net) example added 9 Jul 2009 - by Tom Igoe + by Tom Igoe + modified 25 July 2009 + by David A. Mellis + http://www.arduino.cc/en/Tutorial/LiquidCrystal */ -- cgit v1.2.3-18-g5258