Hi,
I'm trying to find out if i can get the Timer info of a device\group:
didn't found anything in the documenation. What i need is wen this device\groep is turned off. here above 23.00. Any idea's?
Marcel
Search found 3 matches
- Wednesday 29 May 2024 19:59
- Forum: dzVents
- Topic: Get device Timers
- Replies: 15
- Views: 1837
- Sunday 07 April 2024 18:29
- Forum: dzVents
- Topic: Get group settings [Solved]
- Replies: 3
- Views: 530
Re: Get group settings [Solved]
sometimes you have to look twice. could reas the setting with
Thanks.
Code: Select all
local myDevice = domoticz.groups('All').devices().find(function(device)
return device.name == 'Led Keuken'
end)
domoticz.log('Level is set to: ' .. myDevice.level)
- Sunday 07 April 2024 12:47
- Forum: dzVents
- Topic: Get group settings [Solved]
- Replies: 3
- Views: 530
Get group settings [Solved]
Hi, I have setup a group within Domoticz which called "All". This group has several devices defined, one called "Led Keuken". Within a dzVents script I would like to ask what level I setup for this device. 2024-04-07 12_43_55-Clipboard.png Is this possible to do? and if so, has some one a sample ...