Add uOLED-96-G1 C Sample Code.
[frickel.git] / projects / geeknamensschilder_c / hardware / libraries / LiquidCrystal / examples / Autoscroll / Autoscroll.pde
blobbf33743cabd45b331ad41e7b65e264a3c860274b
1 /*
2   LiquidCrystal Library - Autoscroll
3  
4  Demonstrates the use a 16x2 LCD display.  The LiquidCrystal
5  library works with all LCD displays that are compatible with the 
6  Hitachi HD44780 driver. There are many of them out there, and you
7  can usually tell them by the 16-pin interface.
8  
9  This sketch demonstrates the use of the autoscroll()
10  and noAutoscroll() functions to make new text scroll or not.
12  The circuit:
13  * LCD RS pin to digital pin 12
14  * LCD Enable pin to digital pin 11
15  * LCD D4 pin to digital pin 5
16  * LCD D5 pin to digital pin 4
17  * LCD D6 pin to digital pin 3
18  * LCD D7 pin to digital pin 2
19  * 10K resistor:
20  * ends to +5V and ground
21  * wiper to LCD VO pin (pin 3)
23  Library originally added 18 Apr 2008
24  by David A. Mellis
25  library modified 5 Jul 2009
26  by Limor Fried (http://www.ladyada.net)
27  example added 9 Jul 2009
28  by Tom Igoe 
29  modified 25 July 2009
30  by David A. Mellis
32  http://www.arduino.cc/en/Tutorial/LiquidCrystal
33  */
35 // include the library code:
36 #include <LiquidCrystal.h>
38 // initialize the library with the numbers of the interface pins
39 LiquidCrystal lcd(12, 11, 5, 4, 3, 2);
41 void setup() {
42   // set up the LCD's number of columns and rows: 
43   lcd.begin(16,2);
46 void loop() {
47   // set the cursor to (0,0):
48   lcd.setCursor(0, 0);
49   // print from 0 to 9:
50   for (int thisChar = 0; thisChar < 10; thisChar++) {
51    lcd.print(thisChar);
52    delay(500);
53   }
55   // set the cursor to (16,1):
56   lcd.setCursor(16,1);
57   // set the display to automatically scroll:
58   lcd.autoscroll();
59   // print from 0 to 9:
60   for (int thisChar = 0; thisChar < 10; thisChar++) {
61     lcd.print(thisChar);
62     delay(500);
63   }
64   // turn off automatic scrolling
65   lcd.noAutoscroll();
66   
67   // clear screen for the next loop:
68   lcd.clear();