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

13 lines
136 B
Plaintext
Raw Normal View History

2008-04-19 05:31:36 +02:00
#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
2008-04-19 05:31:36 +02:00
void setup()
{
lcd.print("hello, world!");
}
void loop()
{
}