How to change the Core LED color?

Hi @hirotakaster,

We added functions to do this recently, you can take control of the RGB led using:

-- take control of the LED
RGB.control(true);

-- resume normal operation
RGB.control(false);

// red, green, blue, 0-255
RGB.color(0, 0, 0); 
2 Likes