Christmas is around the corner. Decorations started everywhere. Jugaadu also wants to decorate his home and Christmas tree. But he is short of colourful lights. He doesn’t want to buy them from outside as it will be much costly. Can you help him out to solve this problem?
Bag Items:
"
int led = 13;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}