Search found 1 match

by nbleezi
Friday 12 April 2019 17:41
Forum: Other questions and discussions
Topic: Updating the status of Domoticz switches without triggering?
Replies: 37
Views: 17999

Re: Updating the status of Domoticz switches without triggering?

Update switch status in Domoticz using DzVent, without executing the on/off command:

Code: Select all

execute = function(dz, item)
     dz.devices(39).update(0,'Off')
     dz.devices(39).update(1,'On')
end
,where dz is the domoticz object, 39 is the device's IDX number.