1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-19 09:42:11 +03:00
Files
esp8266/build/shared/examples/Stubs/HelloWorld/HelloWorld.pde
2009-07-11 00:34:59 +00:00

10 lines
92 B
Plaintext

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