Set Thermostaat to Eco Mode (Boolean 106 = On/Off)
Set thermostat maximum temperature (Value 108)
Set thermostat minimum temperature (Value 109)
Feedback of the Valve position (Value 104 = 0-100%)
Boost Heating Countdown Value 5) Boost Heating is on Countdown in minutes starting from 5 (300 seconds)
boost Heating Countdown Time Set (Value 103) Set Boost Heating countdown timer in Seconds (currently 300, so that matches to the 5 minutes)
These are the datapoint i know they are there, but i don’t now how they work:
Reset (Enum 7)
Schedule (Raw 101)
Window Detection Funktion_A2 (Boolean 8 On/Off) *Turns on/off the “Window detection” when room temp drops below N (5-25°C???) * 00=close/01=open
Window Detection (Enum 9 On/Off) I think this is feedback on the “Window detection”
Thermostat temperature calibration (Value 105)
Set Temperatur Eco mode (Value?? 107) I didn’t see this datapoint, but according to the code on github it should be there to set the eco temperature, I think the value must be multiplied by 10
I’ve tried to understand this code, but I’m not a programmer, maybe you can do a little more with this?
Other than the first one, ST doesn’t seem to have native capabilities for the other functionalities.
I could add them in the settings, but they wouldn’t be available in automations.
Also, duplicate capabilities would require separate components.
Thermostat Mode is writable, so if you put in the value ‘2’ the thermostat will switch to ‘manual’mode
- 0= auto (It wil run the weekly programming you put in)
- 1=manual
- 2=temporary manual, so it wil returns to the weekly programming mode (0) in the next time period.
after a while
- 3= holiday mode, I believe it will automatically switchback to 0 after 10 days?
Child lock is writable (True/False), if Child lock is true, you cannot use the buttons on the valve to set temp ect
Eco Mode is writable (True/False), it will set the thermostat to Eco mode
Maximum temperature thermostatHeatingSetpoint, I think it is writable, so you can set the upper temperature limit.
Minimum temperature thermostatHeatingSetpoint, I think it is writable, so you can set the lower temperature limit
Valve position (%) not writable, it wil give you feedback on the position off the valve. So when the value is 100, it means the valve is fully open (100%)
Boost Heating, I think it is writable (True/False) and you can use this function if you want to heat up the room quickly. When you turn on this function countdown timer will start Time Setting (datapoint 103) 100 sec - 900 sec, (default = 300 sec)
They must meet the options available in the native capabilities referenced in the links.
“temporary manual” and “holiday mode” aren’t available options.
Even though boolean are true/false, but they are represented as 1 or 0.
Usually, 0 = false and 1 = true, but it isn’t always true. Confirmation is needed.
I think when u use the vale in smartthings, you will only use manual mode. The other 3 modes are used when u use the weekly programming. So you can always automaticly write 1 so that you overrule the program.
Boost mode I think is used if you want to quickly heat up a room for x seconds (Countdown timer), so the valve will open more quickly in this mode.
Eco mode can be used to set a lower room temperature. My Nest Thermostat has the same mode
I tested the boolean true/false functions in the generic mode with a switch datapoint
@w35l3y I’m still trying to figure out how to test this, but I think I need some help. How can i test if a boolean is using 0 and 1? the “switches” datapoint to change the true or false. Is there anny other way to test this wheter it use 0 and 1?
Create a Switch in the settings for each boolean DP. Probably they will be disabled by default.
For example: Switches 4,8,13,106
Modify the settings related to these DPs from the device and take note of changes displayed in the app. It will enable the child in the app.
By default, the driver will interpret 0 as false and 1 as true.
But you may, for example, enable child lock from the device and the app show as disabled/off.
Then you will understand logic is inverted for child lock.
Hi Wesley, I had indeed seen that you added the device to the driver, but I wanted to check out the other data points for you. I don’t know if it is possible foor you can add it to the driver? Last night I also figured out how datapoint 101 works. I woke up in the middle of the night and I suddenly knew how datapoint 101 works. The “/x” are separators and the two characters after that are Hexadecimal. I have added the explanation of datapoit 101 to the Word document i send you earlier, so I will also send it to you. I’ll see if I can get the boolean addresses figuredout tonight.
\xNN is a way to represent a byte in hexadecimal.
It can be any value from \x00 to \xFF
I would like to know how DP 101 is shown in the app.
Because it is a recent update to display “raw data”
Before the modification, it was showing as “nil”
I may add the DPs that can match with native capabilities.
When the thermostat is turned on for the first time (out off the box), the value of data point 101 is “nil”. Only when I entered a weekly schedule via the buttons on the thermostat, was this value visible. In others, if no weekly schedule is entered, then the value is “nil” once you entered a weekly schedule for the first time, then value of datapoint 101 changes.
Here are some screenshots of how it appears in the app.
When I look at the datapoints in the app, all 4 child switches in smarthings are “on” if the value of the data point is “true” and “off” if the value of the data point is “false”.
Then I pressed the 4 child switches in the smartthings app, after which the value of datapoint 4,13, and 106 changed from “true” to “false” and vice versa. Datapoint 8 does not change the value, so I cannot operate datapoint 8 from the smartthings app using the child switch.
Via the buttons on the thermostat I turned “boost heating” on and off, so I see the value of data point 4 change from “true” to “false”. I also see the child switch going on and off. Where “true” is on and “false” is off
Via the buttons on the thermostat I turned “windows detection” on and off, so I see the value of data point 8 change from “true” to “false”. But the child switch does not change state. The child is turned “on” by default, but it stays on when the value changes to “false”
Via the buttons on the thermostat I turned “child lock” on and off, so I see the value of data point 13 change from “true” to “false”. I also see the child switch going on and off. Where “true” is on and “false” is off
Via the buttons on the thermostat I turned “child lock” on and off, so I see the value of data point 13 change from “true” to “false”. I also see the child switch going on and off. Where “true” is on and “false” is off
Via the buttons on the thermostat I turned “eco mode” on and off, so I see the value of data point 13 change from “true” to “false”. I also see the child switch going on and off. Where “true” is on and “false” is off
To summarize:
The value of datapoint 4,13,106 can be changed using a child switch. When the child switch is operated, the status of the data point changes from “true” to “false”, where “true” is on and “false” is off. Also if I change the value of datapoint 4,13,106 via the thermostat, the state of child switches will changes to “on” when the value is “true” and “off” when the value if “False”
Datapoint 8 cannot be opperated using the child switch, and also the child switch does not change it’s state when the value of the datapoint is changed from “true” to “false”