Disable WiFi LED when using a battery

I have a Photon that features a multicolor LED for signaling various operational modes. I’d like to programmatically disable that LED from ever lighting up. Can anyone tell me how that can be done?

My application is a deeply embedded battery powered system. Nobody will ever see the LED so it just wastes battery power when it is lit. I’d like to disable lighting it during my normal run mode. I’d like to keep the LED behavior as it exists now during my debug mode. My run and debug modes will be switchable using a command over WiFi. Removing the LED will not satisfy my requirements.

Thanks - JJS

@johnspeth, are mirroring the onboard RGB LED to your own LED? You may want to read the RGB LED section of the docs.

Thanks, Peekay. I was hoping the solution would be this straightforward. I have confirmed that:

  1. I can programmatically disable the built-in LED signaling functions and turn off the LED by executing:

     RGB.control(true);
     RGB.color(0,0,0);
    
  2. I can programmatically restore the built-in LED signaling functions by executing:

     RGB.control(false);
    

It works perfectly - JJS

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.