It will change the behaviour of the LED of what state the socket is in. (On or Off)
You can send the command with the Flow card (you might need to enable “power user” in the mobile app for this flow card)
Brightness control:
0x26, 0x01, 0x63
Where the 0x63 is the brightness value, for some reason it won’t work (well) with decimal numbers so you’ll have to convert the value to a hexadecimal number.
where 0x00
is off (0%) and 0x63
is maximum brightness (100%). (Decimal wise it is 0 - 99)
Default ON (50%): 0x26, 0x01, 0x31
Default OFF (10%): 0x26, 0x01, 0x0A
Color control:
This is done in RGB fashion:
0x33, 0x05, 0x03, 0x02, 255, 0x03, 255, 0x04, 255
Where the first 255 is the Red channel
The second 255 is the Green channel
The third 255 is the Blue channel
this can be done with any decimal values, from 0 - 255
Examples:
White (Default ON): 0x33, 0x05, 0x03, 0x02, 255, 0x03, 255, 0x04, 255
Red: 0x33, 0x05, 0x03, 0x02, 255, 0x03, 0, 0x04, 0
Green (Default OFF): 0x33, 0x05, 0x03, 0x02, 0, 0x03, 255, 0x04, 0
Blue: 0x33, 0x05, 0x03, 0x02, 0, 0x03, 0, 0x04, 255
Yellow: 0x33, 0x05, 0x03, 0x02, 255, 0x03, 255, 0x04, 0
Cyan: 0x33, 0x05, 0x03, 0x02, 0, 0x03, 255, 0x04, 255
Magenta: 0x33, 0x05, 0x03, 0x02, 255, 0x03, 0, 0x04, 255