1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-20 21:01:25 +03:00
Files
esp8266/build/shared/dist/examples/Stubs/HelloWorld/HelloWorld.pde
2009-06-24 21:24:53 +00:00

10 lines
92 B
Plaintext

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