ESP32 WPB 109 On board LED deactivation

Hi there,

simple question, how to address for disabling the onboard led?

I tried several GPIO but cannt get it OFF

Thanks for your support

---- this is what I tried —
output:

  • platform: gpio
    pin: GPIO2 # La LED interne est souvent sur GPIO2, vérifiez si nécessaire.
    inverted: true # Pour s’assurer que la LED reste éteinte.
    id: led_builtin

light:

  • platform: binary
    name: “LED Interne (désactivée)”
    output: led_builtin
    restore_mode: ALWAYS_OFF # Assurez-vous que la LED reste éteinte après un redémarrage.

Got my answer: The power LED on a NodeMCU ESP32 is typically hardwired to the power circuit and does not connect to a GPIO pin. As a result, it cannot be controlled programmatically via ESPHome or Arduino code.

1 Like