UNBOXING ESP32 AND CODE SETUP
VIDEO:
VIDEO LINK: https://youtu.be/gHcLZJQVcI0
Open Arduino droid app in mobile and write the code and click on settings and select board type and click esp32 in that click esp32 dev board now compile the code and upload the code.
BLINKING CODE:
//CREATIVE PRADEEP//
int LED_BUILTIN = 2;
void setup() {
pinMode (LED_BUILTIN, OUTPUT);
}
void loop() {
digitalWrite(LED_BUILTIN, HIGH);
delay(1000);
digitalWrite(LED_BUILTIN, LOW);
delay(1000);
}
CHANNEL LINK: www.youtube.com/c/CreativePradeep
Comments
Post a Comment