1. ESP32 GPIO Usage and Applications

Sarah has built the following circuit. Will LED glow?


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

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

Select Answer