I have an annoying issue that when i just want to simply apply the given blink code, loop generally interrupted by some reasons, after start, led blinks for several time but always stops blinking (L led also turned off and rx tx leds are turn on) and after 5-9 seconds it started again (and stops again) I callot find any references for that issue. Do you know any solution for that problem? Or i'll throw away my card to the trash can
i used "blink" example code that arduino give itself i did not change anything
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(LED_BUILTIN, OUTPUT);
}
// the loop function runs over and over again forever
void loop() {
digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
and i did not connect any cable because the code uses arduino's own led