Skip to content

Instantly share code, notes, and snippets.

@cmoz
Created April 10, 2022 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmoz/c1f742616ac20067ad32a55bf7ec78c4 to your computer and use it in GitHub Desktop.
Save cmoz/c1f742616ac20067ad32a55bf7ec78c4 to your computer and use it in GitHub Desktop.
Blink with generic ESP32 board
const int ledPin = 2; // User LED is connected to Pin 2
// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(ledPin, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(ledPin, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(ledPin, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment