Trigger "every minute" not working as expected

Easy to use, 100% Lua-based event scripting framework.

Moderator: leecollings

Post Reply
Freemann
Posts: 94
Joined: Thursday 24 November 2016 14:55
Target OS: Linux
Domoticz version: >=Béta
Location: Netherlands
Contact:

Trigger "every minute" not working as expected

Post by Freemann »

I have the following scripts and "filtering" my log page on "dzvents1":

Code: Select all

-- Check the wiki at
-- http://www.domoticz.com/wiki/%27dzVents%27:_next_generation_LUA_scripting
return {
	active = true, -- set to false to disable this script
	on = {timer = {'every minute'}},
    data = {
            achtertuinRaamLux = { initial = {},history = true, maxItems = 10 }
    },
	execute = function(domoticz, dum)
	    domoticz.log("dzvents1:=========== executed =============")
	    domoticz.data.achtertuinRaamLux.add(domoticz.devices('AchtertuinRaamLux').lux)
        domoticz.data.achtertuinRaamLux.forEach(function(item,index)
            local s=domoticz.data.achtertuinRaamLux.smoothItem(index, 2)
            domoticz.log('dzvents1: '..item.data .. ', ' .. s)
        end)
	end
}
Filter output of log page;

Code: Select all

2017-08-09 21:04:24.631 EventSystem: Write file: /home/pi/dev-domoticz/scripts/dzVents/generated_scripts/ScriptsDVdzvents1-AchtertuinRaamLux.lua
2017-08-09 21:04:25.677 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:04:44.085 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:04:56.048 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:04:56.848 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:00.745 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:00.752 dzVents: Info: dzvents1:=========== executed =============
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 187, 187
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 187, 201.5
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 187, 210.2
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 245, 221.8
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 245, 244.8
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 245, 267.8
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 302, 279.2
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 302, 302.2
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 302, 316.5
2017-08-09 21:05:00.769 dzVents: Info: dzvents1: 360, 321.33333333333
2017-08-09 21:05:00.771 dzVents: Info: ------ Start internal script: ScriptsDVdzvents1-AchtertuinRaamLux:, trigger: every minute
2017-08-09 21:05:00.771 dzVents: Info: dzvents1:=========== executed =============
2017-08-09 21:05:00.771 dzVents: Info: dzvents1: 187, 187
2017-08-09 21:05:00.772 dzVents: Info: ------ Finished ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:07.106 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:07.349 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:11.393 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:35.376 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:05:57.034 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:05.175 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:05.418 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:06.615 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:16.906 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:44.700 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:56.771 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:06:58.014 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:04.461 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:04.707 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:17.882 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:18.126 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:18.382 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:18.679 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:28.050 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:45.124 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:07:59.205 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:00.957 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:05.000 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:06.902 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:34.020 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:38.049 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:38.299 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:38.553 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:44.409 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:45.328 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:50.369 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:08:51.307 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:00.282 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:00.288 dzVents: Info: dzvents1:=========== executed =============
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 135, 135
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 135, 135
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 135, 145.4
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 135, 155.8
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 187, 166.2
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 187, 188.2
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 187, 210.2
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 245, 221.8
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 245, 230.5
2017-08-09 21:09:00.305 dzVents: Info: dzvents1: 245, 245
2017-08-09 21:09:00.307 dzVents: Info: ------ Start internal script: ScriptsDVdzvents1-AchtertuinRaamLux:, trigger: every minute
2017-08-09 21:09:00.308 dzVents: Info: dzvents1:=========== executed =============
2017-08-09 21:09:00.308 dzVents: Info: dzvents1: 135, 135
2017-08-09 21:09:00.308 dzVents: Info: dzvents1: 135, 135
2017-08-09 21:09:00.308 dzVents: Info: dzvents1: 135, 145.4
2017-08-09 21:09:00.308 dzVents: Info: dzvents1: 135, 148
2017-08-09 21:09:00.309 dzVents: Info: dzvents1: 187, 152.33333333333
2017-08-09 21:09:00.309 dzVents: Info: ------ Finished ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:02.398 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:02.643 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:03.323 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:05.024 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:05.274 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:09.773 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:24.707 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:38.051 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:09:46.400 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:06.378 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:06.619 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:15.227 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:17.573 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:19.825 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:21.248 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:31.401 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:40.330 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:10:50.654 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:04.691 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:04.934 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:05.964 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:14.820 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:16.344 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:18.409 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:21.386 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:21.596 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:21.837 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:22.129 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:24.965 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:25.218 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:36.590 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:37.535 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:37.787 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:38.037 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:38.331 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:38.572 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:39.119 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:39.361 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:39.605 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:39.847 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:45.006 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:51.449 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:51.689 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:51.983 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:52.224 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:52.465 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:11:53.803 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:05.010 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:05.251 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:18.460 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:18.703 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:18.945 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:19.245 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:19.488 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:22.268 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:24.972 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:12:41.671 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:05.333 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:05.573 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:08.115 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:17.335 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:24.406 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:25.827 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:55.619 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:13:57.043 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:14:04.624 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:14:04.862 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:14:20.243 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:14:25.610 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:15:04.425 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:15:04.704 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:15:05.195 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:15:05.487 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:15:07.141 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:15:26.632 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:16:05.167 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:16:05.408 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:16:25.910 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:16:29.259 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:04.466 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:19.005 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:19.246 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:19.487 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:19.783 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:20.024 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:29.950 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:45.503 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:17:54.444 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:18:05.028 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:18:07.155 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:18:25.717 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:18:32.447 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:19:05.083 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:19:05.322 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:19:43.203 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:20:05.363 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:20:05.617 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:20:21.810 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:20:31.375 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:04.597 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:21.620 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:21.862 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:22.101 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:38.842 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:39.084 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:39.325 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:39.621 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:39.865 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:40.129 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:40.378 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:52.414 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:53.196 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:53.439 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:21:53.679 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:03.401 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:04.908 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:05.150 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:19.637 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:19.880 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:20.123 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:20.413 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:22:20.658 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:04.909 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:05.124 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:05.368 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:38.656 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:51.520 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:53.688 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:55.920 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:23:58.142 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:02.566 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:05.378 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:05.706 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:05.946 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:06.970 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:09.188 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:11.369 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:13.585 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:15.885 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:18.040 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:20.252 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:24:22.425 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:25:00.672 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:25:00.678 dzVents: Info: dzvents1:=========== executed =============
2017-08-09 21:25:00.695 dzVents: Info: dzvents1: 29, 29
2017-08-09 21:25:00.695 dzVents: Info: dzvents1: 29, 29
2017-08-09 21:25:00.695 dzVents: Info: dzvents1: 29, 29
2017-08-09 21:25:00.695 dzVents: Info: dzvents1: 29, 34.2
2017-08-09 21:25:00.696 dzVents: Info: dzvents1: 29, 39.4
2017-08-09 21:25:00.696 dzVents: Info: dzvents1: 55, 44.6
2017-08-09 21:25:00.696 dzVents: Info: dzvents1: 55, 49.8
2017-08-09 21:25:00.696 dzVents: Info: dzvents1: 55, 55
2017-08-09 21:25:00.696 dzVents: Info: dzvents1: 55, 55
2017-08-09 21:25:00.696 dzVents: Info: dzvents1: 55, 55
2017-08-09 21:25:00.697 dzVents: Info: ------ Start internal script: ScriptsDVdzvents1-AchtertuinRaamLux:, trigger: every minute
2017-08-09 21:25:00.700 dzVents: Info: dzvents1:=========== executed =============
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 29, 29
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 29, 29
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 29, 29
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 29, 34.2
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 29, 39.4
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 55, 44.6
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 55, 49.8
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 55, 55
2017-08-09 21:25:00.700 dzVents: Info: dzvents1: 55, 55
2017-08-09 21:25:00.701 dzVents: Info: dzvents1: 55, 55
2017-08-09 21:25:00.702 dzVents: Info: ------ Finished ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:25:05.854 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:25:06.152 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:25:07.040 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:04.776 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:05.015 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:08.653 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:18.781 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:22.181 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:24.415 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:26.593 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:28.959 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:31.008 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:33.240 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:35.425 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:39.921 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:42.066 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:44.277 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:46.510 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:48.687 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:50.988 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:53.130 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:26:55.306 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:05.074 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:05.327 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:10.639 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:11.030 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:11.272 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:11.797 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:20.244 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:20.486 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:20.848 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:21.089 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:21.329 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:27:52.800 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:01.162 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:01.428 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:05.400 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:05.640 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:11.688 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:23.994 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:28:32.975 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:29:04.169 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:29:07.041 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:29:07.283 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:29:12.643 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:02.213 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:02.457 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:02.698 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:02.992 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:05.271 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:05.515 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:30:34.265 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:04.591 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:04.834 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:21.753 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:21.997 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:22.241 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:35.790 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:39.545 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:39.785 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:40.081 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:40.326 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:40.571 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:40.867 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:53.159 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:53.400 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:53.658 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:53.952 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:54.194 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:31:54.438 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:01.316 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:02.201 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:02.490 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:04.947 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:05.202 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:20.964 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:21.207 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:21.448 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:21.744 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:22.000 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:32:38.903 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:01.606 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:02.628 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:02.869 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:03.644 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:04.652 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:05.202 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-09 21:33:05.585 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
As you all can see, the script is not triggering every(!) minute.

