1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-03-04 01:29:18 +01:00

13 lines
136 B
Plaintext

#include <LiquidCrystal.h>
LiquidCrystal lcd(12, 11, 10, 5, 4, 3, 2);
void setup()
{
lcd.print("hello, world!");
}
void loop()
{
}