Help with BHT-002-GCLZB thermostat

I used to have a Hive Home ecosystem until one fateful day where they limited my heating to 15 degrees and tried to freeze me to death unless I bought their newest thermostat and paid for their subscription. I ended up saying fuck the extorting bastards and bought a cheap Zigbee Thermostat to get me through the winter. It’s been truly excellent, I really can’t complain. However I got my Raspberry Pi for Christmas and am now trying to take everything into my own local control, so time to say goodbye to Smart Life and hello HA Companion.

It’s all been fine for the most part but I have two issues.

  1. I don’t seem to be able to automate my heating. I can manually set it to whatever temperature I want, but I can’t automate or script a boost of my heating. Edit: If anyone else has this issue in the future, the solution is to Call A Service and set the temperature there.
  2. My temperature sensors aren’t reporting as often as they were in the Smart Life app.

I’ll replace the thermostat eventually, but I would like to delay it as long as possible so I can buy other stuff first 😂

NarrativeBear,

Take a look at zigbee2mqtt this is what I use to add any of my ZigBee devices to home assistant. You may find there is more frequent reporting/polling with this so you have more updated information in your home assistant instance.

ZigBee is the way to go IMO for the most “local control”. Your thermostat is probably pretty good and would not need replacing for a long time.

For automation of your thermostat and other items in the house you will need to setup your own automations that work for you. Home assistant won’t do this for you automatically like other 3rd party thermostats that “learn” your patterns.

Home assistant is pretty powerful in what you can do with automation as it’s allows you to use other sensors around the house, even poll outside stats like weather. So in theory you can set automations that turn off your heathing if your phone or all phones have left the house. You can set automations that turn on the heathing when the outside temperature reaches a certain temperature and the house temperature drops to a certain point.

chunkystyles, (edited )

I definitely recommend zigbee2mqtt over ZHA. I originally went with ZHA and just recently went through the hassle of converting over. It was worth it. IMO, it’s best to just start with zigbee2mqtt, and to convert before you have a lot of devices and automations.

Edit: before I posted this comment, I couldn’t see any comments other than the one I was responding to.

unixorn,
@unixorn@hachyderm.io avatar

@chunkystyles @NarrativeBear

I did the -> migration last year and it was totally worth the hassle.

I took the opportunity to normalize the naming scheme for my devices since I was going to have to update my automations anyway.

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

So I’m trying to update the reporting interval and it’s not letting me.

https://lemmy.tf/pictrs/image/aa907e75-87f9-4c08-8602-02a3b8893951.jpeg

NarrativeBear,

I have not played with these setting touch, most of it I just leave as default. Not sure if anyone else can chim in here to help you out.

I did see something here regarding your device that you may need to add to your configuration yaml file.

www.zigbee2mqtt.io/devices/BHT-002-GCLZB.html#sto…

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

This is super helpful. Thank you

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

Regarding the thermostat, this is in the state tab of Zigbee2MQTT


<span style="color:#323232;">{
</span><span style="color:#323232;">    "child_lock": "UNLOCK",
</span><span style="color:#323232;">    "current_heating_setpoint": 12,
</span><span style="color:#323232;">    "heat": "OFF",
</span><span style="color:#323232;">    "linkquality": 184,
</span><span style="color:#323232;">    "local_temperature": 20,
</span><span style="color:#323232;">    "local_temperature_calibration": -2,
</span><span style="color:#323232;">    "max_temperature": 45,
</span><span style="color:#323232;">    "min_temperature_limit": 1,
</span><span style="color:#323232;">    "preset": "program",
</span><span style="color:#323232;">    "preset_mode": "program",
</span><span style="color:#323232;">    "program": {
</span><span style="color:#323232;">        "saturday_p1_hour": 6,
</span><span style="color:#323232;">        "saturday_p1_minute": 0,
</span><span style="color:#323232;">        "saturday_p1_temperature": 14,
</span><span style="color:#323232;">        "saturday_p2_hour": 8,
</span><span style="color:#323232;">        "saturday_p2_minute": 0,
</span><span style="color:#323232;">        "saturday_p2_temperature": 16,
</span><span style="color:#323232;">        "saturday_p3_hour": 8,
</span><span style="color:#323232;">        "saturday_p3_minute": 30,
</span><span style="color:#323232;">        "saturday_p3_temperature": 15,
</span><span style="color:#323232;">        "saturday_p4_hour": 20,
</span><span style="color:#323232;">        "saturday_p4_minute": 0,
</span><span style="color:#323232;">        "saturday_p4_temperature": 12,
</span><span style="color:#323232;">        "sunday_p1_hour": 6,
</span><span style="color:#323232;">        "sunday_p1_minute": 0,
</span><span style="color:#323232;">        "sunday_p1_temperature": 14,
</span><span style="color:#323232;">        "sunday_p2_hour": 12,
</span><span style="color:#323232;">        "sunday_p2_minute": 30,
</span><span style="color:#323232;">        "sunday_p2_temperature": 16,
</span><span style="color:#323232;">        "sunday_p3_hour": 14,
</span><span style="color:#323232;">        "sunday_p3_minute": 30,
</span><span style="color:#323232;">        "sunday_p3_temperature": 15,
</span><span style="color:#323232;">        "sunday_p4_hour": 18,
</span><span style="color:#323232;">        "sunday_p4_minute": 30,
</span><span style="color:#323232;">        "sunday_p4_temperature": 12,
</span><span style="color:#323232;">        "weekdays_p1_hour": 6,
</span><span style="color:#323232;">        "weekdays_p1_minute": 0,
</span><span style="color:#323232;">        "weekdays_p1_temperature": 14,
</span><span style="color:#323232;">        "weekdays_p2_hour": 8,
</span><span style="color:#323232;">        "weekdays_p2_minute": 0,
</span><span style="color:#323232;">        "weekdays_p2_temperature": 16,
</span><span style="color:#323232;">        "weekdays_p3_hour": 8,
</span><span style="color:#323232;">        "weekdays_p3_minute": 30,
</span><span style="color:#323232;">        "weekdays_p3_temperature": 15,
</span><span style="color:#323232;">        "weekdays_p4_hour": 20,
</span><span style="color:#323232;">        "weekdays_p4_minute": 0,
</span><span style="color:#323232;">        "weekdays_p4_temperature": 12
</span><span style="color:#323232;">    },
</span><span style="color:#323232;">    "running_state": "idle",
</span><span style="color:#323232;">    "sensor": "AL",
</span><span style="color:#323232;">    "system_mode": "heat",
</span><span style="color:#323232;">    "deadzone_temperature": null,
</span><span style="color:#323232;">    "max_temperature_limit": null
</span><span style="color:#323232;">}
</span>

I theorize that I need to give it a hard reset to clear everything that got ported over from the previous set-up?

NarrativeBear,

I should add you need to install Mqtt broker from the addin store as well.

Once you get this installed under integrations you should see Mqtt and this is where your new ZigBee devices will be listed. (As opposed to the ZigBee integration)

No need to hard reset the thermostat as once you add it through zigbee2mqtt and get mqtt integration added the device will be new to your HA installation.

sabreW4K3,
@sabreW4K3@lemmy.tf avatar

I have it coming through Z2M, hence why I thought maybe a hard reset might fix it and give me the new climate card.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • homeassistant@lemmy.world
  • localhost
  • All magazines
  • Loading…
    Loading the web debug toolbar…
    Attempt #