dzvents script does not trigger
Posted: Monday 08 October 2018 18:42
I am very sure this is a solid user error on my side, but I have been staring at this for a while and simply donot see what is wrong.
I want to create a dzvents script that is triggered every minute.
Using the Domoticz editor, I created a script:
Name "test", type "dzVents", triggered by "all" (I also tried "timer")
Code could not be simpler:
I expect to see the line of text every minute, but nothing happens.
Checked in Setup-->Settings-->Other: dzVents is enabled, log is on "Errors+forced messages".
As said, I am sure I am missing something but I don't see it.
Help?
I want to create a dzvents script that is triggered every minute.
Using the Domoticz editor, I created a script:
Name "test", type "dzVents", triggered by "all" (I also tried "timer")
Code could not be simpler:
Code: Select all
return {
active = true,
on = {
['timer'] = 'every 1 minutes'
},
execute = function(domoticz)
domoticz.log('@@@@@@@@@@@@@@@@@@@@@@@@@@ test', domoticz.LOG_INFO)
end
}Checked in Setup-->Settings-->Other: dzVents is enabled, log is on "Errors+forced messages".
As said, I am sure I am missing something but I don't see it.
Help?