How can I program the WiPy 3's WS2812B RGB LED?
-
Is it possible to change the light colors using programming. I do not know how to use it. I really appreciate any help. Thanks
-
@rskoniec Thank you very much
-
import pycom # example basic colors - try with other hex combinations pycom.rgbled(0xff0000) # make the LED light up in red color pycom.rgbled(0x00ff00) # make the LED light up in green color pycom.rgbled(0x0000ff) # make the LED light up in blue color