mirror of
https://github.com/arduino/Arduino.git
synced 2025-01-20 09:52:13 +01:00
13 lines
136 B
Plaintext
13 lines
136 B
Plaintext
|
#include <LiquidCrystal.h>
|
||
|
|
||
|
LiquidCrystal lcd(12, 11, 2, 7, 8, 9, 10);
|
||
|
|
||
|
void setup()
|
||
|
{
|
||
|
lcd.print("hello, world!");
|
||
|
}
|
||
|
|
||
|
void loop()
|
||
|
{
|
||
|
}
|