warmwater on toon

If you don't know where to post, post here.

Moderators: marcelr, TheHogNL, Toonz

TheHogNL
Forum Moderator
Forum Moderator
Posts: 2125
Joined: Sun Aug 20, 2017 8:53 pm

Re: warmwater on toon

Post by TheHogNL »

glsf91 wrote:
TheHogNL wrote:
Is your modification in the TSC menu already available for everyone or is it still beta ?
(because I don't see these option)

And do you know if it is possible to switch on/off "Kraanwater voorverwarmen" with a URL ?
If you don't see this option your Toon isn't on opentherm OR your boiler doesn't talk to the Toon that it support this feature.
But then you also don't have the native button from the Toon itself (menu 'verwarming') to disable the whole pre-heating.

And no, there is no out-of-the-box url to disable preheating. But with a rooted toon everything is possible to make it your self :-)
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

TheHogNL wrote: If you don't see this option your Toon isn't on opentherm OR your boiler doesn't talk to the Toon that it support this feature.
But then you also don't have the native button from the Toon itself (menu 'verwarming') to disable the whole pre-heating.
I think you mean menu "warm water"instead of "Verwarming".
I have opentherm and also menu "warm water" with the option "Kraanwater voorverwarmen".

Or do I have to set the togle FT_Dhw_rel first ?
TheHogNL
Forum Moderator
Forum Moderator
Posts: 2125
Joined: Sun Aug 20, 2017 8:53 pm

Re: warmwater on toon

Post by TheHogNL »

glsf91 wrote:
I think you mean menu "warm water"instead of "Verwarming".
I have opentherm and also menu "warm water" with the option "Kraanwater voorverwarmen".

Or do I have to set the togle FT_Dhw_rel first ?
Correct. Menu "warm water".

But no that toggle is for something else. The button is dependend on FF_Dhw_PreHeat_Settings (see https://github.com/ToonSoftwareCollecti ... e.qml#L321) which is automatically set (by happ_thermstat) when you have opentherm and a boiler supporting it. But it is weird that in your setup you do have the native buttons but not this TSC option.

Can you post the output of the first 10 to 20 seconds of

Code: Select all

/qmf/sbin/happ_thermstat -vvv 2>&1 | grep -i dhw 
Just hit ctrl-c to end it. Your happ_thermstat will not work after this but will be restarted in 5 minutes. Or just reboot.

I'm looking at the feature toggle and flags in the first few lines of that output.
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

TheHogNL wrote:
glsf91 wrote:
Can you post the output of the first 10 to 20 seconds of

Code: Select all

/qmf/sbin/happ_thermstat -vvv 2>&1 | grep -i dhw 
Just hit ctrl-c to end it. Your happ_thermstat will not work after this but will be restarted in 5 minutes. Or just reboot.

I'm looking at the feature toggle and flags in the first few lines of that output.

Code: Select all

eneco-001-130337:~# /qmf/sbin/happ_thermstat -vvv 2>&1 | grep -i dhw
[hdrv]Adding driver handler Thermostat'7'GetDhwSettings
[hdrv]Adding driver handler Thermostat'7'SetDhwSettings
[hbas]Config '<happ_thermstat>dhwEnabled' not found, using default '1'
[hbas]Config '<happ_thermstat>dhwSetpoint' not found, using default '60'
[hbas]Config '<releaseToggles>FT_Dhw_rel' is '0'
[happ_thermstat:../../src/feature.c@feature_toggleUpdate():418]Toggle FT_Dhw_rel changed to 0
[happ_thermstat:../../src/feature.c@feature_eval():455]Feature FF_Dhw_UiElements_Settings result: 0
[happ_thermstat:../../src/feature.c@feature_eval():455]Feature FF_Dhw_UiElements_Settings result: 0
[happ_thermstat:../../src/feature.c@feature_eval():455]Feature FF_Dhw_PreHeat_Settings result: 1
[happ_thermstat:../../src/feature.c@feature_eval():455]Feature FF_Dhw_UiElements result: 0
[happ_thermstat:../../src/master.c@createSvar_int():211]Adding profile ThermostatInfo var BoilerDhwBurnerHours
[happ_thermstat:../../src/master.c@createSvar_int():211]Adding profile ThermostatInfo var BoilerDhwBurnerStarts
[happ_thermstat:../../src/rrd.c@rrd_initDevicesByIntAddr():472]Checking key=thermstat_boilerDhwBurnerHours devUuid=58556841-fc66-45a8-a382-6646a9493ecb
[happ_thermstat:../../src/rrd.c@rrd_initDevicesByIntAddr():472]Checking key=thermstat_dhwBurnerStarts devUuid=58556841-fc66-45a8-a382-6646a9493ecb
[happ_thermstat]rrd init rrdName:thermstat_boilerDhwBurnerHours uuid:4fc93aa9-96e0-426d-b50b-eb7126d95dc0 deviceUuid:58556841-fc66-45a8-a382-6646a9493ecb
[happ_thermstat]rrd init rrdName:thermstat_dhwBurnerStarts uuid:0d6dd188-4694-4791-b892-55fe1a5348c6 deviceUuid:58556841-fc66-45a8-a382-6646a9493ecb
[happ_thermstat:../../src/feature.c@feature_eval():455]Feature FF_Dhw_UiElements_Settings result: 0
[happ_thermstat:../../src/feature.c@feature_eval():455]Feature FF_Dhw_UiElements result: 0
[happ_thermstat]OTGW <<- 'M' 02  01 38 3C 00            Set DHW setpoint to 60
[hcom]Sending HBXT_ACTION_INVOKE from eneco-001-130337:happ_thermstat to eneco-001-130337:hcb_log/Logger: n=LogMessage facility=1 timestampGenerated=2019-10-07 18:58:23 +0200 timestampExpire=2019-11-06 17:58:23 +0100 categoryId=90 entryType=2 appId=1000 objectType=8 objectId=happ_thermstat logText=thermstat_boilerDhwSetpoint=60 logTextF=
[happ_thermstat]OTGW setup step 14/16: set DHW temp
^C
I hope this is what you are looking for.
TheHogNL
Forum Moderator
Forum Moderator
Posts: 2125
Joined: Sun Aug 20, 2017 8:53 pm

Re: warmwater on toon

Post by TheHogNL »

glsf91 wrote: I hope this is what you are looking for.
Yes thanks.
This show that it is set correctly: Feature FF_Dhw_PreHeat_Settings result: 1

Can you send a picture of the TSC menu where the water preheat option is missing?
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

TheHogNL wrote:
glsf91 wrote: I hope this is what you are looking for.
Yes thanks.
This show that it is set correctly: Feature FF_Dhw_PreHeat_Settings result: 1

Can you send a picture of the TSC menu where the water preheat option is missing?
Of course.
drive.google.com/open?id=1ew-fIRZj-quTc ... PNaWMoXTOR
TheHogNL
Forum Moderator
Forum Moderator
Posts: 2125
Joined: Sun Aug 20, 2017 8:53 pm

Re: warmwater on toon

Post by TheHogNL »

Owh you are on an old version :) just hit check update and let it update your toon and or resource files
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