What is wrong, what is it i'm doing wrong and how to fix it?
Domotica/graphs "freak" :)
NUC8i3BEH(8gb/250gb),
Lubuntu 19.04,
Aeotec Z-Stick S2(Gen5)
HarmonyElite
HUE(5 bulbs, 2 blooms)
NetAtmo(complete setup)
MiLight iboxV6(2 MiLightBulbs)
IP-Cam

https://www.frijduurzaam.nl
dannybloe
Posts: 1355
Joined: Friday 29 August 2014 11:26
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Ermelo
Contact:

Re: Trigger "every minute" not working as expected

Post by dannybloe »

Does this also happen in non-debug mode?
Creator dzVents - RPi3, loads of zwave devices, esp8266, evohome.
Freemann
Posts: 94
Joined: Thursday 24 November 2016 14:55
Target OS: Linux
Domoticz version: >=Béta
Location: Netherlands
Contact:

Re: Trigger "every minute" not working as expected

Post by Freemann »

Will change the script to send a email with unique subject and body on execute and set debug level to lowest option.
Will report back later this day.
Domotica/graphs "freak" :)
NUC8i3BEH(8gb/250gb),
Lubuntu 19.04,
Aeotec Z-Stick S2(Gen5)
HarmonyElite
HUE(5 bulbs, 2 blooms)
NetAtmo(complete setup)
MiLight iboxV6(2 MiLightBulbs)
IP-Cam

