Z wave thermostat (heatit/mutireg) status feedback / energy

Hello,
I also dont see anything happening in the dev tool, event listener. I’m sure that data is recived as I get this in the debug:

2024-06-14T07:22:23.727Z CNTRLR   [Node 005] [~] [Basic] currentValue: 99 => 99                     [Endpoint 0]
2024-06-14T07:22:23.733Z DRIVER « [Node 005] [REQ] [ApplicationCommand]
                                  └─[BasicCCReport]
                                      current value: 99
2024-06-14T07:22:23.734Z CNTRLR   [Node 005] [~] [Basic] currentValue: 99 => 99                     [Endpoint 0]

However does BasicCCReport count as zwave_js.value_updated ?

Did anyone manage to receive automatic updates from v1.92 thermostats?
I’m using ZWave JS and thermostat status is not getting updated.

Yes,
The BasicCCReport are now linked to sensor entities.

I’ve been waiting for this! But how does this work? I’ve tried re-interviewing a few of these thermostats and now I have this:
a basic light entity no longer available
a basic number entity which is unavailable
a basic sensor entity which is always 99.0

should the basic sensor entity update when it’s heating?

Yes, they should.
Mine change between 0, 99 and 255 where 255 is on and 0 and 99 is off.
You need to group the on/off control to gateway if you have not allready done so:

I use automations which set state of input bolean

- alias: VK on B1
  trigger:
    platform: template
    value_template: "{{ states('sensor.bad_basic')  | float(0) > 200  | float(0) }}"   
  action:
    service: input_boolean.turn_on
    target:
      entity_id: input_boolean.heating_bad_1
  id: 473a5d27b6254b53bcb7ed34db3cdf6e

- alias: VK off B1
  trigger:
    platform: template
    value_template: "{{ states('sensor.bad_basic')  | float(0) < 200  | float(0) }}"   
  action:
    service: input_boolean.turn_off
    target:
      entity_id: input_boolean.heating_bad_1
  id: 2887bfe233374786a3ffc82b1ba9f0ec

Thanks! I finally got it working. Had trouble switching to zwave js ui to do the grouping.