Update Alertsensor - error log  [Solved]

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

Moderator: leecollings

Post Reply
Pandabeer
Posts: 35
Joined: Monday 18 December 2017 11:09
Target OS: Raspberry Pi / ODroid
Domoticz version: 10265
Location: Zwolle
Contact:

Update Alertsensor - error log

Post by Pandabeer »

Hello, I've got dzevents script working - but I keep on getting an anoying error in the log. Can somebody give me a hint

Code: Select all

return {
	on = {
		timer = {
			'every minute',				-- causes the script to be called every minute
		}
	},
	execute = function(domoticz, timer)
	    if (domoticz.devices('a').state == 'Open' and 
    	domoticz.devices('b').state == 'Open' and 
    	domoticz.devices('c').state == 'Open' and
    	domoticz.devices('d').state == 'Open' and
    	domoticz.devices('e').state == 'Open') then
    	domoticz.devices('Iemand thuis').updateAlertSensor(domoticz.ALERTLEVEL_GREEN,'Iedereen Thuis')
	    elseif (domoticz.devices('a').state == 'Open' or 
    	domoticz.devices('b').state == 'Open' or 
    	domoticz.devices('c').state == 'Open' or
    	domoticz.devices('d').state == 'Open' or
    	domoticz.devices('e').state == 'Open') then
    	domoticz.devices('Iemand thuis').updateAlertSensor(domoticz.ALERTLEVEL_YELLOW,'Iemand Thuis')
	    else
	    domoticz.devices('Iemand thuis').updateAlertSensor(domoticz.ALERTLEVEL_RED,'Niemand Thuis')
	end
	end
}
error log:

Code: Select all

2020-05-26 22:17:03.086 Error: User: Admin initiated a switch command (Wrong code!)
Thanks for the support
Little expert running Domoticz on a Raspberry Pi

Code: Select all

Toon Thermostat | Mi-Light | Z-Wave Thermostat valves and CO2 / fire detection units | KiKa | Heat-IT Zwave thermostat |
User avatar
waaren
Posts: 6028
Joined: Tuesday 03 January 2017 14:18
Target OS: Linux
Domoticz version: Beta
Location: Netherlands
Contact:

Re: Update Alertsensor - error log

Post by waaren »

Pandabeer wrote: Tuesday 26 May 2020 22:17 Hello, I've got dzevents script working - but I keep on getting an anoying error in the log. Can somebody give me a hint

Code: Select all

2020-05-26 22:17:03.086 Error: User: Admin initiated a switch command (Wrong code!)
I don't see a direct connection between the error and the script.
Please enable debug logging in script and on dzVents level (in settings / other), if you see this error consistent when you execute the script
Debian buster, bullseye on RPI-4, Intel NUC.
dz Beta, Z-Wave, RFLink, RFXtrx433e, P1, Youless, Hue, Yeelight, Xiaomi, MQTT
==>> dzVents wiki
Pandabeer
Posts: 35
Joined: Monday 18 December 2017 11:09
Target OS: Raspberry Pi / ODroid
Domoticz version: 10265
Location: Zwolle
Contact:

Re: Update Alertsensor - error log

Post by Pandabeer »

hi Waaren,

Thanks for your sugestion and help - I enabled the debug mode; I don't see any strange behaviour, but maybe I missed something:

Code: Select all

