using esp32 in a bread board with led
/*Paste your code here*/#define led 25
void setup() {
// put your setup code here, to run once:
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(400);
digitalWrite(led, LOW);
delay(800);
}
Add video of the output (know more)
https://drive.google.com/file/d/1BJBzZe8juYbCcaZUSnxbV_JCl9T5PmuA/view?usp=drivesdk
