1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-08-18 17:42:23 +03:00
Files
esp8266/hardware/libraries/LiquidCrystal/examples/HelloWorld/HelloWorld.pde

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()
{
}