Issue Exposing Govee Light Attributes

I’ve added a new Govee (my first H6008) bulb and have successfully added it to the Govee2MQTT integration but the exposed attributes are absolutely useless so I suppose I need to create new sensors.

This is what the attributes look like in Developer Tools:

From this, I created the following sensor (just one to test it out)…

    govee_front_entrance_light_on:
      friendly_name: "Govee Front Entrance Status"
      value_template: "{{ state_attr('sensor.front_entrance_govee_status', 'light_on') }}"

Unfortunately, this give me an “unknown” response. I wonder if that’s because there is some kind of “nesting” of attributes. When I expand the attributes list in HAOS, it looks like there’s an “IoT” section and an “Overall” section which repeats the same attributes.

I looked at the Govee Lights Local integration but it keeps telling me that I have no devices on the network (obviously not discovering my light).

Any thoughts how how I need to properly structure my sensor to pull these sub-attributes? My syntax is likely off somehow?

Do I need to change my

Ok so after a bit of tinkering, I am making some progress.

If I change the sensor to this…

{{ state_attr('sensor.front_entrance_govee_status', 'iot') }}

The result then is this…

{
  "brightness": 100,
  "color": {
    "b": 0,
    "g": 0,
    "r": 0
  },
  "kelvin": 4600,
  "light_on": true,
  "on": true,
  "online": null,
  "scene": null,
  "source": "AWS IoT API",
  "updated": "2025-03-08T15:32:12.390749747Z"
}

Now, how to get at those other attributes?