RGB Unit
The following products are supported:
Micropython Example:
import M5
from M5 import *
from unit import *
M5.begin()
rgb_0 = RGB((36, 26), 3)
Widgets.fillScreen(0x222222)
rgb_0.set_brightness(80)
rgb_0.fill_color(0xff0000)
rgb_0.set_color(0, 0x33ff33)
UIFLOW2 Example:
class RGB
Constructors
- class RGB(port, number)
Create an RGB object.
- parameter is:
port
is the pins number of the portnumber
is the number of RGB lamp beads
UIFLOW2:
Methods
- RGB.set_brightness(br: int)
This method is used to set the brightness of RGB lamp beads, and the setting range is 0-100.
UIFLOW2: