Tracker - Is there any way to turn off Blue GPS LED?

Hi, is there any way to turn off Blue GPS LED?
I was able to turn off Cloud LED using RGB.brightness(0); but it has no effect on the Blue GPS LED.

RGB.control(true);
delay(1000);
RGB.brightness(0);
delay(1000);
RGB.control(false);

Thank you.

You should be able to call from your code:

GnssLedEnable(false);

The header file should be included with the standard Tracker Edge includes.

Thank you, it works like a charm :stuck_out_tongue:

1 Like