Skip to content

Instantly share code, notes, and snippets.

@jaythomas
Created April 8, 2021 16:35
Show Gist options
  • Save jaythomas/69a7bacf49e3f26ae8311a25ec416702 to your computer and use it in GitHub Desktop.
Save jaythomas/69a7bacf49e3f26ae8311a25ec416702 to your computer and use it in GitHub Desktop.
Wemos ESP8266 D1 Mini hello world
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