Created
January 4, 2024 23:02
-
-
Save paulocoutinhox/d66a070f4918cde97f3e22d7afffb220 to your computer and use it in GitHub Desktop.
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
// Esp32 Boards URL: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json | |
// EspTool: https://github.com/espressif/esptool | |
#define LED 2 | |
void setup() { | |
// Set pin mode | |
pinMode(LED, OUTPUT); | |
} | |
void loop() { | |
delay(100); | |
digitalWrite(LED, HIGH); | |
delay(100); | |
digitalWrite(LED, LOW); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment