Currently im building a zone regulated heating system.
I would like to control/override the 'boiler-setpoint' of Toon, is this possible? For example : http://<IP>/happ_thermstat?action=setSetboilerSetpoint=4000?
Control happ_thermstat boiler setpoint
Moderators: marcelr, TheHogNL, Toonz
Re: Control happ_thermstat boiler setpoint
This wil set the settemp to 22 degrees and turn off the schedule:knug2 wrote:Currently im building a zone regulated heating system.
I would like to control/override the 'boiler-setpoint' of Toon, is this possible? For example : http://<IP>/happ_thermstat?action=setSetboilerSetpoint=4000?
Code: Select all
http://<IP>/happ_thermstat?action=changeSchemeState&state=0&temperature=2200
Code: Select all
http://<IP>/happ_thermstat?action=changeSchemeState&state=2&temperature=2200
Member of the Toon Software Collective
Re: Control happ_thermstat boiler setpoint
@ TheHogNL Thanks for your reply.
But this is just the 'room' setpoint.
What I need/want too change is the 'boiler' output temperature ( eg 60 degrees out ).
I need to override the calculated boiler setpoint value by Toon.
Curious if this is possible, otherwise I will use an OTGW to override the boiler setpoint. But I prefer to only use the Toon if possible.
But this is just the 'room' setpoint.
What I need/want too change is the 'boiler' output temperature ( eg 60 degrees out ).
I need to override the calculated boiler setpoint value by Toon.
Curious if this is possible, otherwise I will use an OTGW to override the boiler setpoint. But I prefer to only use the Toon if possible.
Re: Control happ_thermstat boiler setpoint
Ok that is impossible I am afraid with the toon.knug2 wrote:@ TheHogNL Thanks for your reply.
But this is just the 'room' setpoint.
What I need/want too change is the 'boiler' output temperature ( eg 60 degrees out ).
I need to override the calculated boiler setpoint value by Toon.
Curious if this is possible, otherwise I will use an OTGW to override the boiler setpoint. But I prefer to only use the Toon if possible.
Member of the Toon Software Collective
Re: Control happ_thermstat boiler setpoint
OK, unfortunately.....
Is there somewhere a list (besides this one : domoticaforum.eu/viewtopic.php?f=97& ... tat#p94570 with all the available commands that can be executed trough happ_thermstat?
Is there somewhere a list (besides this one : domoticaforum.eu/viewtopic.php?f=97& ... tat#p94570 with all the available commands that can be executed trough happ_thermstat?
Re: Control happ_thermstat boiler setpoint
Still have not found a solution yet ( besides OpenThermGateway ). Does anyone know if there is a possibility to manually override the boiler setpoint temperature ( and not just the roomtemperature ), but the calculated boiler setpoint??
Thanks in advance
Thanks in advance
Re: Control happ_thermstat boiler setpoint
The data from and towards the boiler module are sent through a standard serial protocol. You can intercept the communication and replace e.g., the boiler output setpoint with your own value. It will take some C programming skills to make this work. In the distant past I have used interceptty to monitor the boiler module communication, with some reprogramming it may serve as an interface to push your own data into the communication channel. You will also need to use the edge protocol as defined by Quby (and reverse-engineered by me
) to keep the communication with the boiler functional.
In short: Not an easy job, but it can be done.

In short: Not an easy job, but it can be done.