Open eimirae opened 5 months ago
To get color picking on a H613G (and presumably all other H613* strips), I had to use a new color mode 0x0d
https://github.com/Beshelmek/govee_ble_lights/commit/691fe1dcc83c349808e800fa849c84bad180ea64
- commands.append(self._prepareSinglePacketData(LedCommand.COLOR, [LedMode.MANUAL, red, green, blue])) + commands.append(self._prepareSinglePacketData(LedCommand.COLOR, [0x0d, red, green, blue]))
I would describe this color mode as "smooth change"
I thought I would share what I learned.
This is also valid for H6006 and H6008. There are other arguments in the byte array, see #34
To get color picking on a H613G (and presumably all other H613* strips), I had to use a new color mode 0x0d
https://github.com/Beshelmek/govee_ble_lights/commit/691fe1dcc83c349808e800fa849c84bad180ea64
I would describe this color mode as "smooth change"
I thought I would share what I learned.