Search found 3 matches

by mvleusden
Wednesday 29 May 2024 19:59
Forum: dzVents
Topic: Get device Timers
Replies: 15
Views: 1837

Get device Timers

Hi,

I'm trying to find out if i can get the Timer info of a device\group:
2024-05-29 19_53_46-Thuis — Mozilla Firefox.jpg
2024-05-29 19_53_46-Thuis — Mozilla Firefox.jpg (57.9 KiB) Viewed 1837 times
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
by mvleusden
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

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)
Thanks.
by mvleusden
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 ...