2020-06-02 20:24:59.514 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:24:59.570 Status: dzVents: Debug: Processing device-adapter for DomoKitchen CPU: Percentage device adapter
2020-06-02 20:24:59.570 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:24:59.570 Status: dzVents: Debug: Event triggers:
2020-06-02 20:24:59.570 Status: dzVents: Debug: - Device: DomoKitchen CPU
2020-06-02 20:25:00.180 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:00.183 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:00.411 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:00.997 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:00.448 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:00.495 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:00.495 Status: dzVents: Debug: - Timer
2020-06-02 20:25:00.542 Status: dzVents: Info: ------ Start internal script: Iemand Thuis?:, trigger: "every minute"
2020-06-02 20:25:00.557 Status: dzVents: Debug: Processing device-adapter for Ineke: Switch device adapter
2020-06-02 20:25:00.558 Status: dzVents: Debug: Processing device-adapter for Peter: Switch device adapter
2020-06-02 20:25:00.559 Status: dzVents: Debug: Processing device-adapter for Pieter: Switch device adapter
2020-06-02 20:25:00.560 Status: dzVents: Debug: Processing device-adapter for Stefanie: Switch device adapter
2020-06-02 20:25:00.560 Status: dzVents: Debug: Processing device-adapter for Jolijn: Switch device adapter
2020-06-02 20:25:00.561 Status: dzVents: Debug: Processing device-adapter for Iemand thuis: Alert sensor adapter
2020-06-02 20:25:00.561 Status: dzVents: Info: ------ Finished Iemand Thuis?
2020-06-02 20:25:00.561 Status: dzVents: Debug: Commands sent to Domoticz:
2020-06-02 20:25:00.561 Status: dzVents: Debug: - UpdateDevice = {["nValue"]=2, ["_trigger"]=true, ["sValue"]="Iemand Thuis", ["idx"]=350}
2020-06-02 20:25:00.561 Status: dzVents: Debug: =====================================================
2020-06-02 20:25:00.561 Status: EventSystem: Script event triggered: /home/pi/domoticz/dzVents/runtime/dzVents.lua
2020-06-02 20:25:00.594 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:00.634 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:00.634 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:00.634 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:00.634 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:00.698 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:00.738 Status: dzVents: Debug: Processing device-adapter for Iemand thuis: Alert sensor adapter
2020-06-02 20:25:00.738 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:00.738 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:00.738 Status: dzVents: Debug: - Device: Iemand thuis
2020-06-02 20:25:00.999 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:01.061 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:01.125 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:01.140 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:01.805 (DomoZon gegevens) Lux (Lux Keuken)
2020-06-02 20:25:01.024 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:01.064 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:01.064 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:01.064 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:01.064 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:01.870 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:01.931 Status: dzVents: Debug: Processing device-adapter for Lux Keuken: Lux device adapter
2020-06-02 20:25:01.931 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:01.932 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:01.932 Status: dzVents: Debug: - Device: Lux Keuken
2020-06-02 20:25:02.039 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:02.909 (Dummies) Light/Switch (Ineke)
2020-06-02 20:25:02.909 Status: User: Admin initiated a switch command (90/Ineke/On)
2020-06-02 20:25:03.009 (Dummies) Light/Switch (Stefanie)
2020-06-02 20:25:03.108 (Dummies) Light/Switch (Peter)
2020-06-02 20:25:03.008 Status: User: Admin initiated a switch command (93/Stefanie/On)
2020-06-02 20:25:03.107 Status: User: Admin initiated a switch command (91/Peter/On)
2020-06-02 20:25:07.451 (DomoZon gegevens) Temp (Unknown)
2020-06-02 20:25:07.476 (DomoZon gegevens) Temp (Unknown)
2020-06-02 20:25:07.505 (DomoZon gegevens) Temp (Temperatuur Badkamer vloer)
2020-06-02 20:25:07.529 (DomoZon gegevens) Temp (Temperatuur Badkamer vloer)
2020-06-02 20:25:07.558 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:07.625 Status: dzVents: Debug: Processing device-adapter for Temperatuur Badkamer vloer: Temperature device adapter
2020-06-02 20:25:07.625 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:07.625 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:07.625 Status: dzVents: Debug: - Device: Temperatuur Badkamer vloer
2020-06-02 20:25:07.689 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:07.729 Status: dzVents: Debug: Processing device-adapter for Temperatuur Badkamer vloer: Temperature device adapter
2020-06-02 20:25:07.729 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:07.729 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:07.729 Status: dzVents: Debug: - Device: Temperatuur Badkamer vloer
2020-06-02 20:25:08.512 (Verbruik Rozenlaan) P1 Smart Meter (Energie Verbruik)
2020-06-02 20:25:08.568 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:08.637 Status: dzVents: Debug: Processing device-adapter for Energie Verbruik: P1 smart meter energy device adapter
2020-06-02 20:25:08.638 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:08.638 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:08.638 Status: dzVents: Debug: - Device: Energie Verbruik
2020-06-02 20:25:10.457 (DomoZon gegevens) General/kWh (kWh Vloerverwarming)
2020-06-02 20:25:10.484 (DomoZon gegevens) Usage (Opgenomen vermogen vloerverwarming)
2020-06-02 20:25:10.488 (DomoZon gegevens) General/kWh (kWh Vloerverwarming)
2020-06-02 20:25:10.508 (DomoZon gegevens) General/Voltage (Unknown)
2020-06-02 20:25:10.484 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:10.524 Status: dzVents: Debug: Processing device-adapter for kWh Vloerverwarming: kWh device adapter
2020-06-02 20:25:10.525 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:10.525 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:10.525 Status: dzVents: Debug: - Device: kWh Vloerverwarming
2020-06-02 20:25:10.590 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:10.630 Status: dzVents: Debug: Processing device-adapter for kWh Vloerverwarming: kWh device adapter
2020-06-02 20:25:10.631 Status: dzVents: Debug: Processing device-adapter for Opgenomen vermogen vloerverwarming: Electric usage device adapter
2020-06-02 20:25:10.631 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:10.631 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:10.631 Status: dzVents: Debug: - Device: kWh Vloerverwarming
2020-06-02 20:25:10.631 Status: dzVents: Debug: - Device: Opgenomen vermogen vloerverwarming
2020-06-02 20:25:10.696 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:10.736 Status: dzVents: Debug: Processing device-adapter for CPU gebruik: Percentage device adapter
2020-06-02 20:25:10.736 Status: dzVents: Debug: Processing device-adapter for Geheugen gebruik: Percentage device adapter
2020-06-02 20:25:10.736 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:10.736 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:10.736 Status: dzVents: Debug: - Device: CPU gebruik
2020-06-02 20:25:10.736 Status: dzVents: Debug: - Device: Geheugen gebruik
2020-06-02 20:25:11.760 Error: (Marantz Home Theater) Beacon has not responded to 10 pings, terminating connection.
2020-06-02 20:25:13.345 Error: User: Admin initiated a switch command (Wrong code!)
2020-06-02 20:25:14.964 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:14.974 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:15.121 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:15.185 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:15.195 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:15.434 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:15.711 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:15.489 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:15.554 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:15.554 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:15.554 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:15.554 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:15.738 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:15.777 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:15.777 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:15.777 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:15.777 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:16.070 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:16.120 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:16.190 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:16.239 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:16.825 (DomoZon gegevens) Lux (Lux Keuken)
2020-06-02 20:25:16.886 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:16.964 Status: dzVents: Debug: Processing device-adapter for Lux Keuken: Lux device adapter
2020-06-02 20:25:16.964 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:16.964 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:16.964 Status: dzVents: Debug: - Device: Lux Keuken
2020-06-02 20:25:17.059 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:18.509 (Verbruik Rozenlaan) P1 Smart Meter (Energie Verbruik)
2020-06-02 20:25:18.574 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:18.624 Status: dzVents: Debug: Processing device-adapter for Energie Verbruik: P1 smart meter energy device adapter
2020-06-02 20:25:18.625 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:18.625 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:18.625 Status: dzVents: Debug: - Device: Energie Verbruik
2020-06-02 20:25:19.135 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:19.175 Status: dzVents: Debug: Processing device-adapter for PVOutput Script: Electric usage device adapter
2020-06-02 20:25:19.175 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:19.175 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:19.175 Status: dzVents: Debug: - Device: PVOutput Script
2020-06-02 20:25:20.253 (DomoKitchen gegevens) General/Percentage (DomoKitchen Diskgebruik)
2020-06-02 20:25:20.317 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:20.366 Status: dzVents: Debug: Processing device-adapter for DomoKitchen Diskgebruik: Percentage device adapter
2020-06-02 20:25:20.366 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:20.366 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:20.366 Status: dzVents: Debug: - Device: DomoKitchen Diskgebruik
2020-06-02 20:25:21.777 (Marantz Home Theater) Using auto-discovery mode to detect receiver as specified in parameters.
2020-06-02 20:25:22.310 (Zonnepanelen Rozenlaan) General/Percentage (Efficiency)
2020-06-02 20:25:22.316 (Zonnepanelen Rozenlaan) General/Voltage (Voltage)
2020-06-02 20:25:23.312 (Zonnepanelen Rozenlaan) General/kWh (Zonnepanelen (PV Output))
2020-06-02 20:25:23.608 (DomoZon gegevens) General/Percentage (DomoZon CPU usage)
2020-06-02 20:25:23.339 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:23.400 Status: dzVents: Debug: Processing device-adapter for Zonnepanelen (PV Output): kWh device adapter
2020-06-02 20:25:23.401 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:23.401 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:23.401 Status: dzVents: Debug: - Device: Zonnepanelen (PV Output)
2020-06-02 20:25:23.635 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:23.674 Status: dzVents: Debug: Processing device-adapter for DomoZon CPU usage: Percentage device adapter
2020-06-02 20:25:23.675 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:23.675 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:23.675 Status: dzVents: Debug: - Device: DomoZon CPU usage
2020-06-02 20:25:28.506 (Verbruik Rozenlaan) P1 Smart Meter (Energie Verbruik)
2020-06-02 20:25:28.570 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:28.632 Status: dzVents: Debug: Processing device-adapter for Energie Verbruik: P1 smart meter energy device adapter
2020-06-02 20:25:28.633 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:28.633 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:28.633 Status: dzVents: Debug: - Device: Energie Verbruik
2020-06-02 20:25:29.982 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:29.991 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:30.140 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:30.165 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:30.189 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:30.256 (DomoKitchen gegevens) General/Percentage (DomoKitchen CPU)
2020-06-02 20:25:30.426 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:30.707 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:30.308 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:30.364 Status: dzVents: Debug: Processing device-adapter for DomoKitchen CPU: Percentage device adapter
2020-06-02 20:25:30.364 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:30.364 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:30.364 Status: dzVents: Debug: - Device: DomoKitchen CPU
2020-06-02 20:25:30.454 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:30.494 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:30.494 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:30.494 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:30.494 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:30.734 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:30.773 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:30.774 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:30.774 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:30.774 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:31.040 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:31.070 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:31.159 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:31.190 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:31.825 (DomoZon gegevens) Lux (Lux Keuken)
2020-06-02 20:25:31.879 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:31.939 Status: dzVents: Debug: Processing device-adapter for Lux Keuken: Lux device adapter
2020-06-02 20:25:31.939 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:31.939 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:31.939 Status: dzVents: Debug: - Device: Lux Keuken
2020-06-02 20:25:32.059 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:38.519 (Verbruik Rozenlaan) P1 Smart Meter (Energie Verbruik)
2020-06-02 20:25:38.576 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:38.649 Status: dzVents: Debug: Processing device-adapter for Energie Verbruik: P1 smart meter energy device adapter
2020-06-02 20:25:38.649 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:38.649 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:38.649 Status: dzVents: Debug: - Device: Energie Verbruik
2020-06-02 20:25:40.267 (DomoKitchen gegevens) Temp (DomoKitchen Temperatuur)
2020-06-02 20:25:40.464 (DomoZon gegevens) General/kWh (kWh Vloerverwarming)
2020-06-02 20:25:40.491 (DomoZon gegevens) Usage (Opgenomen vermogen vloerverwarming)
2020-06-02 20:25:40.496 (DomoZon gegevens) General/kWh (kWh Vloerverwarming)
2020-06-02 20:25:40.515 (DomoZon gegevens) General/Voltage (Unknown)
2020-06-02 20:25:40.320 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:40.387 Status: dzVents: Debug: Processing device-adapter for DomoKitchen Temperatuur: Temperature device adapter
2020-06-02 20:25:40.387 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:40.387 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:40.387 Status: dzVents: Debug: - Device: DomoKitchen Temperatuur
2020-06-02 20:25:40.491 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:40.532 Status: dzVents: Debug: Processing device-adapter for kWh Vloerverwarming: kWh device adapter
2020-06-02 20:25:40.532 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:40.532 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:40.532 Status: dzVents: Debug: - Device: kWh Vloerverwarming
2020-06-02 20:25:40.596 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:40.636 Status: dzVents: Debug: Processing device-adapter for kWh Vloerverwarming: kWh device adapter
2020-06-02 20:25:40.636 Status: dzVents: Debug: Processing device-adapter for Opgenomen vermogen vloerverwarming: Electric usage device adapter
2020-06-02 20:25:40.636 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:40.636 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:40.636 Status: dzVents: Debug: - Device: kWh Vloerverwarming
2020-06-02 20:25:40.636 Status: dzVents: Debug: - Device: Opgenomen vermogen vloerverwarming
2020-06-02 20:25:40.701 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:40.740 Status: dzVents: Debug: Processing device-adapter for CPU gebruik: Percentage device adapter
2020-06-02 20:25:40.741 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:40.741 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:40.741 Status: dzVents: Debug: - Device: CPU gebruik
2020-06-02 20:25:43.639 (DomoZon gegevens) Temp (DomoZon temperatuur)
2020-06-02 20:25:43.702 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:43.780 Status: dzVents: Debug: Processing device-adapter for DomoZon temperatuur: Temperature device adapter
2020-06-02 20:25:43.781 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:43.781 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:43.781 Status: dzVents: Debug: - Device: DomoZon temperatuur
2020-06-02 20:25:45.002 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:45.021 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:45.160 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:45.224 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:45.234 (DomoZon gegevens) Temp + Humidity (Unknown)
2020-06-02 20:25:45.448 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:45.725 (DomoZon gegevens) Temp + Humidity (Temperatuur en Luchtvochtigheid)
2020-06-02 20:25:45.512 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:45.571 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:45.572 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:45.572 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:45.572 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:45.753 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:45.792 Status: dzVents: Debug: Processing device-adapter for Temperatuur en Luchtvochtigheid: Temperature+humidity device adapter
2020-06-02 20:25:45.792 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:45.792 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:45.792 Status: dzVents: Debug: - Device: Temperatuur en Luchtvochtigheid
2020-06-02 20:25:46.110 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:46.160 (DomoZon gegevens) Lux (Unknown)
2020-06-02 20:25:46.230 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:46.279 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:46.845 (DomoZon gegevens) Lux (Lux Keuken)
2020-06-02 20:25:46.911 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:46.955 Status: dzVents: Debug: Processing device-adapter for Lux Keuken: Lux device adapter
2020-06-02 20:25:46.955 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:46.955 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:46.955 Status: dzVents: Debug: - Device: Lux Keuken
2020-06-02 20:25:47.079 (DomoZon gegevens) UV (Unknown)
2020-06-02 20:25:48.516 (Verbruik Rozenlaan) P1 Smart Meter (Energie Verbruik)
2020-06-02 20:25:48.576 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:48.656 Status: dzVents: Debug: Processing device-adapter for Energie Verbruik: P1 smart meter energy device adapter
2020-06-02 20:25:48.656 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:48.656 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:48.656 Status: dzVents: Debug: - Device: Energie Verbruik
2020-06-02 20:25:49.258 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:49.297 Status: dzVents: Debug: Processing device-adapter for PVOutput Script: Electric usage device adapter
2020-06-02 20:25:49.297 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:49.297 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:49.297 Status: dzVents: Debug: - Device: PVOutput Script
2020-06-02 20:25:53.651 (DomoZon gegevens) General/Percentage (DomoZon CPU usage)
2020-06-02 20:25:53.664 (DomoZon gegevens) General/Percentage (DomoZon Geheugengebruik)
2020-06-02 20:25:53.673 (DomoZon gegevens) General/Custom Sensor (DomoZon Procesgebruik)
2020-06-02 20:25:53.713 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:53.792 Status: dzVents: Debug: Processing device-adapter for DomoZon CPU usage: Percentage device adapter
2020-06-02 20:25:53.792 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:53.792 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:53.792 Status: dzVents: Debug: - Device: DomoZon CPU usage
2020-06-02 20:25:53.858 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:53.898 Status: dzVents: Debug: Processing device-adapter for DomoZon Geheugengebruik: Percentage device adapter
2020-06-02 20:25:53.899 Status: dzVents: Debug: Processing device-adapter for DomoZon Procesgebruik: Custom sensor device adapter
2020-06-02 20:25:53.899 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:53.899 Status: dzVents: Debug: Event triggers:
2020-06-02 20:25:53.899 Status: dzVents: Debug: - Device: DomoZon Geheugengebruik
2020-06-02 20:25:53.899 Status: dzVents: Debug: - Device: DomoZon Procesgebruik
2020-06-02 20:25:58.514 (Verbruik Rozenlaan) P1 Smart Meter (Energie Verbruik)
2020-06-02 20:25:58.570 Status: dzVents: Debug: Dumping domoticz data to /home/pi/domoticz/scripts/dzVents/domoticzData.lua
2020-06-02 20:25:58.644 Status: dzVents: Debug: Processing device-adapter for Energie Verbruik: P1 smart meter energy device adapter
2020-06-02 20:25:58.644 Status: dzVents: Debug: dzVents version: 3.0.8
2020-06-02 20:25:58.644 Status: dzVents: Debug: Event triggers:
Any other suggestions?
Little expert running Domoticz on a Raspberry Pi

Code: Select all

Toon Thermostat | Mi-Light | Z-Wave Thermostat valves and CO2 / fire detection units | KiKa | Heat-IT Zwave thermostat |
Pandabeer
Posts: 35
Joined: Monday 18 December 2017 11:09
Target OS: Raspberry Pi / ODroid
Domoticz version: 10265
Location: Zwolle
Contact:

Re: Update Alertsensor - error log [solved]  [Solved]

Post by Pandabeer »

I found the problem - I switched the dummy switch to protected with password - but the script is running and tries to switch this switch, but gives an error
Little expert running Domoticz on a Raspberry Pi

Code: Select all

Toon Thermostat | Mi-Light | Z-Wave Thermostat valves and CO2 / fire detection units | KiKa | Heat-IT Zwave thermostat |
Post Reply

Who is online

Users browsing this forum: Google [Bot] and 1 guest