Hello I bought a esp-c3-32s-kit and i am trying the use with an arduino IDE.I am trying a simple blink apllication. I upload a code and it's uploaded but card is not doing my code. someone please help me ?
This is my code;
#define LED 2
void setup()
{
pinMode(LED, OUTPUT);
}
void loop()
{
digitalWrite(LED, HIGH);
delay(1000);
digitalWrite(LED, LOW);
delay(1000);
}