https://www.frijduurzaam.nl
Freemann
Posts: 94
Joined: Thursday 24 November 2016 14:55
Target OS: Linux
Domoticz version: >=Béta
Location: Netherlands
Contact:

Re: Trigger "every minute" not working as expected

Post by Freemann »

OK, it looks like an log issue.
After adding the email line I see, both in Silent and Everything debug mode, emails every minute.
BUT, I don't see logs that the script is executed.

Here 2 pics;
Screenshot - 10_08_2017 , 14_48_02.png
Screenshot - 10_08_2017 , 14_48_02.png (52.51 KiB) Viewed 1009 times
Screenshot - 10_08_2017 , 14_48_31.png
Screenshot - 10_08_2017 , 14_48_31.png (126.4 KiB) Viewed 1009 times

So it looks like the script is working as expected and I was to focused on the logs.
I would be very nice we can trust logging, so I hope you can fix this :)
As you can see, dzVent doesn't log...

[edit]
Eventually it logged 1 line;

Code: Select all

2017-08-10 14:55:01.708 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-10 14:55:01.715 dzVents: Info: dzvents1:=========== executed =============
2017-08-10 14:55:05.300 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
Domotica/graphs "freak" :)
NUC8i3BEH(8gb/250gb),
Lubuntu 19.04,
Aeotec Z-Stick S2(Gen5)
HarmonyElite
HUE(5 bulbs, 2 blooms)
NetAtmo(complete setup)
MiLight iboxV6(2 MiLightBulbs)
IP-Cam

https://www.frijduurzaam.nl
dannybloe
Posts: 1355
Joined: Friday 29 August 2014 11:26
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Ermelo
Contact:

Re: Trigger "every minute" not working as expected

Post by dannybloe »

I think that the log is more accurate if you watch it from the console/commandline instead of in the browser. Having said that it is not a dzVents issue but domoticz/browser.
Creator dzVents - RPi3, loads of zwave devices, esp8266, evohome.
Freemann
Posts: 94
Joined: Thursday 24 November 2016 14:55
Target OS: Linux
Domoticz version: >=Béta
Location: Netherlands
Contact:

Re: Trigger "every minute" not working as expected

Post by Freemann »

strange...

Always use Log and use it a LOT and never(!) experienced any issues with Log using it with normal LUA/Blocky.

But if you say it, then I believe you and will see how this progress.

Thanks for your time and help!
Domotica/graphs "freak" :)
NUC8i3BEH(8gb/250gb),
Lubuntu 19.04,
Aeotec Z-Stick S2(Gen5)
HarmonyElite
HUE(5 bulbs, 2 blooms)
NetAtmo(complete setup)
MiLight iboxV6(2 MiLightBulbs)
IP-Cam

https://www.frijduurzaam.nl
dannybloe
Posts: 1355
Joined: Friday 29 August 2014 11:26
Target OS: Raspberry Pi / ODroid
Domoticz version:
Location: Ermelo
Contact:

Re: Trigger "every minute" not working as expected

Post by dannybloe »

