Created
April 8, 2021 16:35
-
-
Save jaythomas/69a7bacf49e3f26ae8311a25ec416702 to your computer and use it in GitHub Desktop.
Wemos ESP8266 D1 Mini hello world
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void setup() { | |
Serial.begin(115200); | |
} | |
void loop() { | |
delay(1000); | |
Serial.println("Hello World!"); | |
delay(1000); | |
Serial.println("Goodbye, Cruel World!"); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment