Weiter zum Inhalt

Blockly

6.6k Themen 79.8k Beiträge

Hilfe für Skripterstellung mit Blockly

NEWS

  • Blockly Menü zerschossen

    3
    1
    0 Stimmen
    3 Beiträge
    251 Aufrufe
    HeimwehH
    @homoran Danke! Stimmt ich hatte den Adapter drauf - aber seit ich ihn desinstalliert habe ist das jetzt so....
  • Ordner auf aktuellste Date prüfen

    3
    0 Stimmen
    3 Beiträge
    283 Aufrufe
    wendy2702W
    @saibot1981 sagte in Ordner auf aktuellste Date prüfen: Wurde gerne wenn eine Bewegung festgestellt wird immer so 4-5 aktuelle Bilder versenden ohne Dabei einen Festen Namen vergeben zu müssen. Wenn du das Bild eh versendest, ist es doch schon beim Empfänger gespeichert. Warum dann nochmal ? Und wenn du die Motion detection von Motioneye verwendest kannst du doch eine dieser Möglichkeiten nutzen um zu Erfahren ob es etwas neues gibt. Ich nutze z.B. diese alte Script welches mit bei Bewegungserkennung per PIR 5 Bilder per Telegram schickt. // ------------------------------------------------------------------------- // Dieses Script überwaht den Zustand eines Bewegungsmelders und speichert bei // Aktivierung ein Bild einer Überwachnungskamera in einem Vereichnis und sendet // dieses via Telegram.0-Adapter. Nach 10 Sek wird ein weiteres Bild erstellt und // gesendet. // Die Speicherung der Bilder erfolgt als "Stack", d.h. das aktuellste Bild bekommt // immer den Suffix "0" und es werden n Bilder mit den Suffixen 1..n-1 vorgehalten // Uhula 2017.11 // ------------------------------------------------------------------------- // ------------------------------------------------------------------------- // Konfiguration // ------------------------------------------------------------------------- // Objekt-ID des Bewegungsmelders const oidLichtBewmelderTuer = "hm-rpc.0.PEQ0390144.1.MOTION"; // URL zur Kamera umn ein Image (jpg) zu erhalten const cam_url = "http://xx:yy18@192.168.178.211/Streaming/channels/1/picture"; // Pfadangabe für die Speicherung der Bilder, der Pfad muss existieren const dest_path = '/opt/iobroker/iobroker-data/files/_temp/garage_klein/'; // Anzahl der Bilder, die vorgehalten werden sollen const imageCountMax = 8; // Prefix für die Bildnamen const imageNamePre = "garage_klein_"; // ------------------------------------------------------------------------- // Scriptteil // ------------------------------------------------------------------------- var request = require('request'); var fs = require('fs'); // Bild an telegram schicken function sendImage (path) { try { var stats = fs.statSync(path); var msg = formatDate(stats.birthtime,"DD.MM.YYYY hh:mm:ss") + " " + path.substring(path.lastIndexOf('/')+1); sendTo('telegram.0', { text: path, caption: msg, disable_notification: true, user: 'Mxxxo', }); sendTo('telegram.0', { text: path, caption: msg, disable_notification: true, user: 'Sxxe', }); } catch(err) { if (err.code != "ENOENT") log(err); } } // löscht eine Datei synchron (wartet auf das Ergebnis) function fsUnlinkSync(path) { try { var stats = fs.statSync(path); try { fs.unlinkSync(path); } catch(err) { if (err.code != "ENOENT") log(err); } } catch(err) { if (err.code != "ENOENT") log(err); } } // benennt eine Datei synchron um (wartet auf das Ergebnis) function fsRenameSync(oldPath, newPath) { try { var stats = fs.statSync(oldPath); try { fs.renameSync(oldPath, newPath); } catch(err) { if (err.code != "ENOENT") log(err); } } catch(err) { if (err.code != "ENOENT") log(err); } } // Bild speichern und senden function saveImage() { // Bild imageCountMax-1 löschen fsUnlinkSync( dest_path + imageNamePre + (imageCountMax-1) + ".jpg" ); // Bilder 0..imageCountMax-2 umbenennen for (var i=imageCountMax-4; i >= 0; i-- ) { fsRenameSync(dest_path + imageNamePre + i + ".jpg", dest_path + imageNamePre + (i+1) + ".jpg"); } // Bild 0 löschen var fname = imageNamePre + "0.jpg"; fsUnlinkSync( fname ); // Bild holen und speichern request.get({url: cam_url, encoding: 'binary'}, function (err, response, body) { fs.writeFile(dest_path + fname, body, 'binary', function(err) { if (err) { log('Fehler beim Bild speichern: ' + err, 'warn'); } else { // dem Filesystem 2 Sek Zeit zum Speichern lassen setTimeout(function() { sendImage(dest_path + fname); }, 2000); } }); }); } // sofort ein Bild senden und nach 3 Sek erneut //function onEvent() { // saveImage(); // setTimeout(function() { saveImage(); }, 10 * 300); //} // sofort ein Bild senden und nach 3 Sek erneut function onEvent() { saveImage(); setTimeout(function() { saveImage(); }, 3 * 1000); setTimeout(function() { saveImage(); }, 6 * 1000); setTimeout(function() { saveImage(); }, 9 * 1000); } // Ereignisroutine //on({id: oidLichtBewmelderTuer, val: true}, function (obj) { // onEvent( obj ); on({id: 'hm-rpc.0.PEQ0390144.1.MOTION', change: "ne"}, function (obj) { var value = obj.state.val; var oldValue = obj.oldState.val; if (getState("hm-rpc.0.PEQ0390144.1.MOTION").val === true) onEvent( obj ); }); // manuelle Ausführung (Test) onEvent();
  • Logik mit Variable funktioniert nicht

    18
    1
    0 Stimmen
    18 Beiträge
    1k Aufrufe
    paul53P
    @claus1985-0 sagte: mal für den "sonst" Teil kopiert Die Variable oben wird nirgends zurück gesetzt.
  • Gleitender Durchschnitt mit Blockly

    Verschoben blockly
    67
    0 Stimmen
    67 Beiträge
    16k Aufrufe
    B
    @paul53 said in Gleitender Durchschnitt mit Blockly: @brokeling sagte: nicht einfügen wegen dem puzzle-Haken vorne dran. Der Haken verschwindet, wenn man "entferne" selektiert. oh mann, ok danke!
  • Alarm nur jede Stunde

    5
    1
    0 Stimmen
    5 Beiträge
    409 Aufrufe
    M
    @ilovegym OK verstanden, vielen Dank!
  • Blockly Rolladensteuerung mit Shelly Plus 2 PM

    36
    1
    0 Stimmen
    36 Beiträge
    5k Aufrufe
    A
    @da_woody sagte in Blockly Rolladensteuerung mit Shelly Plus 2 PM: @acem der mqtt adapter war deaktiviert laut deiner aussage. sollte damit kein problem machen. ich hab das dingens auch laufen. anderer port halt. mqtt ist bei mir auf 1885 unterwegs. dein log ist ja lustig. mit info bekommst du latürnich alles rein. :) Info war beim IoBroker von Anfang an Installiert! Mit dem Shelly Plus 1 für die Küchenlampe habe ich immer noch Probleme mit MQTT laut dem Log. 2023-03-14 11:40:26.661 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 11:40:26.736 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 30s 2023-03-14 11:40:27.341 - info: cloud.0 (1116) Trying to connect as system.user.admin to cloud 2023-03-14 11:40:27.517 - info: cloud.0 (1116) Connection changed: connect 2023-03-14 11:40:29.109 - info: host.vm Updating repository "Stable (default)" under "http://download.iobroker.net/sources-dist.json" 2023-03-14 11:40:50.988 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 2023-03-14 11:40:57.287 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 35s 2023-03-14 11:41:32.799 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 40s 2023-03-14 11:42:13.326 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 45s 2023-03-14 11:42:58.895 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 50s 2023-03-14 11:43:49.462 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 55s 2023-03-14 11:44:44.990 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:45:45.542 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:46:46.074 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:47:46.620 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:48:47.144 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:49:47.662 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:50:48.226 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:51:48.772 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:52:49.304 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:53:49.861 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:54:50.379 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:55:50.915 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:56:51.484 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:57:52.002 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:58:52.524 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 11:59:53.045 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:00:00.033 - info: host.vm instance system.adapter.ical.0 started with pid 30884 2023-03-14 12:00:01.329 - info: ical.0 (30884) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 12:00:06.459 - info: ical.0 (30884) Terminated (NO_ERROR): Without reason 2023-03-14 12:00:06.978 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 12:00:53.613 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:01:54.150 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:02:54.708 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:03:55.238 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:04:55.766 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:05:56.345 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:06:47.545 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 12:06:51.828 - info: host.vm Updating repository "Stable (default)" under "http://download.iobroker.net/sources-dist.json" 2023-03-14 12:06:57.093 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:07:57.638 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:08:58.189 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:09:45.070 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 2023-03-14 12:09:58.779 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:10:21.479 - error: host.vm Invalid request getRepository. "callback" or "from" is null 2023-03-14 12:10:59.320 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:11:59.856 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:13:00.414 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:14:00.928 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:15:01.449 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:16:01.973 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:17:02.489 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:18:03.039 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:19:03.590 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:20:04.110 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:21:04.628 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:22:05.179 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:23:00.037 - info: host.vm instance system.adapter.openweathermap.0 started with pid 63494 2023-03-14 12:23:01.224 - info: openweathermap.0 (63494) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 12:23:05.759 - info: alexa2.0 (963) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:23:09.984 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 12:23:14.175 - info: openweathermap.0 (63494) Terminated (NO_ERROR): Without reason 2023-03-14 12:23:14.692 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 12:23:27.687 - info: host.vm stopInstance system.adapter.alexa2.0 (force=false, process=true) 2023-03-14 12:23:27.695 - info: alexa2.0 (963) Got terminate signal TERMINATE_YOURSELF 2023-03-14 12:23:27.697 - info: alexa2.0 (963) terminating 2023-03-14 12:23:27.698 - info: alexa2.0 (963) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2023-03-14 12:23:27.777 - info: host.vm stopInstance system.adapter.alexa2.0 send kill signal 2023-03-14 12:23:28.304 - info: host.vm instance system.adapter.alexa2.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2023-03-14 12:23:30.838 - info: host.vm instance system.adapter.alexa2.0 started with pid 64262 2023-03-14 12:23:31.992 - info: alexa2.0 (64262) starting. Version 3.23.2 in /opt/iobroker/node_modules/iobroker.alexa2, node: v16.19.1, js-controller: 4.0.24 2023-03-14 12:23:32.047 - info: alexa2.0 (64262) Starting Alexa2 adapter ... it can take several minutes to initialize all data. Please be patient! A done message is logged. 2023-03-14 12:23:32.050 - info: alexa2.0 (64262) Proxy IP not set, use first network interface (192.168.178.64) instead 2023-03-14 12:23:36.231 - info: alexa2.0 (64262) Initialize all Device states ... 2023-03-14 12:23:37.808 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 2023-03-14 12:23:50.879 - info: alexa2.0 (64262) No smart home devices to query 2023-03-14 12:23:51.895 - info: alexa2.0 (64262) Subscribing to states... 2023-03-14 12:23:53.381 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 10s 2023-03-14 12:23:58.797 - info: alexa2.0 (64262) Initialization Done ... 2023-03-14 12:24:03.890 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 15s 2023-03-14 12:24:19.394 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 20s 2023-03-14 12:24:39.915 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 25s 2023-03-14 12:24:45.525 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 admin 2023-03-14 12:25:05.424 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 30s 2023-03-14 12:25:11.319 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 12:25:35.972 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 35s 2023-03-14 12:26:11.504 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 40s 2023-03-14 12:26:21.311 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 12:26:52.026 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 45s 2023-03-14 12:27:18.445 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 12:27:37.546 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 50s 2023-03-14 12:28:22.667 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 12:28:28.151 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 55s 2023-03-14 12:29:23.720 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:29:32.657 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 12:30:00.037 - info: host.vm instance system.adapter.ical.0 started with pid 73594 2023-03-14 12:30:01.305 - info: ical.0 (73594) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 12:30:06.421 - info: ical.0 (73594) Terminated (NO_ERROR): Without reason 2023-03-14 12:30:06.945 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 12:30:24.332 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:30:50.767 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 12:31:24.847 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:32:00.761 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 12:32:25.366 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:32:26.727 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 12:33:25.879 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:33:36.726 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 12:34:26.405 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:35:26.996 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:36:27.610 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:37:02.599 - error: cloud.0 (1116) Ping timeout 2023-03-14 12:37:02.866 - warn: telegram.0 (936) polling_error: EFATAL, EFATAL: Error: read ETIMEDOUT 2023-03-14 12:37:04.091 - info: sonoff.0 (1069) Client [Schlafzimmerlicht] reconnected. Old secret 1678790356005_7181. New secret 1678793824089_5261 2023-03-14 12:37:04.094 - info: sonoff.0 (1069) Client [Esstisch] reconnected. Old secret 1678790355994_8545. New secret 1678793824090_8107 2023-03-14 12:37:04.619 - info: sonoff.0 (1069) Client [Betuels_Zimmerlicht] reconnected. Old secret 1678790356394_4916. New secret 1678793824618_5979 2023-03-14 12:37:07.484 - info: sonoff.0 (1069) Client [Elas_Zimmerlicht] reconnected. Old secret 1678790356325_7112. New secret 1678793827483_3487 2023-03-14 12:37:28.126 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:37:35.686 - info: sonoff.0 (1069) Client [WClicht] reconnected. Old secret 1678790356507_5065. New secret 1678793855685_3994 2023-03-14 12:37:35.799 - info: sonoff.0 (1069) Client [Badlicht] reconnected. Old secret 1678790356731_9333. New secret 1678793855799_2575 2023-03-14 12:38:00.930 - info: sonoff.0 (1069) Client [Balkonlicht] reconnected. Old secret 1678790355887_6961. New secret 1678793880929_8885 2023-03-14 12:38:02.612 - info: cloud.0 (1116) Trying to connect as system.user.admin to cloud 2023-03-14 12:38:02.790 - info: cloud.0 (1116) Connection changed: connect 2023-03-14 12:38:05.248 - info: sonoff.0 (1069) Client [Wohnzimmerlicht] reconnected. Old secret 1678790356195_7710. New secret 1678793885247_5523 2023-03-14 12:38:05.810 - info: sonoff.0 (1069) Client [Flurlicht] reconnected. Old secret 1678790355807_555. New secret 1678793885809_9908 2023-03-14 12:38:06.215 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus2pm-b8d61a890fc8" connected! 2023-03-14 12:38:06.311 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus1-441793a3a148" connected! 2023-03-14 12:38:06.681 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus2pm-441793ad7988" connected! 2023-03-14 12:38:28.631 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:39:29.168 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:40:29.677 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:41:30.203 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:42:30.730 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:43:31.263 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:44:31.792 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:45:32.325 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:46:32.828 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:47:33.320 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:48:33.849 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:49:34.365 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:50:34.885 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:51:35.379 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:52:35.914 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:53:05.892 - info: sonoff.0 (1069) Client [Balkonlicht] reconnected. Old secret 1678793880929_8885. New secret 1678794785891_9058 2023-03-14 12:53:07.810 - error: cloud.0 (1116) Ping timeout 2023-03-14 12:53:07.811 - info: cloud.0 (1116) Connection changed: Ping timeout 2023-03-14 12:53:07.811 - info: cloud.0 (1116) Connection lost 2023-03-14 12:53:35.637 - info: sonoff.0 (1069) Client [Esstisch] connection closed: closed 2023-03-14 12:53:35.648 - info: sonoff.0 (1069) Client [Schlafzimmerlicht] connection closed: closed 2023-03-14 12:53:36.235 - info: sonoff.0 (1069) Client [Betuels_Zimmerlicht] connection closed: closed 2023-03-14 12:53:36.617 - info: sonoff.0 (1069) Client [Wohnzimmerlicht] connection closed: closed 2023-03-14 12:53:36.851 - info: sonoff.0 (1069) Client [Badlicht] connection closed: closed 2023-03-14 12:53:36.998 - info: sonoff.0 (1069) Client [WClicht] connection closed: closed 2023-03-14 12:53:37.395 - info: sonoff.0 (1069) Client [Flurlicht] connection closed: closed 2023-03-14 12:53:38.992 - info: sonoff.0 (1069) Client [Elas_Zimmerlicht] connection closed: closed 2023-03-14 12:54:05.923 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:54:05.924 - info: alexa2.0 (64262) Alexa-Push-Connection Error: WebSocket was closed before the connection was established 2023-03-14 12:54:05.924 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:54:07.821 - info: cloud.0 (1116) Trying to connect as system.user.admin to cloud 2023-03-14 12:54:15.364 - info: cloud.0 (1116) Connection changed: connect 2023-03-14 12:54:27.771 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 12:54:27.775 - warn: sonoff.0 (1069) Client "Flurlicht" not connected 2023-03-14 12:54:39.032 - info: sonoff.0 (1069) Client [Esstisch] connected with secret 1678794879031_1867 2023-03-14 12:54:39.344 - info: sonoff.0 (1069) Client [Schlafzimmerlicht] connected with secret 1678794879343_6045 2023-03-14 12:54:39.568 - info: sonoff.0 (1069) Client [Betuels_Zimmerlicht] connected with secret 1678794879568_8479 2023-03-14 12:54:40.063 - info: sonoff.0 (1069) Client [Badlicht] connected with secret 1678794880061_4663 2023-03-14 12:54:40.263 - info: sonoff.0 (1069) Client [Wohnzimmerlicht] connected with secret 1678794880259_6792 2023-03-14 12:54:40.661 - info: sonoff.0 (1069) Client [WClicht] connected with secret 1678794880661_7292 2023-03-14 12:54:41.080 - info: sonoff.0 (1069) Client [Flurlicht] connected with secret 1678794881078_8829 2023-03-14 12:54:42.720 - info: sonoff.0 (1069) Client [Elas_Zimmerlicht] connected with secret 1678794882719_355 2023-03-14 12:55:06.515 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:55:37.769 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 12:56:07.041 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:57:07.558 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:58:08.052 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 12:59:08.590 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:00:00.037 - info: host.vm instance system.adapter.ical.0 started with pid 116292 2023-03-14 13:00:01.394 - info: ical.0 (116292) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 13:00:06.513 - info: ical.0 (116292) Terminated (NO_ERROR): Without reason 2023-03-14 13:00:07.039 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 13:00:09.110 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:01:09.654 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:02:10.149 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:03:10.660 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:04:11.166 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:05:11.713 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:06:12.237 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:07:12.734 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:08:13.250 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:09:13.803 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:10:14.326 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:11:14.896 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:12:15.432 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:13:15.972 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:14:16.519 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:15:17.039 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:16:17.579 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:17:18.180 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:18:18.731 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:19:19.268 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:20:19.803 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:21:20.309 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:22:20.854 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:23:00.033 - info: host.vm instance system.adapter.openweathermap.0 started with pid 148932 2023-03-14 13:23:01.308 - info: openweathermap.0 (148932) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 13:23:10.770 - info: openweathermap.0 (148932) Terminated (NO_ERROR): Without reason 2023-03-14 13:23:11.289 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 13:23:21.359 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:24:21.907 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:25:22.445 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:26:22.990 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:27:23.507 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:28:24.023 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:29:24.575 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:30:00.037 - info: host.vm instance system.adapter.ical.0 started with pid 158964 2023-03-14 13:30:01.284 - info: ical.0 (158964) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 13:30:06.405 - info: ical.0 (158964) Terminated (NO_ERROR): Without reason 2023-03-14 13:30:06.927 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 13:30:25.237 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:31:25.767 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:31:30.764 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 13:31:57.826 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 13:32:00.576 - info: host.vm Updating repository "Stable (default)" under "http://download.iobroker.net/sources-dist.json" 2023-03-14 13:32:20.141 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 2023-03-14 13:32:20.143 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 admin 2023-03-14 13:32:26.309 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:32:38.346 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 13:33:26.854 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:33:48.342 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 13:33:52.498 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 13:34:27.389 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:35:02.474 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 13:35:23.494 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 13:35:27.934 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:36:24.308 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 13:36:28.491 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:37:29.039 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:37:34.303 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 13:38:29.596 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:39:30.121 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:40:30.662 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:41:31.151 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:42:31.691 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:43:32.253 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:44:32.775 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:45:33.334 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:46:33.867 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:47:34.420 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:48:34.969 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:49:35.619 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:50:36.171 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:51:36.792 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:52:37.331 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:53:37.899 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:54:38.413 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:55:38.951 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:56:39.442 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:57:40.004 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:58:40.510 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 13:59:41.060 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - retry: Retry Connection in 60s 2023-03-14 14:00:00.041 - info: host.vm instance system.adapter.ical.0 started with pid 201644 2023-03-14 14:00:01.309 - info: ical.0 (201644) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 14:00:06.434 - info: ical.0 (201644) Terminated (NO_ERROR): Without reason 2023-03-14 14:00:06.955 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 14:00:41.611 - info: alexa2.0 (64262) Alexa-Push-Connection disconnected - fallback to poll data: Too many failed retries. Check cookie and data 2023-03-14 14:23:00.033 - info: host.vm instance system.adapter.openweathermap.0 started with pid 234371 2023-03-14 14:23:01.302 - info: openweathermap.0 (234371) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 14:23:16.110 - info: openweathermap.0 (234371) Terminated (NO_ERROR): Without reason 2023-03-14 14:23:16.631 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 14:30:00.041 - info: host.vm instance system.adapter.ical.0 started with pid 244353 2023-03-14 14:30:01.292 - info: ical.0 (244353) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 14:30:06.417 - info: ical.0 (244353) Terminated (NO_ERROR): Without reason 2023-03-14 14:30:06.951 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 15:00:00.041 - info: host.vm instance system.adapter.ical.0 started with pid 286993 2023-03-14 15:00:01.291 - info: ical.0 (286993) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 15:00:06.427 - info: ical.0 (286993) Terminated (NO_ERROR): Without reason 2023-03-14 15:00:06.952 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 15:23:00.034 - info: host.vm instance system.adapter.openweathermap.0 started with pid 319739 2023-03-14 15:23:01.292 - info: openweathermap.0 (319739) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 15:23:14.812 - info: openweathermap.0 (319739) Terminated (NO_ERROR): Without reason 2023-03-14 15:23:15.330 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 15:30:00.029 - info: host.vm instance system.adapter.ical.0 started with pid 329669 2023-03-14 15:30:01.346 - info: ical.0 (329669) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 15:30:06.465 - info: ical.0 (329669) Terminated (NO_ERROR): Without reason 2023-03-14 15:30:06.982 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 16:00:00.033 - info: host.vm instance system.adapter.ical.0 started with pid 372360 2023-03-14 16:00:01.332 - info: ical.0 (372360) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 16:00:06.467 - info: ical.0 (372360) Terminated (NO_ERROR): Without reason 2023-03-14 16:00:06.987 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 16:02:29.852 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 16:03:39.850 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 16:04:52.359 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 16:06:02.350 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 16:06:54.819 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 16:08:04.818 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 16:19:27.941 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 16:20:37.941 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 16:23:00.045 - info: host.vm instance system.adapter.openweathermap.0 started with pid 405229 2023-03-14 16:23:01.261 - info: openweathermap.0 (405229) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 16:23:05.437 - info: openweathermap.0 (405229) Terminated (NO_ERROR): Without reason 2023-03-14 16:23:05.958 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 16:30:00.029 - info: host.vm instance system.adapter.ical.0 started with pid 415169 2023-03-14 16:30:01.266 - info: ical.0 (415169) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 16:30:06.390 - info: ical.0 (415169) Terminated (NO_ERROR): Without reason 2023-03-14 16:30:06.910 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 17:00:00.033 - info: host.vm instance system.adapter.ical.0 started with pid 457858 2023-03-14 17:00:01.305 - info: ical.0 (457858) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 17:00:06.428 - info: ical.0 (457858) Terminated (NO_ERROR): Without reason 2023-03-14 17:00:06.948 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 17:23:00.033 - info: host.vm instance system.adapter.openweathermap.0 started with pid 490654 2023-03-14 17:23:01.257 - info: openweathermap.0 (490654) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 17:23:12.263 - info: openweathermap.0 (490654) Terminated (NO_ERROR): Without reason 2023-03-14 17:23:12.779 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 17:26:45.683 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:27:55.674 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:30:00.029 - info: host.vm instance system.adapter.ical.0 started with pid 500523 2023-03-14 17:30:01.275 - info: ical.0 (500523) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 17:30:06.390 - info: ical.0 (500523) Terminated (NO_ERROR): Without reason 2023-03-14 17:30:06.913 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 17:35:55.860 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:37:05.858 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:37:36.078 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:38:46.080 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:48:04.802 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:49:14.805 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:50:25.842 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:51:35.840 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:51:48.414 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:52:58.413 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:53:40.055 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 17:54:50.052 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 17:56:48.767 - warn: telegram.0 (936) polling_error: EFATAL, EFATAL: Error: socket hang up 2023-03-14 18:00:00.037 - info: host.vm instance system.adapter.ical.0 started with pid 543155 2023-03-14 18:00:01.261 - info: ical.0 (543155) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 18:00:06.390 - info: ical.0 (543155) Terminated (NO_ERROR): Without reason 2023-03-14 18:00:06.909 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 18:02:43.561 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:03:53.560 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:05:19.871 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:06:29.869 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:09:27.077 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:10:37.075 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:18:23.659 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:19:33.616 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:23:00.033 - info: host.vm instance system.adapter.openweathermap.0 started with pid 575914 2023-03-14 18:23:01.249 - info: openweathermap.0 (575914) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 18:23:33.596 - info: openweathermap.0 (575914) Terminated (NO_ERROR): Without reason 2023-03-14 18:23:34.114 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 18:30:00.041 - info: host.vm instance system.adapter.ical.0 started with pid 585829 2023-03-14 18:30:01.261 - info: ical.0 (585829) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 18:30:06.377 - info: ical.0 (585829) Terminated (NO_ERROR): Without reason 2023-03-14 18:30:06.899 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 18:35:55.725 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:37:05.717 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:37:47.211 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:38:57.213 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:39:19.138 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:40:26.869 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:41:36.866 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:42:15.603 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:43:25.602 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 18:54:31.944 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 18:55:41.944 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 19:00:00.033 - info: host.vm instance system.adapter.ical.0 started with pid 628497 2023-03-14 19:00:01.303 - info: ical.0 (628497) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 19:00:06.435 - info: ical.0 (628497) Terminated (NO_ERROR): Without reason 2023-03-14 19:00:06.974 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 19:23:00.037 - info: host.vm instance system.adapter.openweathermap.0 started with pid 661169 2023-03-14 19:23:01.279 - info: openweathermap.0 (661169) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 19:23:09.100 - info: openweathermap.0 (661169) Terminated (NO_ERROR): Without reason 2023-03-14 19:23:09.619 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 19:29:09.031 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 19:30:00.033 - info: host.vm instance system.adapter.ical.0 started with pid 671173 2023-03-14 19:30:01.264 - info: ical.0 (671173) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 19:30:06.390 - info: ical.0 (671173) Terminated (NO_ERROR): Without reason 2023-03-14 19:30:06.946 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 19:30:19.028 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 19:31:45.667 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 19:32:55.621 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 19:34:19.660 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 19:35:29.606 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 20:00:00.037 - info: host.vm instance system.adapter.ical.0 started with pid 713789 2023-03-14 20:00:01.291 - info: ical.0 (713789) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 20:00:06.408 - info: ical.0 (713789) Terminated (NO_ERROR): Without reason 2023-03-14 20:00:06.930 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 20:15:59.239 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 20:17:05.914 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 20:18:15.681 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 20:19:25.676 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 20:19:40.347 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 20:20:50.342 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 20:21:36.545 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 20:22:46.543 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 20:23:00.054 - info: host.vm instance system.adapter.openweathermap.0 started with pid 746367 2023-03-14 20:23:01.290 - info: openweathermap.0 (746367) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 20:23:11.170 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 20:23:23.608 - info: openweathermap.0 (746367) Terminated (NO_ERROR): Without reason 2023-03-14 20:23:24.126 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 20:30:00.041 - info: host.vm instance system.adapter.ical.0 started with pid 756411 2023-03-14 20:30:01.310 - info: ical.0 (756411) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 20:30:06.429 - info: ical.0 (756411) Terminated (NO_ERROR): Without reason 2023-03-14 20:30:06.952 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 21:00:00.029 - info: host.vm instance system.adapter.ical.0 started with pid 799041 2023-03-14 21:00:01.266 - info: ical.0 (799041) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 21:00:06.393 - info: ical.0 (799041) Terminated (NO_ERROR): Without reason 2023-03-14 21:00:06.913 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 21:23:00.033 - info: host.vm instance system.adapter.openweathermap.0 started with pid 831622 2023-03-14 21:23:01.277 - info: openweathermap.0 (831622) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 21:23:18.198 - info: openweathermap.0 (831622) Terminated (NO_ERROR): Without reason 2023-03-14 21:23:18.719 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 21:30:00.029 - info: host.vm instance system.adapter.ical.0 started with pid 841669 2023-03-14 21:30:01.321 - info: ical.0 (841669) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 21:30:06.450 - info: ical.0 (841669) Terminated (NO_ERROR): Without reason 2023-03-14 21:30:06.976 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 21:34:22.815 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 21:35:25.482 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 21:36:35.480 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 22:00:00.029 - info: host.vm instance system.adapter.ical.0 started with pid 884432 2023-03-14 22:00:01.307 - info: ical.0 (884432) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 22:00:06.425 - info: ical.0 (884432) Terminated (NO_ERROR): Without reason 2023-03-14 22:00:06.955 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 22:00:18.816 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 22:01:28.815 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 22:01:50.755 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 22:03:00.745 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 22:07:20.359 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 22:08:30.357 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 22:23:00.029 - info: host.vm instance system.adapter.openweathermap.0 started with pid 917039 2023-03-14 22:23:01.250 - info: openweathermap.0 (917039) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 22:23:27.926 - info: openweathermap.0 (917039) Terminated (NO_ERROR): Without reason 2023-03-14 22:23:28.445 - info: host.vm instance system.adapter.openweathermap.0 terminated with code 0 (NO_ERROR) 2023-03-14 22:28:08.813 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 22:29:18.812 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 22:30:00.037 - info: host.vm instance system.adapter.ical.0 started with pid 927092 2023-03-14 22:30:01.274 - info: ical.0 (927092) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 22:30:06.399 - info: ical.0 (927092) Terminated (NO_ERROR): Without reason 2023-03-14 22:30:06.924 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 23:00:00.043 - info: host.vm instance system.adapter.ical.0 started with pid 970171 2023-03-14 23:00:01.344 - info: ical.0 (970171) starting. Version 1.13.2 in /opt/iobroker/node_modules/iobroker.ical, node: v16.19.1, js-controller: 4.0.24 2023-03-14 23:00:06.460 - info: ical.0 (970171) Terminated (NO_ERROR): Without reason 2023-03-14 23:00:06.982 - info: host.vm instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2023-03-14 23:09:29.390 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 23:10:39.251 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 23:11:49.244 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 23:11:53.672 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 23:13:03.667 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 23:14:06.157 - warn: telegram.0 (936) polling_error: EFATAL, EFATAL: Error: read ETIMEDOUT 2023-03-14 23:14:07.174 - info: sonoff.0 (1069) Client [WClicht] reconnected. Old secret 1678794880661_7292. New secret 1678832047173_2248 2023-03-14 23:14:07.189 - info: sonoff.0 (1069) Client [Flurlicht] reconnected. Old secret 1678794881078_8829. New secret 1678832047187_4368 2023-03-14 23:14:07.491 - info: sonoff.0 (1069) Client [Elas_Zimmerlicht] reconnected. Old secret 1678794882719_355. New secret 1678832047491_3681 2023-03-14 23:14:07.693 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus1-441793a3a148" connected! 2023-03-14 23:14:08.321 - error: shelly.0 (1054) [MQTT] Unable to get mqttprefix of client with id "shellyplus1-441793a3a148" 2023-03-14 23:14:08.378 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus2pm-441793ad7988" connected! 2023-03-14 23:14:08.965 - info: sonoff.0 (1069) Client [Balkonlicht] reconnected. Old secret 1678794785891_9058. New secret 1678832048963_3744 2023-03-14 23:14:16.967 - info: sonoff.0 (1069) Client [Betuels_Zimmerlicht] reconnected. Old secret 1678794879568_8479. New secret 1678832056966_4941 2023-03-14 23:14:16.978 - info: sonoff.0 (1069) Client [Schlafzimmerlicht] reconnected. Old secret 1678794879343_6045. New secret 1678832056977_282 2023-03-14 23:14:16.986 - info: sonoff.0 (1069) Client [Badlicht] reconnected. Old secret 1678794880061_4663. New secret 1678832056986_4360 2023-03-14 23:14:17.047 - info: sonoff.0 (1069) Client [Esstisch] reconnected. Old secret 1678794879031_1867. New secret 1678832057047_3807 2023-03-14 23:14:18.112 - info: sonoff.0 (1069) Client [Wohnzimmerlicht] reconnected. Old secret 1678794880259_6792. New secret 1678832058111_5259 2023-03-14 23:14:22.092 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 23:14:26.865 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:14:44.986 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:15:03.847 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:15:09.795 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus2pm-b8d61a890fc8" connected! 2023-03-14 23:15:22.951 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:15:32.078 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 23:15:41.613 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:16:00.160 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:16:19.857 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:16:38.840 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:16:56.853 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:17:14.853 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:17:32.855 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:17:50.081 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:18:03.761 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 23:18:07.857 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:18:25.852 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:18:44.892 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:19:02.873 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:19:20.872 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:19:38.877 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:19:57.866 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:20:15.860 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:20:33.869 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:20:51.422 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:21:11.001 - warn: shelly.0 (1054) [Mqtt.topicPrefix] 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1): Configured mqtt topic prefix "shellyplus1-441793a3a148" and actual topic prefix "undefined" do not match. Please check configuration 2023-03-14 23:21:19.896 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht an 2023-03-14 23:21:26.445 - info: shelly.0 (1054) [MQTT] Client Disconnect: 192.168.178.77 (shellyplus1 / shellyplus1-441793a3a148 / shellyplus1#441793a3a148#1) 2023-03-14 23:21:31.331 - info: shelly.0 (1054) [MQTT] Device with client id "shellyplus1-441793a3a148" connected! 2023-03-14 23:22:29.894 - info: javascript.0 (921) script.js.SmartHome.Aqara_Bewegungsmelder.Bewegungsmelder: Flurlicht aus 2023-03-14 23:22:52.477 - info: admin.0 (876) ==> Connected system.user.admin from 192.168.178.20 2023-03-14 23:23:00.033 - info: host.vm instance system.adapter.openweathermap.0 started with pid 1003247 2023-03-14 23:23:01.243 - info: openweathermap.0 (1003247) starting. Version 0.3.3 in /opt/iobroker/node_modules/iobroker.openweathermap, node: v16.19.1, js-controller: 4.0.24 2023-03-14 23:23:07.734 - info: admin.0 (876) <== Disconnect system.user.admin from 192.168.178.20 Firmware war auf 0.14 ich habe mal auf die neueste 0.14.1 Aktualisiert. Kann ich den auch löschen! wird mir dann im Log nichts mehr angezeigt? Was könnte das Problem verursachen? mit der Meldung im Log?
  • Gegenseitiges Steuern von Laden und Entladen

    2
    1
    0 Stimmen
    2 Beiträge
    296 Aufrufe
    kmuenkeK
    @kmuenke Habe es soweit geschafft. [image: 1678812116175-2023-03-14-17_41_14-javascript-iobroker-opera.jpg] Die Anlege Regelt jetzt es aus. Dauert zwar immer ein wenig aber mit ein wenig spielen der Werte kann man vielleicht noch einiges rausholen.
  • Gaszähler Blockly: Flot besser darstellen

    20
    4
    0 Stimmen
    20 Beiträge
    953 Aufrufe
    paul53P
    @gonzokalle sagte: Gibt es einen Unterschied zwischen dem grünen und rotem timeout? Nein, das rote timeout betrifft nur die Timervariable.
  • Blockly Zeit umwandeln

    4
    2
    0 Stimmen
    4 Beiträge
    1k Aufrufe
    W
    @haus-automatisierung @Codierknecht Vielen Dank, jetzt habe ich es gerafft.
  • Fernseher und Soundnanlage steuern via Skript

    6
    1
    0 Stimmen
    6 Beiträge
    371 Aufrufe
    P
    @Codierknecht mit binden war das am einfachsten. Klappt ja echt super.
  • Stromzähler auslesen und berechnen

    22
    1
    0 Stimmen
    22 Beiträge
    2k Aufrufe
    C
    @paul53 Habs mir jetzt dreimal durchgelesen ;-) Puhh, das ist aber echt rafiniert! Ich habs verstanden denke ich und bau es so ein. Hab jetzt aber für Tag/Woche/Monat/Jahr jeweils ein eigenes Script gemacht wegen der Übersichtlichkeit, das werd ich jetzt erstmal auch so belassen solange es funktioniert...
  • Erstellung einer json

    7
    1
    0 Stimmen
    7 Beiträge
    175 Aufrufe
    David G.D
    @paul53 Jab zu kompliziert gedacht. War in Gedanken schon beim ts. Kann sein, dass ich mit dem auch nochwas rechnen muss.....
  • Blockly DP wird nicht false

    9
    0 Stimmen
    9 Beiträge
    791 Aufrufe
    paul53P
    @mrfloppy sagte: es würde reichen wenn ich das am Anfang als 4.te ObjektID hinzufüge? Besser so wie hier gezeigt.
  • Berechnung wird nicht durch Trigger angestoßen

    5
    2
    0 Stimmen
    5 Beiträge
    343 Aufrufe
    G
    @codierknecht Das Ganze funktioniert ja jetzt wie gewollt und wird durch die Veränderung des entsprechenden Datenpunktes 1x am Abend nach Sonnenuntergang angestoßen.
  • [gelöst] assigning an object to state which expects a number

    10
    1
    0 Stimmen
    10 Beiträge
    604 Aufrufe
    HomoranH
    @claus1985-0 sagte in assigning an object to state which expects a number: danke für den Tipp war schon was "älter" @paul53 sagte in assigning an object to state which expects a number: @claus1985-0 sagt: beziehe mich in diesem Fall auf das Attribut ENERGY.Total Das machst Du beim Konvertieren nach Zahl eben nicht. [image: 1678537949481-blockly_temp.jpg] Wie sieht das JSON aus? Ist überhaupt eine Konvertierung nach Zahl erforderlich?
  • Blockly für Gefrierschrank

    15
    1
    0 Stimmen
    15 Beiträge
    1k Aufrufe
    A
    @tulpenheini Nur als Info: Ich habe bei mir einen Homematic-Außenfühler (weil ich noch einen "übrig" hatte) für den Tiefkühler benutzt. Funkt seit über 2a zuverlässig, bisher sogar ohne Batteriewechsel, was mich aber sehr wundert. Ist allerdings auch ein "no-Frost"-Gerät mit automatischer Abtauung (also wird da wohl nie längere Zeit höhere Feuchtigkeit drankommen). Wo man bei diesem Sensor aufpassen muß (Vielleicht ist ein ähnlicher Effekt bei Dir für die "springende" Anzeige verantwortlich?), ist der Temperaturbereich (-20 bis +80°C). Wenn der Tiefkühler z. B. Eiswürfel macht oder wenn man auf "Schnellfrosten" stellt, geht die Temperatur auch unter -20°C. Dadurch "läuft der Sensorwert dann quasi über". Bei -21 zeigt er dann +79°C an. Daher nutze ich ein CCU-Korrekturskript: !Tiefkühlschrank Sensorkorrektur für kälter als -20°C. var Sensorwert = dom.GetObject("BidCos-RF.XYZ1234567:1.TEMPERATURE").Value(); if (Sensorwert > 60) {Sensorwert = (Sensorwert - 80) - 20.1;} !Korrigierten Sensorwert in Systemvariable speichern: dom.GetObject("S_Tiefkühler_Temperatur_korrigiert").State(Sensorwert); Als "Triggerwert" 60, weil +60°C im Tiefkühler nicht zu erwarten sind und er -40°C definitiv nicht schafft. 70 würde auch funktionieren.
  • Objekt ID zeigt auf ein Verzeichnis

    3
    0 Stimmen
    3 Beiträge
    144 Aufrufe
    S
    @paul53 Schönen Dank. Hat super funktioniert.
  • update Werte werden überschrieben

    3
    1
    0 Stimmen
    3 Beiträge
    213 Aufrufe
    R
    @homoran said in update Werte werden überschrieben: @roq sagte in update Werte werden überschrieben: Was mach ich da falsch? warum auf englisch? ich nehme an dass update nur aktualisiert du musst aber steuern Hab immer gern Text auf Englisch ^^ Ahhh, ja das wars, control macht mehr Sinn ja. Danke dir vielmals!
  • wget lädt nur eine 0kb Datei aus Stream

    blockly security multimedia
    19
    0 Stimmen
    19 Beiträge
    979 Aufrufe
    vowillV
    @david-g Nachdem mich das Thema mit der leeren Datei nach einem wget nun ebenfalls 2 Tage beschäftigt hat, habe ich in meinem Fall die folgende Ursache festgestellt: Die http-Quelle, von der ich das Bild hole (bei mir Motioneye), hat die gleiche IP-Adresse wie der ioBroker, der das Bild abholt. Beide laufen in einem Docker-Container des Host-Rechners (bei mir ein QNAP-NAS) - und in dieser Konfiguration kann es passieren, dass keine Kommunikation zwischen den beiden Docker-Instanzen möglich ist. Dies ist z. B. in den 'Docker Docs' (siehe hier) beschrieben. Ich habe dementsprechend Motioneye neu installiert mit der Netzwerkeinstellung "Bridge". Damit erhält Motioneye eine eigene IP-Adresse, und der Zugriff vom ioBroker klappt dann reibungslos
  • offene Fenster finden

    23
    0 Stimmen
    23 Beiträge
    1k Aufrufe
    P
    @paul53 DANKE!!!!!!!!!!! jetzt klappt es. Sehr lobend hier, wie Ihr euch da auskennt!

638

Online

32.8k

Benutzer

82.8k

Themen

1.3m

Beiträge