I have seen it miss messages when too many are fired at once on more than one occassion. Maybe it's a browser issue.
Creator dzVents - RPi3, loads of zwave devices, esp8266, evohome.
Freemann
Posts: 94
Joined: Thursday 24 November 2016 14:55
Target OS: Linux
Domoticz version: >=Béta
Location: Netherlands
Contact:

Re: Trigger "every minute" not working as expected

Post by Freemann »

I don't want to make this a yes/no topic.

I think you will shake your head if you see my loglines per minute (I log almost everything in my Lua/Blocky "script").
My sunScreen LUA script logs on itself 81 lines every(!) minutes and it always shows 81 lines and that also when the dzVent test script is running.
At that moment the sunscreen logs 81lines, the dzVent lua scripts logs nothing (while log is enabled) or incomplete log sequences.

JustMy2Cents.

Thanks again!
Domotica/graphs "freak" :)
NUC8i3BEH(8gb/250gb),
Lubuntu 19.04,
Aeotec Z-Stick S2(Gen5)
HarmonyElite
HUE(5 bulbs, 2 blooms)
NetAtmo(complete setup)
MiLight iboxV6(2 MiLightBulbs)
IP-Cam

https://www.frijduurzaam.nl
Freemann
Posts: 94
Joined: Thursday 24 November 2016 14:55
Target OS: Linux
Domoticz version: >=Béta
Location: Netherlands
Contact:

Re: Trigger "every minute" not working as expected

Post by Freemann »

Here another strange example;
15:00 no log
15:02 is pushes out 2 logs sequences and after that no "dvZents1" logs;

Code: Select all

2017-08-11 10:14:49.316 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:14:49.553 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:00.351 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:02.246 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:02.253 dzVents: Info: dzvents1:=========== executed =============
2017-08-11 10:15:02.269 dzVents: Info: dzvents1: 1446, 1503.3333333333
2017-08-11 10:15:02.269 dzVents: Info: dzvents1: 1446, 1532
2017-08-11 10:15:02.269 dzVents: Info: dzvents1: 1618, 1549.2
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1618, 1583.6
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1618, 1618
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1618, 1618
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1618, 1588.6
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1618, 1559.2
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1471, 1544.5
2017-08-11 10:15:02.270 dzVents: Info: dzvents1: 1471, 1520
2017-08-11 10:15:02.271 dzVents: Info: ------ Start internal script: ScriptsDVdzvents1-AchtertuinRaamLux:, trigger: every minute
2017-08-11 10:15:02.274 dzVents: Info: dzvents1:=========== executed =============
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1446, 1503.3333333333
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1446, 1532
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1618, 1549.2
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1618, 1583.6
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1618, 1618
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1618, 1618
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1618, 1588.6
2017-08-11 10:15:02.274 dzVents: Info: dzvents1: 1618, 1559.2
2017-08-11 10:15:02.275 dzVents: Info: dzvents1: 1471, 1544.5
2017-08-11 10:15:02.275 dzVents: Info: dzvents1: 1471, 1520
2017-08-11 10:15:02.275 dzVents: Info: dzvents1: orgSum1446
2017-08-11 10:15:02.275 dzVents: Info: dzvents1: smoothSum1561.6433333333
2017-08-11 10:15:02.276 dzVents: Info: ------ Finished ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:05.998 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:06.330 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:06.564 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:06.802 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:07.416 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:07.651 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:14.338 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:14.862 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:15.348 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:15.582 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:22.344 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:23.312 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:23.546 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:29.364 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:36.331 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:37.336 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:37.569 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:42.314 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:43.319 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:43.555 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:52.348 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:53.352 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:15:53.586 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:05.186 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:05.441 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:05.675 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:13.325 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:14.065 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:30.318 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:30.552 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:30.788 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:31.074 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:31.319 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:35.448 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:36.013 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:36.351 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:39.679 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:43.645 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:44.012 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:16:44.245 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:01.946 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:03.344 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:04.042 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:04.297 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:05.223 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:05.459 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:11.105 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:12.118 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:12.354 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:21.303 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:22.070 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:22.305 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:37.278 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:38.118 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:38.373 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:41.443 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:45.282 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:46.065 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:17:46.302 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:18:04.498 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
2017-08-11 10:18:04.734 dzVents: Debug: Found module in /home/pi/dev-domoticz/scripts/dzVents/generated_scripts folder: ScriptsDVdzvents1-AchtertuinRaamLux
Domotica/graphs "freak" :)
NUC8i3BEH(8gb/250gb),
Lubuntu 19.04,
Aeotec Z-Stick S2(Gen5)
HarmonyElite
HUE(5 bulbs, 2 blooms)
NetAtmo(complete setup)
MiLight iboxV6(2 MiLightBulbs)
IP-Cam

https://www.frijduurzaam.nl
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest