Esp-c3-32s-kit not working

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);

}

Your topic has been moved to a more suitable location on the forum. Installation and Troubleshooting is not for problems with (nor for advice on) your project :wink: See About the Installation & Troubleshooting category.

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.