TheHogNL wrote:Owh you are on an old version :) just hit check update and let it update your toon and or resource files
I updated the resource file earlier this week.
So I have to update firmware to 5.3.12?
TheHogNL
Forum Moderator
Forum Moderator
Posts: 2125
Joined: Sun Aug 20, 2017 8:53 pm

Re: warmwater on toon

Post by TheHogNL »

On what firmware are you running now? TSC menu 2.1.0 should be available on most recent firmwares (everything 5.x ). And yes, just update to 5.13.12 if you have an older firmware.
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

TheHogNL wrote:On what firmware are you running now? TSC menu 2.1.0 should be available on most recent firmwares (everything 5.x ). And yes, just update to 5.13.12 if you have an older firmware.
I have now 4.9.10
mAiden
Member
Member
Posts: 330
Joined: Mon Jul 10, 2017 10:22 am

Re: warmwater on toon

Post by mAiden »

glsf91 wrote:
TheHogNL wrote:On what firmware are you running now? TSC menu 2.1.0 should be available on most recent firmwares (everything 5.x ). And yes, just update to 5.13.12 if you have an older firmware.
I have now 4.9.10
Hit the button "Check for update". What say it?
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

mAiden wrote:
glsf91 wrote:
TheHogNL wrote:On what firmware are you running now? TSC menu 2.1.0 should be available on most recent firmwares (everything 5.x ). And yes, just update to 5.13.12 if you have an older firmware.
I have now 4.9.10
Hit the button "Check for update". What say it?
Only firmware update to 5.3.12.
TheHogNL
Forum Moderator
Forum Moderator
Posts: 2125
Joined: Sun Aug 20, 2017 8:53 pm

Re: warmwater on toon

Post by TheHogNL »

Yes just update. TSC 2.1.0 is not available for pre 5.x firmwares.
Member of the Toon Software Collective
mAiden
Member
Member
Posts: 330
Joined: Mon Jul 10, 2017 10:22 am

Re: warmwater on toon

Post by mAiden »

glsf91 wrote:
Only firmware update to 5.3.12.
Exactly what TheHogNL said .. You will really have to update to 5.13.12, otherwise you will never get TSC 2.1.0, this only works from 5.x.x firmwares.
Update your Toon. You will have the new TSC menu.
Member of the Toon Software Collective
glsf91
Member
Member
Posts: 184
Joined: Fri Sep 15, 2017 9:25 pm

Re: warmwater on toon

Post by glsf91 »

TheHogNL wrote:Yes just update. TSC 2.1.0 is not available for pre 5.x firmwares.
Update succeeded and indeed visible now. Thanks.

Small question: what is Lock TSC settings?
And if I change something in qmf_release.xml do I have to reboot or just restart GUI?
Post Reply

Return to “Toon miscellaneous”