Please can anyone help me with this little problem, and can you tell me what's going on? first of all, Thanks
P.S: I have connected a resistance of 330 ohms as protection to the output of the GPIO2 together with the led. And I leave the small code attached
void setup() {
// initialize digital pin as an output.
pinMode(2, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(2, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(2, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}