Is it possible to turn off the power LED of Arduino Nano ESP32 within the sketch? I'm able to achieve this on my Nano 33 boards by running digitalWrite(LED_PWR, LOW); but I haven't been able to achieve the same with the Nano ESP32. I've checked some of Nano ESP32's system files and couldn't find LED_PWR. Thanks!
I think the purpose of routing the power LED to a GPIO is to still keep the power LED while adding a way to control its on/off state right? What if I don't care about the power LED? Can't I just desolder it? Or even break it to save me the worry of desoldering?