Wayne Dalton WDTC-20
(Wayne Dalton WDTC-20 EnergySavingsHeating mode) |
m |
||
Line 1: | Line 1: | ||
+ | [[Category:Development]] | ||
Wayne Dalton WDTC-20 EnergySavingsHeating mode | Wayne Dalton WDTC-20 EnergySavingsHeating mode | ||
Revision as of 07:13, 27 May 2011
Wayne Dalton WDTC-20 EnergySavingsHeating mode
I would like to see the Heat button change to Save when I click on it when it's blue. Also, there should be a way to set the EnergySavingsHeating set point, that I cannot seem to figure out a workaround for?? I did however find that using SwitchPower, I could set the thermostat to EnergySavingsHeating mode, the set point has to be set on the thermostat itself.
EnergySavingsHeating:
urn:upnp-org:serviceId:HVAC_UserOperatingMode1 ModeStatus=EnergySavingsHeating ModeTarget=EnergySavingsHeating
urn:upnp-org:serviceId:SwitchPower1 Target:0
HeatOn:
urn:upnp-org:serviceId:HVAC_UserOperatingMode1 ModeStatus=HeatOn ModeTarget=HeatOn
urn:upnp-org:serviceId:SwitchPower1 Target:1
As a workaround, currently I have built a scene with a luup script that puts all of my WDTC-20 thermostats in EnergySavingsHeating mode: (Replace the 24 with your device)
local lul_arguments = {} lul_arguments["newTargetValue"]=0 lul_resultcode,lul_resultstring,lul_job,lul_returnarguments = luup.call_action("urn:upnp-org:serviceId:SwitchPower1","SetTarget",lul_arguments,24)
luup.variable_set("urn:upnp-org:serviceId:HVAC_UserOperatingMode1","ModeStatus","EnergySavingsHeating",24)
luup.variable_set("urn:upnp-org:serviceId:HVAC_UserOperatingMode1","ModeTarget","EnergySavingsHeating",24)