Hallo,
Ich hab mei meinem Raspberry Pi 3 immer das Problem, dass sich die GPIOs plötzlich nicht mehr ansteuern lassen.
Ich hab an einem GPIO Ausgang einen kleinen 5V Lüfter mit einem Transistor verschaltet, so dass ich diesen als Gehäuselüfter bei bedarf ein/ausschalten kann.
Für die ansteuerung verwende ich das SmartHomeNG GPIO Plugin in verbindung mit einer kleinen Logik, die mir Zyklisch die CPU-Temperatur abfrägt, und dann bei bedarf den Lüfter einschaltet.
Die Logik funktioniert nach SmartHomeNG start ca. 1 Tag, aber plötzlich bekommt man die Logmeldung, dass der GPIO nicht mehr aktiviert werden kann.
Auch über die Items im Backend Plugin ist ein aktivieren per Hand nicht möglich.
Nach einem neustart von SmartHomeNG funktioniert die Itemsteuerung und die Logik wieder für ca. 1 Tag.
Da ich mit Python nicht so fit bin, weiß ich jetzt nicht, ob meine Logik so passt, oder ob diese evtl. einen Fehler verursacht, oder ob es an etwas anderem liegt.
Die Logik wird übrigens jede Minute aufgerufen.
Items.yaml:
plugin.yaml
logic.jaml
Python Logik "raspberry.py"
smarthome.log: (plugins.gpio als LogLevel DEBUG konfiguriert)
Mike
Ich hab mei meinem Raspberry Pi 3 immer das Problem, dass sich die GPIOs plötzlich nicht mehr ansteuern lassen.
Ich hab an einem GPIO Ausgang einen kleinen 5V Lüfter mit einem Transistor verschaltet, so dass ich diesen als Gehäuselüfter bei bedarf ein/ausschalten kann.
Für die ansteuerung verwende ich das SmartHomeNG GPIO Plugin in verbindung mit einer kleinen Logik, die mir Zyklisch die CPU-Temperatur abfrägt, und dann bei bedarf den Lüfter einschaltet.
Die Logik funktioniert nach SmartHomeNG start ca. 1 Tag, aber plötzlich bekommt man die Logmeldung, dass der GPIO nicht mehr aktiviert werden kann.
Auch über die Items im Backend Plugin ist ein aktivieren per Hand nicht möglich.
Nach einem neustart von SmartHomeNG funktioniert die Itemsteuerung und die Logik wieder für ca. 1 Tag.
Da ich mit Python nicht so fit bin, weiß ich jetzt nicht, ob meine Logik so passt, oder ob diese evtl. einen Fehler verursacht, oder ob es an etwas anderem liegt.
Die Logik wird übrigens jede Minute aufgerufen.
Items.yaml:
Code:
raspberry: cpu: type: num enforce_updates: 'yes' influx: 'true' database: 'yes' gpu: type: num enforce_updates: 'yes' influx: 'true' database: 'yes' luefter: type: bool gpio_out: 29
Code:
GPIO: class_name: Raspi_GPIO class_path: plugins.gpio mode: BOARD
Code:
luefter: filename: raspberry.py cycle: 60
Code:
#!/usr/bin/env python3 # import os import time def getGPUtemperature(): res = os.popen('vcgencmd measure_temp').readline() return(res.replace("temp=","").replace("'C\n","")) def getCPUtemperature(): tempFile = open( "/sys/class/thermal/thermal_zone0/temp" ) cpu_temp = tempFile.read() tempFile.close() return float(cpu_temp)/1000 def message(ziel,aussen,sendewert): import telepot bot = telepot.Bot('<Telegram-BOT-Key (entfernt)>') bot.sendMessage(ziel, "ALARM - CPU-Temp: " + str(aussen) + "°C - GPU-Temp: " + str(sendewert) + "°C") privat = <chat-id (entfernt)> cpu_float = float(getCPUtemperature()) gpu_float = float(getGPUtemperature()) sh.raspberry.cpu(cpu_float) sh.raspberry.gpu(gpu_float) if (cpu_float > 47): sh.raspberry.luefter(True) else: sh.raspberry.luefter(False) if (cpu_float > 55): message(privat,cpu_float,gpu_float)
Code:
2018-06-13 00:01:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:01:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:01:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:01:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:02:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:02:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:02:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:02:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:03:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:03:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:03:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:03:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:04:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:04:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:04:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:04:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:06:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:06:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:06:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:06:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:07:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:07:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:07:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:07:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:09:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:09:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:09:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:09:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:10:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:10:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:10:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:10:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:12:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:12:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:12:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:12:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:13:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:13:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:13:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:13:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:15:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:15:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:15:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:15:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:16:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:16:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:16:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:16:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:18:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:18:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:18:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:18:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:19:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:19:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:19:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:19:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:20:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:20:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:20:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:20:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:21:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:21:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:21:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:21:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:24:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:24:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:24:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:24:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:26:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:26:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:26:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:26:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:30:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:30:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:30:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:30:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:31:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:31:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:31:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:31:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:33:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:33:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:33:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:33:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:35:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:35:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:35:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:35:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:39:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:39:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:39:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:39:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:40:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:40:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:40:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:40:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:41:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:41:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:41:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:41:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:42:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:42:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:42:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:42:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:43:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:43:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:43:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:43:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:44:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:44:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:44:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:44:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:47:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:47:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:47:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:47:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:48:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:48:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:48:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:48:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:50:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:50:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:50:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:50:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:51:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:51:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:51:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:51:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:52:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:52:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:52:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:52:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:53:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:53:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:53:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:53:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:56:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:56:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:56:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:56:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:57:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:57:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:57:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:57:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 00:58:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:58:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 00:58:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 00:58:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 00:59:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 00:59:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 00:59:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 00:59:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:02:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:02:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:02:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:02:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:04:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:04:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:04:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:04:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:07:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:07:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:07:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:07:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:08:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:08:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:08:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:08:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:10:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:10:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:10:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:10:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:11:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:11:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:11:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:11:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:12:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:12:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:12:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:12:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:13:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:13:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:13:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:13:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:15:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:15:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:15:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:15:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:16:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:16:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:16:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:16:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:18:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:18:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:18:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:18:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:19:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:19:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:19:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:19:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:21:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:21:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:21:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:21:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:22:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:22:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:22:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:22:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:23:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:23:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:23:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:23:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:24:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:24:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:24:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:24:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:26:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:26:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:26:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:26:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:27:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:27:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:27:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:27:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:28:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:28:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:28:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:28:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:29:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:29:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:29:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:29:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:32:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:32:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:32:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:32:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:33:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:33:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:33:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:33:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:35:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:35:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:35:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:35:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:36:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:36:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:36:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:36:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:37:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:37:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:37:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:37:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:38:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:38:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:38:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:38:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:40:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:40:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:40:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:40:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:41:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:41:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:41:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:41:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:43:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:43:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:43:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:43:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:44:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:44:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:44:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:44:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:45:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:45:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:45:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:45:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:46:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:46:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:46:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:46:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:48:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:48:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:48:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:48:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:49:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:49:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:49:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:49:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:51:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:51:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:51:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:51:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:52:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:52:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:52:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:52:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:54:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:54:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:54:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:54:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 01:56:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:56:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 01:56:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 01:56:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 01:59:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 01:59:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 01:59:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 01:59:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:00:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:00:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:00:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:00:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:02:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:02:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:02:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:02:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:03:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:03:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:03:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:03:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:04:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:04:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:04:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:04:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:05:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:05:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:05:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:05:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:08:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:08:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:08:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:08:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:09:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:09:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:09:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:09:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:10:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:10:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:10:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:10:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:11:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:11:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:11:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:11:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:13:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:13:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:13:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:13:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:14:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:14:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:14:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:14:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:16:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:16:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:16:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:16:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:17:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:17:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:17:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:17:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:19:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:19:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:19:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:19:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:20:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:20:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:20:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:20:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:22:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:22:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:22:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:22:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:23:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:23:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:23:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:23:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:25:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:25:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:25:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:25:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:26:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:26:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:26:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:26:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:28:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:28:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:28:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:28:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:29:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:29:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:29:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:29:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:31:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:31:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:31:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:31:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:32:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:32:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:32:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:32:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:33:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:33:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:33:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:33:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:34:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:34:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:34:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:34:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:36:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:36:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:36:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:36:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:37:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:37:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:37:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:37:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:40:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:40:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:40:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:40:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:41:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:41:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:41:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:41:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:42:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:42:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:42:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:42:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:43:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:43:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:43:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:43:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:46:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:46:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:46:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:46:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:47:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:47:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:47:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:47:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:49:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:49:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:49:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:49:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:51:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:51:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:51:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:51:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:53:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:53:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:53:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:53:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:54:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:54:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:54:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:54:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 02:57:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:57:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 02:57:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 02:57:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 02:58:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 02:58:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 02:58:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 02:58:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:00:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:00:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:00:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:00:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:01:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:01:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:01:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:01:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:02:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:02:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:02:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:02:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:03:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:03:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:03:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:03:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:06:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:06:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:06:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:06:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:07:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:07:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:07:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:07:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:09:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:09:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:09:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:09:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:10:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:10:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:10:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:10:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:11:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:11:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:11:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:11:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:12:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:12:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:12:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:12:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:15:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:15:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:15:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:15:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:16:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:16:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:16:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:16:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:17:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:17:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:17:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:17:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:18:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:18:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:18:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:18:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:20:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:20:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:20:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:20:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:21:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:21:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:21:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:21:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:23:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:23:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:23:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:23:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:24:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:24:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:24:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:24:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:26:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:26:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:26:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:26:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:27:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:27:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:27:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:27:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:28:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:28:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:28:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:28:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:29:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:29:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:29:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:29:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:31:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:31:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:31:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:31:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:32:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:32:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:32:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:32:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:34:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:34:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:34:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:34:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:35:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:35:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:35:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:35:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:37:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:37:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:37:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:37:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:38:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:38:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:38:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:38:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:40:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:40:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:40:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:40:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:41:13 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:41:13 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:41:13 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:41:13 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:43:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:43:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:43:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:43:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:44:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:44:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:44:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:44:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:47:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:47:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:47:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:47:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:48:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:48:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:48:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:48:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:50:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:50:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:50:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:50:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:51:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:51:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:51:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:51:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:53:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:53:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:53:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:53:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:54:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:54:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:54:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:54:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:56:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:56:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:56:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:56:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 03:57:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:57:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 03:57:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 03:57:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 03:59:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 03:59:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 03:59:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 03:59:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 04:00:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 04:00:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 04:00:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 04:00:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 04:02:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 04:02:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 04:02:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to True 2018-06-13 04:02:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 1 2018-06-13 04:03:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 04:03:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 04:03:14 INFO plugins.gpio send GPIO: Pin 29 successfully set to False 2018-06-13 04:03:14 INFO plugins.gpio get_sensors GPIO: SENSOR READ: 29 VALUE: 0 2018-06-13 04:05:14 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 04:05:14 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 04:05:14 ERROR plugins.gpio send GPIO: Send True failed for 29! 2018-06-13 18:00:21 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 18:00:21 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to False. 2018-06-13 18:00:21 ERROR plugins.gpio send GPIO: Send False failed for 29! 2018-06-13 18:00:23 DEBUG plugins.gpio update_item GPIO: Trying to update raspberry.luefter. 2018-06-13 18:00:23 DEBUG plugins.gpio update_item GPIO: OUTPUT Setting pin 29 (raspberry.luefter) to True. 2018-06-13 18:00:23 ERROR plugins.gpio send GPIO: Send True failed for 29!
Kommentar