Page 1 of 1

Danfoss LC_13 Events - use setpoint value

Posted: Sunday 11 January 2015 20:51
by maugrim
Hi,

i'm new to Domoticz (coming from Zipato) and using it to control my Danfoss LC_13 Thermostats.
The timer function is working fine to control them time based.

Now i'm trying to use it under the events section with an Fibaro Door Sensor (which is working fine).
So i want to set the thermostat to off/4 Degrees (what is the same in this case).

But what ive seen is that i cant use an Utility with an set command, so how can i do this?
Domoticz Windows Version 2186

thx,
maugrim

Re: Danfoss LC_13 Events - use setpoint value

Posted: Tuesday 13 January 2015 9:37
by mfranken
I'm trying the same, and would be very happy with this feature too

Re: Danfoss LC_13 Events - use setpoint value

Posted: Sunday 17 May 2015 17:35
by maugrim
Hi, maybe there is any update on this? ive seen that setpoint in blockly is supportet, but i cant understand how to use it?

Anyone have an advice for me?

Thx

Im now on v2455 on an RPI2

Re: Danfoss LC_13 Events - use setpoint value

Posted: Friday 28 August 2015 8:57
by zofiel
any news? Could you post here a blocky snapshot?

thanks in advance!

Re: Danfoss LC_13 Events - use setpoint value

Posted: Tuesday 01 September 2015 11:08
by zofiel
any LUA or Blockly example with these devices?

thanks in advance

EDIT: a little contribution :)

dummy switch and a LC13 with IDx 9

Code: Select all

commandArray = {}
 if (devicechanged['Calefaccion'] == 'On') then
     commandArray['SendNotification']='Calefaccion Encendida#Calefaccion Encendida#0'
     commandArray['UpdateDevice']="9|0|21"
 elseif (devicechanged['Calefaccion'] == 'Off') then
     commandArray['SendNotification']='Calefaccion Apagada#Calefaccion Apagada#0'
     commandArray['UpdateDevice']="9|0|18"
 end
return commandArray
How can I create It with Blockly??

Re: Danfoss LC_13 Events - use setpoint value

Posted: Wednesday 20 January 2016 16:53
by Plaagje
zofiel wrote:any LUA or Blockly example with these devices?

thanks in advance

EDIT: a little contribution :)

dummy switch and a LC13 with IDx 9

Code: Select all

commandArray = {}
 if (devicechanged['Calefaccion'] == 'On') then
     commandArray['SendNotification']='Calefaccion Encendida#Calefaccion Encendida#0'
     commandArray['UpdateDevice']="9|0|21"
 elseif (devicechanged['Calefaccion'] == 'Off') then
     commandArray['SendNotification']='Calefaccion Apagada#Calefaccion Apagada#0'
     commandArray['UpdateDevice']="9|0|18"
 end
return commandArray
How can I create It with Blockly??
Thanks for the lua script, i have a few questions about the numbers;

"9|0|18"
9 = the idx of the device
18 = the setpoint of the device.

what does the "0" represent?

@zofiel: i guess the blocky would look something like this
Image