Set 150 Practical Question

⭐ Q1. LED Control with Arduino (Single & Double LED)

Example Code (Read Only):


✅ CODE: Single LED
void setup() {
  pinMode(13, OUTPUT);
}

void loop() {
  digitalWrite(13, HIGH);
  delay(1000);
  digitalWrite(13, LOW);
  delay(1000);
}
________________________________________

Python Online Editor