Page 1 of 1

dzVents not executed

Posted: Saturday 15 June 2019 8:29
by usky73
Hi all

Here is my setting :
Version: 4.10717 and 2.4.19 for DzVent
Platform: Rapsberry 2B

Description:
I did some search but did not find any topics concerning my DzVent issue. My be a simple problem... but I did not found
I am starting to do conver my LUA scripts to DzVent scripts, it looks much more simple to do.

So I did my 1st script and nothing happens. I took examples on the forum, but same result... Nothing in the log, and nothing happen.

Any idea ?

Code: Select all

return {
    on = {
	   timer = {'every minute'}
	},
	   logging = {
              level = domoticz.LOG_INFO,
              marker = "[TEST] ==> "
    },
    execute = function(domoticz, dzItem)
        domoticz.log("This timer based script does send something to the domoticz log")
    end
}

Re: DzVent not executed

Posted: Saturday 15 June 2019 8:51
by waaren
usky73 wrote: Saturday 15 June 2019 8:29 I did some search but did not find any topics concerning my DzVent issue. My be a simple problem... but I did not found
I am starting to do convey my LUA scripts to DzVents.

So I did my 1st script and nothing happens. I took examples on the forum, but same result... Nothing in the log, and nothing happen.
Did you do the steps described in the wiki ?

When not yet familiar with dzVents please start with reading Get started Before implementing. Special attention please for
"In Domoticz go to Setup > Settings > Other and in the section EventSystem make sure the checkbox 'dzVents disabled' is not checked. Also make sure that in the Security section in the settings you allow 127.0.0.1 to not need a password. dzVents uses that port to send certain commands to Domoticz. Finally make sure you have set your current location in Setup > Settings > System > Location, otherwise there is no way to determine nighttime/daytime state."

Re: dzVents not executed  [Solved]

Posted: Saturday 15 June 2019 9:14
by usky73
Thank you so much.
I was sure it was something like that but did not found and believe me I did it !

And of course I have started with this wiki page. I don't know how you can do something without this doc. But I missed this MAJOR info.