Hi all,
I am trying to upload the below simple seketch to my ESP32s
ty#define ledpin 2
boolean ledstate=LOW;
void setup() {
pinMode(ledpin, OUTPUT);
// put your setup code here, to run once:
}
void loop() {
digitalWrite(ledpin, HIGH);
delay(500);
digitalWrite(ledpin, LOW);
delay(500);
digitalWrite(ledpin, HIGH);
delay(500);
digitalWrite(ledpin, LOW);
delay(500);
// put your main code here, to run repeatedly:
}
But I got the below error
I have tried, ESP32 Dev Module, ESP32 WROOM DA Module, Node32s, Node MCU 32s boards, but all of them gives the same error