wez / govee2mqtt

Govee2MQTT: Connect Govee lights and devices to Home Assistant
MIT License
402 stars 23 forks source link

H6052 White Temperature Bug #67

Open Leopoldpaul opened 7 months ago

Leopoldpaul commented 7 months ago

Govee Device SKU

H6052

Govee2MQTT Version

2024.01.13-b7277f05

Describe the issue

If I set the White balance over 8921K, the light is turning off, but it is still turned on in the Integration and the govee app, but no light is emitted. I can also set the temperature to 9009K, so 9K above the limit of the device, but the light is going dark already at values over 8921K. Seems like colortemp 112 is working but 111 is causing the light to go dark

Startup Diagnostics

s6-rc: info: service s6rc-oneshot-runner: starting s6-rc: info: service s6rc-oneshot-runner successfully started s6-rc: info: service fix-attrs: starting s6-rc: info: service fix-attrs successfully started s6-rc: info: service legacy-cont-init: starting s6-rc: info: service legacy-cont-init successfully started s6-rc: info: service legacy-services: starting s6-rc: info: service legacy-services successfully started GOVEE_API_KEY=REDACTED GOVEE_MQTT_HOST=192.168.178.111 GOVEE_LAN_SCAN=192.168.178.113 GOVEE_EMAIL=REDACTED GOVEE_PASSWORD=REDACTED GOVEE_MQTT_PASSWORD=REDACTED GOVEE_MQTT_USER=master GOVEE_MQTT_PORT=1883 ++ cd /app ++ exec /app/govee serve [2024-01-14T11:07:24 INFO govee::commands::serve] Starting service. version 2024.01.13-b7277f05 [2024-01-14T11:07:24 INFO govee::commands::serve] Querying platform API for device list [2024-01-14T11:07:25 INFO govee::commands::serve] Querying undocumented API for device + room list [2024-01-14T11:07:28 INFO govee::service::iot] Connected to IoT: CONNACK code 0: Connection Accepted. [2024-01-14T11:07:28 INFO govee::commands::serve] Starting LAN discovery [2024-01-14T11:07:28 INFO govee::commands::serve] Waiting 10 seconds for LAN API discovery [2024-01-14T11:07:28 INFO govee::service::iot] IoT (re)connected with status CONNACK code 0: Connection Accepted. [2024-01-14T11:07:38 INFO govee::commands::serve] Devices returned from Govee's APIs [2024-01-14T11:07:38 INFO govee::commands::serve] Led-Tür (cef142b0b354995f H6127) [2024-01-14T11:07:38 INFO govee::commands::serve] Platform API: devices.types.light. supports_rgb=true supports_brightness=true [2024-01-14T11:07:38 INFO govee::commands::serve] color_temp=Some((2000, 9000)) segment_rgb=Some(0..15) [2024-01-14T11:07:38 INFO govee::commands::serve] Undoc: room=Some("Schlafzimmer") supports_iot=false ble_only=true [2024-01-14T11:07:38 INFO govee::commands::serve] [2024-01-14T11:07:38 INFO govee::commands::serve] Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) [2024-01-14T11:07:38 INFO govee::commands::serve] LAN API: ip=192.168.178.113 [2024-01-14T11:07:38 INFO govee::commands::serve] Platform API: devices.types.light. supports_rgb=true supports_brightness=true [2024-01-14T11:07:38 INFO govee::commands::serve] color_temp=Some((2000, 9000)) segment_rgb=Some(0..15) [2024-01-14T11:07:38 INFO govee::commands::serve] Undoc: room=Some("Schlafzimmer") supports_iot=true ble_only=false [2024-01-14T11:07:38 INFO govee::commands::serve] Quirk { sku: "H6052", icon: "mdi:light-bulb", supports_rgb: true, supports_brightness: true, color_temp_range: Some((2000, 9000)), avoid_platform_api: false, ble_only: false, lan_api_capable: true, device_type: Light, platform_temperature_sensor_units: None, platform_humidity_sensor_units: None, iot_api_supported: true } [2024-01-14T11:07:38 INFO govee::commands::serve] [2024-01-14T11:07:38 INFO govee::service::http] http server addr is 0.0.0.0:8056

Additional Logs

