edwardthe
Published © GPL3+

How to: Program in ESP32 via Arduino IDE

In this video, you'll know how can actually upload the initial program/code into an ESP32 board via Arduino IDE.

BeginnerFull instructions provided1,514
How to: Program in ESP32 via Arduino IDE

Things used in this project

Story

Read more

Schematics

esp32 led circuit

this image is added to illustrate the sketch of the circuit

Code

Basic Blink code for ESP32

Arduino
this is the sample led blink code is used to show how to upload the code in esp32 board
void setup() {
  pinMode(6, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
  digitalWrite(6, HIGH);   // turn the LED on (HIGH is the voltage level)
  delay(1000);                       // wait for a second
  digitalWrite(6, LOW);    // turn the LED off by making the voltage LOW
  delay(1000);                       // wait for a second
}

Credits

edwardthe
3 projects • 1 follower

Comments