1 GPIO pin on esp8266 for some Physical Button and set up some LEDs?

I have lots of timer references here…

Even a compact Lambda option…

  // Timed Lambda Function - Run in Void Setup()
  timer.setInterval(100L, []() {  // Run every 100 milliseconds
    Serial.println(analogRead(A0));  // Display the value
  });  // END Timer Function
1 Like