Blinking LED
Thu Oct 12 2023 01:50:38 GMT+0000 (Coordinated Universal Time)
Saved by
@iliavial
#define LED_PIN 12
void setup()
{
pinMode(LED_PIN, OUTPUT);
}
void loop()
{
digitalWrite(LED_PIN, HIGH);
delay(500);
digitalWrite(LED_PIN, LOW);
delay(500);
}
content_copyCOPY
Comments