Ground truth for Govee Flow Plus Light Bars (H6056): phantom segments, bar-to-segment mapping, API auth and rate limits.
100
100%
Does it follow best practices?
Impact
100%
3.84xAverage score across 6 eval scenarios
Passed
No known issues
When working with Govee Flow Plus light bars (H6056), remember:
0..11 only. Never send commands targeting 12+.0..56..11GET /router/api/v1/user/devices with header Govee-API-Key. Not mDNS, not Bluetooth.devices.capabilities.segment_color_setting / segmentedColorRgb. rgb is a packed int: (r<<16)|(g<<8)|b.iot-actuator-patterns plugin (or its rate-limited-iot-debounce predecessor) if you're emitting more than one update per second.rgb=(0,0,0) is unreliable as "off". Some firmware paths treat packed RGB 0x000000 as a no-op and silently retain the prior segment state. To reliably clear a segment, use rgb=(1,1,1) (near-black but non-zero). On session shutdown, always issue an explicit all-segments command to every physical segment (0..11) so nothing is left lit when the script exits.See the full skill at skills/govee-h6056-control/SKILL.md and the reference client at scripts/govee_control.py.