Jugaadu was invited to his friend's birthday party. This time he wants to gift his friend an innovative bouquet. He wants to incorporate some additional features in the bouquet. Suggest him any idea?
Bag Items:
"
int led = 13;
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}