4. Arduino GPIO Usage and Applications

Question.4

Sarah has built the following circuit. Will the LED glow?

void setup() {
  pinMode(7, OUTPUT);
}

void loop() {
  digitalWrite(7,1);
  while(1);
}

Select Answer