[2024-01-14T11:12:51 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":112} [2024-01-14T11:12:51 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-14T11:12:51 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":111} [2024-01-14T11:12:51 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature

Home Assistant Logs

No response

Anything else?

No response

wez commented 7 months ago

FWIW, home assistant internally prefers to use mired for color temperature. You can convert mired to kelvin (and vice-versa) by dividing 1,000,000 by either amount. So color_temp:112 in the command coming from home assistant is 112 mired or ~8928 kelvin.

Govee's lan api docs claim that all devices support 2000-9000 kelvin, and the platform API metadata returned for your device in the logs you shared also indicates that that range is supported.

govee2mqtt always clamps the home assistant request to the range it believes is supported by the device. In this situation the inputs are all within the supported range.

If the device is misbehaving then this sounds like a problem to raise with Govee support!

Leopoldpaul commented 7 months ago

I use the light Card from the home assistant to change the temperature, and four days ago, I could drag the temperature slider to cold white, and it worked as intended. Now I have to move it slightly away from the limit to ensure that the light is not going dark, and in the govee app, I can slide the temperature to 9000k with no problem.

wez commented 7 months ago

You can manually send lan API packets to your device like this:

$ echo '{"msg":{"cmd":"colorwc","data":{"colorTemInKelvin":9000}}}' | nc -q0 -u 192.168.178.113 4003

try varying the color temperature value and see how the device behaves, and please report back with what you see.

Leopoldpaul commented 7 months ago

I tried the comand and the light is changing to 9000K with no issue but over HA it is still not working right.

wez commented 7 months ago

Please update to the latest version of the addon, try to control this device, and share the logs from the addon. I think we're missing some information about what is happening!

Leopoldpaul commented 7 months ago

still not working also since the last 3 versions the controls are a bit laggy. GOVEE_MQTT_PORT=1883 ++ cd /app ++ exec /app/govee serve [2024-01-22T04:45:50 INFO govee::commands::serve] Starting service. version 2024.01.21-33e8cd7c [2024-01-22T04:45:50 INFO govee::commands::serve] Querying platform API for device list [2024-01-22T04:45:55 INFO govee::commands::serve] Querying undocumented API for device + room list [2024-01-22T04:45:59 INFO govee::service::iot] Connected to IoT: CONNACK code 0: Connection Accepted. [2024-01-22T04:45:59 INFO govee::commands::serve] Starting LAN discovery [2024-01-22T04:45:59 INFO govee::commands::serve] Waiting 10 seconds for LAN API discovery [2024-01-22T04:45:59 INFO govee::service::iot] IoT (re)connected with status CONNACK code 0: Connection Accepted. [2024-01-22T04:46:09 INFO govee::commands::serve] Devices returned from Govee's APIs [2024-01-22T04:46:09 INFO govee::commands::serve] Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) [2024-01-22T04:46:09 INFO govee::commands::serve] LAN API: ip=192.168.178.113 [2024-01-22T04:46:09 INFO govee::commands::serve] Platform API: devices.types.light. supports_rgb=true supports_brightness=true [2024-01-22T04:46:09 INFO govee::commands::serve] color_temp=Some((2000, 9000)) segment_rgb=Some(0..15) [2024-01-22T04:46:09 INFO govee::commands::serve] Undoc: room=Some("Schlafzimmer") supports_iot=true ble_only=false [2024-01-22T04:46:09 INFO govee::commands::serve] Quirk { sku: "H6052", icon: "mdi:light-bulb", supports_rgb: true, supports_brightness: true, color_temp_range: Some((2000, 9000)), avoid_platform_api: false, ble_only: false, lan_api_capable: true, device_type: Light, platform_temperature_sensor_units: None, platform_humidity_sensor_units: None, iot_api_supported: true, show_as_preset_buttons: None } [2024-01-22T04:46:09 INFO govee::commands::serve] [2024-01-22T04:46:09 INFO govee::commands::serve] Led-Tür (cef142b0b354995f H6127) [2024-01-22T04:46:09 INFO govee::commands::serve] Platform API: devices.types.light. supports_rgb=true supports_brightness=true [2024-01-22T04:46:09 INFO govee::commands::serve] color_temp=Some((2000, 9000)) segment_rgb=Some(0..15) [2024-01-22T04:46:09 INFO govee::commands::serve] Undoc: room=Some("Schlafzimmer") supports_iot=false ble_only=true [2024-01-22T04:46:09 INFO govee::commands::serve] [2024-01-22T04:46:13 INFO govee::service::http] http server addr is 0.0.0.0:8056 [2024-01-22T04:46:57 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) None [2024-01-22T04:46:57 INFO govee::service::hass] Wait 2.2s for hass to settle on 44 entity configs [2024-01-22T04:46:59 INFO govee::service::hass] MQTT connected with status=CONNACK code 0: Connection Accepted. [2024-01-22T04:49:43 INFO govee::service::hass] Home Assistant status changed: online [2024-01-22T04:49:44 INFO govee::service::hass] Wait 2.2s for hass to settle on 44 entity configs [2024-01-22T05:01:58 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T03:46:57.853013537Z }) [2024-01-22T05:17:00 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T04:01:58.592919956Z }) [2024-01-22T05:32:04 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T04:17:02.371494762Z }) [2024-01-22T05:47:07 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T04:32:04.917531624Z }) [2024-01-22T06:02:09 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T04:47:07.561760753Z }) [2024-01-22T06:17:13 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T05:02:09.869483Z }) [2024-01-22T06:32:15 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T05:17:14.217125940Z }) [2024-01-22T06:47:18 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T05:32:16.543060810Z }) [2024-01-22T07:02:20 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T05:47:18.837125755Z }) [2024-01-22T07:17:24 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T06:02:22.324374891Z }) [2024-01-22T07:32:26 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T06:17:24.733161717Z }) [2024-01-22T07:47:28 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T06:32:27.034591450Z }) [2024-01-22T08:02:31 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T06:47:29.372043253Z }) [2024-01-22T08:17:34 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T07:02:32.204919940Z }) [2024-01-22T08:32:36 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T07:17:34.624629775Z }) [2024-01-22T08:47:38 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T07:32:36.843074740Z }) [2024-01-22T09:02:42 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T07:47:39.225054404Z }) [2024-01-22T09:17:44 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T08:02:43.002970409Z }) [2024-01-22T09:27:54 INFO govee::service::hass] Home Assistant status changed: offline [2024-01-22T09:27:58 INFO govee::service::hass] Wait 2.2s for hass to settle on 44 entity configs [2024-01-22T09:28:47 INFO govee::service::hass] Home Assistant status changed: online [2024-01-22T09:28:47 INFO govee::service::hass] Wait 2.2s for hass to settle on 44 entity configs [2024-01-22T09:32:47 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T08:17:45.317831741Z }) [2024-01-22T09:47:48 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T08:32:48.163523881Z }) [2024-01-22T10:02:52 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T08:47:48.873799346Z }) [2024-01-22T10:17:55 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T09:02:53.461829646Z }) [2024-01-22T10:32:57 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T09:17:55.728124676Z }) [2024-01-22T10:47:59 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T09:32:58.194393153Z }) [2024-01-22T11:03:07 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T09:48:02.274873576Z }) [2024-01-22T11:18:12 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T10:03:08.436982327Z }) [2024-01-22T11:33:16 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T10:18:13.612336482Z }) [2024-01-22T11:48:19 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T10:33:16.857335815Z }) [2024-01-22T12:03:23 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T10:48:22.213632702Z }) [2024-01-22T12:18:26 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T11:03:24.425149136Z }) [2024-01-22T12:33:28 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T11:18:26.684971094Z }) [2024-01-22T12:48:32 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T11:33:28.924040629Z }) [2024-01-22T13:03:34 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T11:48:33.025321085Z }) [2024-01-22T13:18:37 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T12:03:35.506159030Z }) [2024-01-22T13:33:40 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T12:18:38.507903405Z }) [2024-01-22T13:48:44 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T12:33:42.251446170Z }) [2024-01-22T14:03:47 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T12:48:45.475094499Z }) [2024-01-22T14:18:49 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T13:03:47.953691812Z }) [2024-01-22T14:33:53 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T13:18:52.152110458Z }) [2024-01-22T14:48:56 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T13:33:54.373432328Z }) [2024-01-22T15:03:58 INFO govee::service::state] requesting update via Platform API Led-Tür (cef142b0b354995f H6127) Some(DeviceState { on: false, light_on: None, online: Some(false), kelvin: 0, color: DeviceColor { r: 0, g: 0, b: 0 }, brightness: 0, scene: None, source: "PLATFORM API", updated: 2024-01-22T13:48:57.019288737Z }) [2024-01-22T15:07:51 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON"} [2024-01-22T15:07:51 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) light power state [2024-01-22T15:07:53 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":395} [2024-01-22T15:07:53 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:07:58 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":159} [2024-01-22T15:07:58 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:07:58 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":157} [2024-01-22T15:07:58 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:06 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":121} [2024-01-22T15:08:06 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:11 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","brightness":100} [2024-01-22T15:08:11 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) brightness [2024-01-22T15:08:15 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":150} [2024-01-22T15:08:15 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:20 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":122} [2024-01-22T15:08:20 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:25 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":119} [2024-01-22T15:08:25 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:30 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":112} [2024-01-22T15:08:30 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:35 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":111} [2024-01-22T15:08:35 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:08:40 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":111} [2024-01-22T15:08:40 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature [2024-01-22T15:09:24 INFO govee::service::hass] Command for Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052): {"state":"ON","color_temp":117} [2024-01-22T15:09:24 INFO govee::service::state] Using LAN API to set Nachttischlampe (57:CC:CD:31:30:30:70:77 H6052) color temperature