The below picture shows the pin configurations , memory capacity, supported communication protocols, and power requirements.
First import the esp32 boards into ardunio IDE by following the steps below.
The 12 th , 14 th and GND pins are used for this programming to blink and toggle the red and green led's.The Cathode of the both led's are soldered to the board and connected to the GND of the ESP32 and the pins 12 and 14 are connected to the red and green led.And program is uploaded as shown in the figure.
void setup() { pinMode(12, OUTPUT); // Set pin 12 as output pinMode(14, OUTPUT); // Set pin 14 as output } void loop() { digitalWrite(12, !digitalRead(12)); // Toggle LED on pin 12 digitalWrite(14, !digitalRead(14)); // Toggle LED on pin 14 delay(1000); // Wait for 1 second }
void setup() { pinMode(12, OUTPUT); // Set pin 12 as output pinMode(14, OUTPUT); // Set pin 14 as output digitalWrite(12, HIGH); // Start with LED on pin 12 ON digitalWrite(14, LOW); // Start with LED on pin 14 OFF } void loop() { digitalWrite(12, !digitalRead(12)); // Toggle LED on pin 12 digitalWrite(14, !digitalRead(14)); // Toggle LED on pin 14 delay(1000); // Wait for 1 second }