As reported in Z-Wave JS - HA x86_64 version with Zooz ZST10_700 series (FW 7.18.3):
Core 2024.1.3
Supervisor 2023.12.1
Operating System 11.4
Frontend 20240104.0
Thermostat Info (Honeywell T6):
Model: TH6320ZW
Firmware: v1.3
I have had this thermostat about 1.25 years now…no problems. I got rid of my old Honeywell RTH9580WF (WiFi ColorTouch model) - as I wanted everything out of the hands of Lando (no ‘cloud’). It has been great, and with some help from the forums I am able to track when it is on/off for Heat and AC - kinda cool.
I know very little about creating cards, but here goes:
I know this one has a FILTER Notify icon which displays (and you can set when it triggers) - all of this can be changed in the Z-Wave JS add-on in HA. I have a nice card in HA (below) - and wanna know if there is anyway to have the Filter Replace Reminder (when it is triggered on the Thermostat) to show on the Thermostat card?
Seems that this thing has like 469 Entities it can view/control, etc.
If you click the hamburger, you - it will show the Humidity - would love to see that on the base card too.
Check the available entities for the device, including disabled ones. If there is nothing relevant then it’s doubtful you can access it, AFAIK the device doesn’t communicate any filter notifications via Z-Wave. According to the ZWA DB, it only supports Power Management notifications. You can post a copy of the device diagnostic file (or use a pastebin site) if you’d like further validation. Also, you can check driver debug logs to see if it produces any other notifications via Z-Wave.
This looks very interesting. I will have to look through that code. One thing that jumps out at first is that I do not have UV or HUMIDIFIER on my home system.
I do have some code that someone had helped me setup to give me the following graph (strange - the colors have changed):
The name UV is not important. Replace that with whatever you want to call it.
Basically it accumulates the number or hours that something is happening. For your application you want to accumulate the number of hours that the hvac_action is not idle or off, to determine when to change the filter
Need to do a little more digging and see how I get it to do days and a reset/reminder perhaps when I am at 90 days. And create a dashboard for the values and button.
Thank You for the share - and the code. Much appreciated.
I am still not getting any valid data for a couple of them. Also he HACS integration “The Watchman” is giving me all kinds of errors that things are missing or invalid.
I cleared out all entries that I made from your code - and pasted it into the bottom of my configuration.yaml file, and restarted HA. Getting even less information now.
More than willing to post that for you. However, my configuration.yaml file is very clean. I use lots of !include statements to break out the various parts into separate .yaml files. When I cleaned out the other .yaml files (as I # (comment) any addition put into a .,yaml file) - and pasted all of your lines into the configuration.yaml file - lots of errors appeared for duplicate key {see image} - started moving your pieces (not changing names or anything in the seperate .yaml files, and got it down to one sensor I cannot seem to get to work.
Also - I have another template/sensor combo which now seems to have stopped working where HA was tracking when the thermostat was wither ‘heating’ or ‘cooling’ and ‘idle’. Do not understand that one yet. I was using that to provide historical heating/cooking gauge.
Still trying to figure out how to put a NOT EQUAL process into .yaml … nothing I have researched seems to work to capture when the thermostat is “Not Idle” - which is why I had the sensors capturing when the thermostat was ‘heating’ or ‘cooling’.
Any suggestions you have are appreciated - even willing to move this to email or chat, if you want to .
as I do not have anything like what you had to track state on/off:
(from your original code) – did you create something which gave you the switch.hvac_uv
Here is a view of anything um_hvac - notice the only ‘unavailable’ one. I have tested the 'RESET" automation and if I run it the ‘filter_reset’ will show date and time that I ran it.
Check the value of the last posting of the values…for this one it shows “triggered_at: 12” - so it has changed, to now show 16 - guessing as it is after the 16:00 hour, but before 17:00 hour.
To get the filter life calculation working, you’ll need to enter a value into the input_number for how long you expect the filter to last in hours. Right now that value is zero, so the calculation is doing a divide by zero (e.g. run_time / filter_life)
Yeah – I was getting that - but is not this set here?
Those values are from your code - no alteration. I have tried adjusting the 50000 to be 90 days (i.e., 9120 hours) made no difference. Have tried other values just to see if I can get anything to change. I have tried 12, 24, 48, 96 - none of them made a difference. It is currently 730 (which is 30 days).
Looking at the code - I cannot think of any other place I need to set something. Do you perhaps have a ‘Helper’ created that you forgot to mention?
As you can see - there is only one value which always says ‘unavailable’ - also odd that input_number.um_hvac_uv_filter_life and sensor.um_hvac_uv_per_hour also never change from 0.
OK - Your comment made me re-think. I manually added a value to ‘filter_life’ (I put in 9120 - 90 days), and then waited for the heat to come on and off again. I guess I was thinking that ‘value’ was on that changed. It did not. Then I noticed that the % of filter_life was now showing 100 - not 0.0. OUILA – “Light Bulb” That 9120 value was needed by me.
Now I think I understand how all this works. See, enough hammering - and I get it.
OK – I think I finally got it. Got a dashboard panel created - still trying to decide how I want to name them.
This one still confounds me sensor.um_hvac_uv_uv_usage - as it appears to a cumulative total - but not sure how to rest it (if I wanted to). Also may play at some point to make this into ‘days’ not hours.
Gonna need to find a way to track ‘idle’ vs. ‘not-idle’ (or in my case “heating” and “cooling”) - to be an actual track of furnace/AC on time (my home they are basically one unit).
Thanks again for the insight, and wisdom. I do truly appreciate the time.
Glad you got it. Big learning curve with HA and there are alot of components involved in this solution.
Yes it will increase forever. There is no easy way to reset it
You can add an “or” condition into the template to check for cooling. So if the hvac_action is heating or cooling it will increment. If you turn the thermostat off - the hvac_action should go to off instead of idle. Hence checking for the specific conditions (heating and cooling) will wok better. It could also go unavailable if there is a communication problem or zwave goes offline.