1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-04 15:24:12 +01:00
Arduino/hardware/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde

19 lines
289 B
Plaintext
Raw Normal View History

2008-04-19 05:31:36 +02:00
#include <LiquidCrystal.h>
2008-09-07 14:21:07 +02:00
// 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);
2008-04-19 05:31:36 +02:00
void setup()
{
2008-09-07 14:21:07 +02:00
// Print a message to the LCD.
2008-04-19 05:31:36 +02:00
lcd.print("hello, world!");
}
void loop()
{
}