1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-17 22:23:10 +03:00
Files
esp8266/build/shared/examples/Snippets/HelloWorld/HelloWorld.pde
2010-03-19 15:14:53 +00:00

10 lines
92 B
Plaintext

void setup() {
Serial.begin(9600);
}
void loop() {
Serial.println("Hello World!");
}