ioBroker / ioBroker.hm-rpc

Connects HomeMatic Interface-Processes to ioBroker
www.iobroker.org
MIT License
60 stars 25 forks source link

HM-Dis-EP-WM55 Batteriestatus #175

Closed Knallochse closed 5 years ago

Knallochse commented 5 years ago

Ich habe eine Homematic Funk-Statusanzeige mit E-Paper-Display (HM-Dis-EP-WM55) bei dem der Batteriestatus nicht richtig angezeigt wird.

Anbei ein Screenshot des Objects:

C4D3EB21-A0FF-489C-AC3B-B65B94731C00

CCU-Firmware und IOBROKER Adapter sind aktuell

foxriver76 commented 5 years ago

Was verstehst du unter "wird nicht richtig angezeigt"? Zeig mal bitte Kanal 6, bzw. ist der Status evtl in einem anderen Kanal, da der 0er Kanal nicht nach dem Maintenance Kanal aussieht..

Knallochse commented 5 years ago

Kanal 1-8 sehen alle gleich aus. Habe alle Kanäle angeschaut. Wegen Screenshotgröße nur mit Kanal1. Screenshot3 Hier mal noch ein Screenshot mit einem anderen Batterieaktor (6fach Wandtaster / HM-PB-6-WM55) Screenshot4 Mich irritiert der Datenpunkt LOWBAT_ALARM. Da steht "ACKNOWLEDGED(2). Sollte da nicht auch NO ALARM(0) stehen? Und den Datenpunkt LOWBAT gibt es gar nicht (in keinem Kanal)

foxriver76 commented 5 years ago

ACKNOWLEDGED heißt nur dass da mal ein Alarm war, alles was nicht 1: ALARM ist, ist keine aktive LOWBAT Meldung. Die Logik kommt aus der CCU. Ich hatte den fehlenden LOWBAT state als den Fehler interpretiert. Allerdings kann dieser sich auch in einem anderen Channel als 0 befinden, je nach Gerät. Leider habe ich nicht das vollständige Paramset vorliegen um das nachzuschauen.

Knallochse commented 5 years ago

Noch als Nachtrag. Ich benutze das Script von von cash. https://github.com/Baenker/Servicemeldungen-Homematic Da wurde mir eine Telegram Meldung bei schwacher Batterie dieses Aktors gesendet. Ich wollte eine Meldung im VIS einbauen, und da ist mir das fehlen des Datenpunktes LOWBAT aufgefallen.

foxriver76 commented 5 years ago

Führe mal bitte das datapoints Skript auf der CCU via Skript testen aus und schau mal in welchem Channel Lowbat für dein Gerät sein sollte:

Skript:

!# datapoints.fn 1.8
!#
!# Dieses Homematic-Script gibt eine Liste aller Datenpunkte (ausser WORKING/DIRECTION) als JSON String aus
!#
!# 3'2013-9'2014 hobbyquaker https://github.com/hobbyquaker
!#

string sDevId;
string sChnId;
string sDPId;
string sValue;
string sChnId;
string sDPId;
boolean dpFirst = true;
Write('{');
foreach (sDevId, root.Devices().EnumUsedIDs()) {
    object oDevice   = dom.GetObject(sDevId);
    boolean bDevReady = oDevice.ReadyConfig();
    if (bDevReady) {
        foreach (sChnId, oDevice.Channels()) {
            object oChannel = dom.GetObject(sChnId);
            foreach(sDPId, oChannel.DPs().EnumUsedIDs()) {
                object oDP = dom.GetObject(sDPId);
                if (oDP) {
                    if (oDP.TypeName() != "VARDP") {
                        if (dpFirst) {
                          dpFirst = false;
                        } else {
                          WriteLine(',');
                        }
                        string sValueType = oDP.ValueType();
                        Write('"');
                        WriteURL(oDP.Name());
                        Write('":');
                        if (sValueType == 20) {
                            Write('"');
                            WriteURL(oDP.Value());
                            Write('"');
                        } else {
                            sValue = oDP.Value();
                            if (sValueType == 2) {
                                if (sValue) {
                                    Write("true");
                                } else {
                                    Write("false");
                                }
                            } else {
                               if (sValue == "") {
                                    Write("0");
                               } else {
                                    Write(sValue);
                               }
                            }
                        }
                    }
                }
            }
        }
    }
}
Write('}');
Knallochse commented 5 years ago

das Ergebnis des Script für den Aktor:

Also Kanal 0, wenn ich das richtig deute

foxriver76 commented 5 years ago

Jop, dann muss man mal reinschauen, glaube bluefox hat für das e-Paper damals extra Code gebaut, evtl. Verhindert da was das anlegen der States. Allerdings ist mir jetzt keine derartige Meldung bekannt.

foxriver76 commented 5 years ago

Hast du unter hm-rpc.meta.VALUES.HM-Dis-EP-WM55 einen Kanal MAINTENANCE?

foxriver76 commented 5 years ago

Und diese EPAPER_LINE States gibt es nur in Kanal 0 oder? BF fragt scheinbar danach ab und added dann diese 'Custom States' in den Maintenance Channel, vermutlich geht es dabei verloren. https://github.com/ioBroker/ioBroker.hm-rpc/blob/0a077d06b3400803b31136c7d69ade00cf2b095a/hm-rpc.js#L1236

Knallochse commented 5 years ago

Sorry, dass ich erst jetzt antworte. Aber ich musste mich erst mal belesen, wie ich an die von dir erfragten Daten komme. Ja, die EPAPER_LINE States gibt es nur im Kanal 0.

Hier ein Screenshot, des MAINTENANCE Kanals. Screenshot5

Ich hoffe, du kannst damit was anfangen. Und auch mal Danke, dass du dich mit dem Problem beschäftigst.

foxriver76 commented 5 years ago

Danke für die Info. Ich glaube da hast du dich zu ausführlich mit beschäftigt 😀 Der hm-rpc Adapter legt Metadaten ab, deshalb sollte es bei den Objekten einen Kanal hm-rpc.meta geben, der wiederum müsste das hm-dis-ep beinhalten und da würde mich interessieren ob es den maintenance Kanal gibt. Und falls es ihn gibt steht da eine Nummer darunter, anscheinend wird mit einer zw 9-13 gerechnet.

Knallochse commented 5 years ago

Ich bemühe mich halt deine Fragen zu verstehen 😀 Leider nein. Der MAINTENANCE existiert unter hm-rpc.meta.VALUES.HM-Dis-EP-WM55 nicht Screenshot6

foxriver76 commented 5 years ago

Bitte mal von GitHub installieren, den Adapter stoppen --> E-Paper Device aus den Objekten löschen --> Adapter auf Debug stellen und wieder starten. Wenn das Gerät dann angelegt wird, sollte z. B. [EPAPER] Add E-Paper to Meta for version 9 with {} geloggt werden.

Falls du Fragen hast bezüglich Installation von GitHub/Adapter auf Loglevel Debug stellen, einfach fragen. ;-)

Knallochse commented 5 years ago

Hier ein Screenshot von MAINTENANCE (den gibt es nicht) unter hm-rpc.meta.VALUES.HM-Dis-EP-WM55 Screenshot7

Und ein Screenshot unter hm-rpc.1.NEQ0711636 Da fehlen jetzt mehrer Einträge Screenshot8

Und das LOG (debag) ab dem Zeitpunkt der Umstellung Die gesuchten Einträge habe ich dir Fett markiert.

`

2019-05-26 14:29:51.118 - info: hm-rpc.0 Connected 2019-05-26 14:29:51.118 - debug: hm-rpc.0 clear connecting interval 2019-05-26 14:29:51.119 - debug: hm-rpc.0 start ping interval 2019-05-26 14:29:53.202 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-26 14:29:53.209 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-26 14:29:53.220 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-26 14:29:53.228 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-26 14:29:53.238 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-26 14:29:53.252 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-26 14:29:53.268 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-26 14:29:53.278 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-26 14:29:53.287 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-26 14:29:53.630 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-26 14:30:00.022 - info: javascript.0 script.js.common.Wetter.Sonnenstand_VIS: ----------------------------------------------- 2019-05-26 14:30:00.022 - info: javascript.0 script.js.common.Wetter.Sonnenstand_VIS: latitude : 50.678489 2019-05-26 14:30:00.022 - info: javascript.0 script.js.common.Wetter.Sonnenstand_VIS: longitude: 12.595149 2019-05-26 14:30:00.023 - info: javascript.0 script.js.common.Wetter.Sonnenstand_VIS: sunpos: [object Object] 2019-05-26 14:30:00.062 - info: host.buanet-iobroker1 instance system.adapter.daswetter.0 started with pid 18730 2019-05-26 14:30:00.170 - debug: hm-rpc.0 bin multicall : CUxD,CUX2801001:2,CMD_SETS,cat /proc/uptime | awk '// { printf $1/3600 }' 2019-05-26 14:30:00.171 - debug: hm-rpc.0 binrpc <- event ["CUxD","CUX2801001:2","CMD_SETS","cat /proc/uptime | awk '// { printf $1/3600 }'"] 2019-05-26 14:30:00.171 - debug: hm-rpc.0 hm-rpc.0.CUX2801001.2.CMD_SETS ==> UNIT: "" (min: , max: ) From "cat /proc/uptime | awk '// { printf $1/3600 }'" => "cat /proc/uptime | awk '// { printf $1/3600 }'" 2019-05-26 14:30:00.128 - info: host.buanet-iobroker1 instance system.adapter.ical.0 started with pid 18736 2019-05-26 14:30:00.259 - debug: hm-rpc.0 bin multicall : CUxD,CUX2801001:1,CMD_SETS,/usr/bin/vcgencmd measure_temp | awk '// { printf substr($1, length($1) -5, 4)}' 2019-05-26 14:30:00.260 - debug: hm-rpc.0 binrpc <- event ["CUxD","CUX2801001:1","CMD_SETS","/usr/bin/vcgencmd measure_temp | awk '// { printf substr($1, length($1) -5, 4)}'"] 2019-05-26 14:30:00.260 - debug: hm-rpc.0 hm-rpc.0.CUX2801001.1.CMD_SETS ==> UNIT: "" (min: , max: ) From "/usr/bin/vcgencmd measure_temp | awk '// { printf substr($1, length($1) -5, 4)}'" => "/usr/bin/vcgencmd measure_temp | awk '// { printf substr($1, length($1) -5, 4)}'" 2019-05-26 14:30:00.311 - debug: hm-rpc.0 binrpc -> setValue 3 PRESS_LONG: false 2019-05-26 14:30:00.312 - debug: hm-rpc.0 setValue ["CUX4000017:3","PRESS_LONG",false] ACTION 2019-05-26 14:30:00.322 - debug: hm-rpc.0 bin multicall : CUxD,CUX4000017:3,PRESS_LONG,true 2019-05-26 14:30:00.322 - debug: hm-rpc.0 binrpc <- event ["CUxD","CUX4000017:3","PRESS_LONG",true] 2019-05-26 14:30:00.323 - debug: hm-rpc.0 hm-rpc.0.CUX4000017.3.PRESS_LONG ==> UNIT: "" (min: false, max: true) From "true" => "true" 2019-05-26 14:30:00.301 - info: host.buanet-iobroker1 instance system.adapter.ical.2 started with pid 18742 2019-05-26 14:30:00.333 - info: javascript.0 script.js.common.Stauberechnung_Arbeit_Sylvi: Anzahl Wegepunkte: 9 2019-05-26 14:30:00.348 - debug: hm-rpc.0 bin multicall : CUxD,CUX2801001:3,CMD_SETS,cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq | awk '// {printf $1/1000}' 2019-05-26 14:30:00.348 - debug: hm-rpc.0 binrpc <- event ["CUxD","CUX2801001:3","CMD_SETS","cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq | awk '// {printf $1/1000}'"] 2019-05-26 14:30:00.348 - debug: hm-rpc.0 hm-rpc.0.CUX2801001.3.CMD_SETS ==> UNIT: "" (min: , max: ) From "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq | awk '// {printf $1/1000}'" => "cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq | awk '// {printf $1/1000}'" 2019-05-26 14:30:01.405 - debug: daswetter.0 objectDB connected 2019-05-26 14:30:01.527 - debug: daswetter.0 statesDB connected 2019-05-26 14:30:01.697 - info: daswetter.0 starting. Version 2.8.0 in /opt/iobroker/node_modules/iobroker.daswetter, node: v8.14.0 2019-05-26 14:30:01.801 - debug: daswetter.0 Schedule restart: * 2019-05-26 14:30:01.821 - debug: daswetter.0 set timeout to 60 sec 2019-05-26 14:30:01.822 - debug: daswetter.0 checking data structures 2019-05-26 14:30:02.016 - info: ical.2 starting. Version 1.7.1 in /opt/iobroker/node_modules/iobroker.ical, node: v8.14.0 2019-05-26 14:30:02.512 - info: ical.0 starting. Version 1.7.1 in /opt/iobroker/node_modules/iobroker.ical, node: v8.14.0 2019-05-26 14:30:02.876 - debug: daswetter.0 got 1842 states 2019-05-26 14:30:02.951 - debug: daswetter.0 got 94 channels 2019-05-26 14:30:02.952 - debug: daswetter.0 deleting unused dataset, reset to true 2019-05-26 14:30:02.953 - debug: daswetter.0 using new data structure 2019-05-26 14:30:02.955 - debug: daswetter.0 calling forecast hourly: http://api.daswetter.com/index.php?api_lang=de&localidad=103787&affiliate_id=ct7fhcn821uh&v=2.0&h=1 2019-05-26 14:30:03.279 - info: ical.0 processing URL: Abfall http://p34-calendars.icloud.com/published/2/MTM2MjYzOTA5ODEzNjI2M6AXnX_16cPu8jSsoBQZU1FZOpbzoaDCOvNRDYqjOR5G0unuSlOoAepSXaPQnos27giVh4QDypOynJkdbtjd1sU 2019-05-26 14:30:03.317 - debug: daswetter.0 hourly forecast done, objects in list 1640 2019-05-26 14:30:03.319 - debug: daswetter.0 objects in list: 1640 2019-05-26 14:30:03.582 - info: ical.2 processing URL: Geburtstage http://p34-calendars.icloud.com/published/2/TknREvY-I9dwzs3nP0_vFdlhmA0BBB7uIVndwvfjOE0R7oCmZECJIlyIva0UxZyoh6ETCNaPtxC3zUnBXod6eFO29PxjkZ6SXkuxEkDq0ws 2019-05-26 14:30:05.087 - debug: hm-rpc.0 binrpc -> setValue 2 PRESS_SHORT: false 2019-05-26 14:30:05.087 - debug: hm-rpc.0 setValue ["CUX4000017:2","PRESS_SHORT",false] ACTION 2019-05-26 14:30:05.092 - debug: hm-rpc.0 bin multicall : CUxD,CUX4000017:2,PRESS_SHORT,true 2019-05-26 14:30:05.092 - debug: hm-rpc.0 binrpc <- event ["CUxD","CUX4000017:2","PRESS_SHORT",true] 2019-05-26 14:30:05.092 - debug: hm-rpc.0 hm-rpc.0.CUX4000017.2.PRESS_SHORT ==> UNIT: "" (min: false, max: true) From "true" => "true" 2019-05-26 14:30:08.391 - info: host.buanet-iobroker1 instance system.adapter.ical.0 terminated with code 0 (OK) 2019-05-26 14:30:08.828 - info: host.buanet-iobroker1 instance system.adapter.ical.2 terminated with code 0 (OK) 2019-05-26 14:30:11.910 - debug: daswetter.0 nothing to do 2019-05-26 14:30:11.937 - info: host.buanet-iobroker1 instance system.adapter.daswetter.0 terminated with code 0 (OK) 2019-05-26 14:30:22.051 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-05-26 14:30:22.088 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.2 started with pid 18760 2019-05-26 14:30:22.678 - debug: hm-rpc.2 objectDB connected 2019-05-26 14:30:22.711 - debug: hm-rpc.2 statesDB connected 2019-05-26 14:30:22.841 - info: hm-rpc.2 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-26 14:30:23.810 - info: hm-rpc.2 xmlrpc server is trying to listen on 192.168.178.86:12010 2019-05-26 14:30:23.811 - info: hm-rpc.2 xmlrpc client is trying to connect to 192.168.178.28:2010/ with ["http://192.168.178.86:12010","hm-rpc.2"] 2019-05-26 14:30:23.812 - debug: hm-rpc.2 Connect... 2019-05-26 14:30:23.813 - debug: hm-rpc.2 xmlrpc -> 192.168.178.28:2010/ init ["http://192.168.178.86:12010","hm-rpc.2"] 2019-05-26 14:30:23.819 - debug: hm-rpc.2 start connecting interval 2019-05-26 14:30:23.854 - info: hm-rpc.2 Connected 2019-05-26 14:30:23.855 - debug: hm-rpc.2 clear connecting interval 2019-05-26 14:30:23.855 - debug: hm-rpc.2 start ping interval 2019-05-26 14:30:23.866 - info: hm-rpc.2 xmlrpc <- listDevices ["hm-rpc.2"] 2019-05-26 14:30:23.888 - info: hm-rpc.2 xmlrpc -> 0 devices 2019-05-26 14:30:24.945 - info: hm-rpc.2 xmlrpc <- newDevices 303 2019-05-26 14:30:24.978 - info: hm-rpc.2 new HmIP devices/channels after filter: 0 2019-05-26 14:30:27.241 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-26 14:30:27.425 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-26 14:30:27.437 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-26 14:30:27.446 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-26 14:30:27.457 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-26 14:30:27.471 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-26 14:30:27.492 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-26 14:30:27.504 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-26 14:30:27.516 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-26 14:30:27.527 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-26 14:30:45.787 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,CONFIG_PENDING,false 2019-05-26 14:30:45.789 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","CONFIG_PENDING",false] 2019-05-26 14:30:45.789 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-26 14:30:45.791 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,UNREACH,false 2019-05-26 14:30:45.791 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","UNREACH",false] 2019-05-26 14:30:45.791 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-26 14:30:45.792 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,RSSI_DEVICE,-44 2019-05-26 14:30:45.792 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","RSSI_DEVICE",-44] 2019-05-26 14:30:45.792 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-44" => "-44" 2019-05-26 14:30:50.697 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-05-26 14:30:50.724 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.1 started with pid 18793 2019-05-26 14:30:51.375 - debug: hm-rpc.1 objectDB connected 2019-05-26 14:30:51.414 - debug: hm-rpc.1 statesDB connected 2019-05-26 14:30:51.582 - info: hm-rpc.1 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-26 14:30:51.957 - info: hm-rpc.1 xmlrpc server is trying to listen on 192.168.178.86:12001 2019-05-26 14:30:51.957 - info: hm-rpc.1 xmlrpc client is trying to connect to 192.168.178.28:2001/ with ["http://192.168.178.86:12001","hm-rpc.1"] 2019-05-26 14:30:51.958 - debug: hm-rpc.1 Connect... 2019-05-26 14:30:51.959 - debug: hm-rpc.1 xmlrpc -> 192.168.178.28:2001/ init ["http://192.168.178.86:12001","hm-rpc.1"] 2019-05-26 14:30:51.967 - debug: hm-rpc.1 start connecting interval 2019-05-26 14:30:51.997 - info: hm-rpc.1 xmlrpc <- system.listMethods ["hm-rpc.1"] 2019-05-26 14:30:52.006 - info: hm-rpc.1 xmlrpc <- listDevices ["hm-rpc.1"] 2019-05-26 14:30:52.028 - info: hm-rpc.1 xmlrpc -> 235 devices 2019-05-26 14:30:52.140 - info: hm-rpc.1 xmlrpc <- newDevices 10 2019-05-26 14:30:52.151 - info: hm-rpc.1 Connected 2019-05-26 14:30:52.151 - debug: hm-rpc.1 clear connecting interval 2019-05-26 14:30:52.152 - debug: hm-rpc.1 start ping interval 2019-05-26 14:30:52.155 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8 created 2019-05-26 14:30:52.167 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7 created 2019-05-26 14:30:52.182 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6 created 2019-05-26 14:30:52.193 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5 created 2019-05-26 14:30:52.210 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4 created 2019-05-26 14:30:52.221 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3 created 2019-05-26 14:30:52.229 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2 created 2019-05-26 14:30:52.238 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1 created 2019-05-26 14:30:52.240 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 9 with {} 2019-05-26 14:30:52.240 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 10 with {} 2019-05-26 14:30:52.241 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 11 with {} 2019-05-26 14:30:52.241 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 12 with {} 2019-05-26 14:30:52.249 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0 created 2019-05-26 14:30:52.255 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636 created 2019-05-26 14:30:52.257 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11 2019-05-26 14:30:52.260 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.274 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE2 extended 2019-05-26 14:30:52.321 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON2 extended 2019-05-26 14:30:52.323 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE3 extended 2019-05-26 14:30:52.325 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON3 extended 2019-05-26 14:30:52.327 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE4 extended 2019-05-26 14:30:52.329 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON4 extended 2019-05-26 14:30:52.329 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_SIGNAL extended 2019-05-26 14:30:52.330 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_TONE extended 2019-05-26 14:30:52.331 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.331 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.358 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.INSTALL_TEST extended 2019-05-26 14:30:52.359 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_CONT extended 2019-05-26 14:30:52.360 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG extended 2019-05-26 14:30:52.362 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.362 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_SHORT extended 2019-05-26 14:30:52.363 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.363 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.370 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.INSTALL_TEST extended 2019-05-26 14:30:52.383 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_CONT extended 2019-05-26 14:30:52.384 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG extended 2019-05-26 14:30:52.384 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.385 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_SHORT extended 2019-05-26 14:30:52.385 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.385 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.403 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.INSTALL_TEST extended 2019-05-26 14:30:52.404 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_CONT extended 2019-05-26 14:30:52.405 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG extended 2019-05-26 14:30:52.405 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.406 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_SHORT extended 2019-05-26 14:30:52.406 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.406 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.414 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.INSTALL_TEST extended 2019-05-26 14:30:52.424 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_CONT extended 2019-05-26 14:30:52.424 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG extended 2019-05-26 14:30:52.425 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.425 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_SHORT extended 2019-05-26 14:30:52.425 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.426 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.432 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.INSTALL_TEST extended 2019-05-26 14:30:52.433 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_CONT extended 2019-05-26 14:30:52.438 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG extended 2019-05-26 14:30:52.439 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.440 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_SHORT extended 2019-05-26 14:30:52.441 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.441 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.445 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.INSTALL_TEST extended 2019-05-26 14:30:52.465 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_CONT extended 2019-05-26 14:30:52.466 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG extended 2019-05-26 14:30:52.467 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.467 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_SHORT extended 2019-05-26 14:30:52.468 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.468 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.472 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.INSTALL_TEST extended 2019-05-26 14:30:52.488 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_CONT extended 2019-05-26 14:30:52.489 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG extended 2019-05-26 14:30:52.491 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.493 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_SHORT extended 2019-05-26 14:30:52.493 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-26 14:30:52.493 - debug: hm-rpc.1 paramset cache hit 2019-05-26 14:30:52.506 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.INSTALL_TEST extended 2019-05-26 14:30:52.513 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_CONT extended 2019-05-26 14:30:52.519 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG extended 2019-05-26 14:30:52.524 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE extended 2019-05-26 14:30:52.527 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_SHORT extended 2019-05-26 14:30:54.810 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_SHORT to "Display Flur EG:8.PRESS_SHORT" 2019-05-26 14:30:54.821 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE to "Display Flur EG:8.PRESS_LONG_RELEASE" 2019-05-26 14:30:54.837 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG to "Display Flur EG:8.PRESS_LONG" 2019-05-26 14:30:54.847 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_CONT to "Display Flur EG:8.PRESS_CONT" 2019-05-26 14:30:54.855 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.INSTALL_TEST to "Display Flur EG:8.INSTALL_TEST" 2019-05-26 14:30:54.865 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-26 14:30:54.877 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_SHORT to "Display Flur EG:7.PRESS_SHORT" 2019-05-26 14:30:54.887 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE to "Display Flur EG:7.PRESS_LONG_RELEASE" 2019-05-26 14:30:54.897 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG to "Display Flur EG:7.PRESS_LONG" 2019-05-26 14:30:54.908 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_CONT to "Display Flur EG:7.PRESS_CONT" 2019-05-26 14:30:54.928 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.INSTALL_TEST to "Display Flur EG:7.INSTALL_TEST" 2019-05-26 14:30:54.936 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-26 14:30:54.944 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_SHORT to "Display Flur EG:6.PRESS_SHORT" 2019-05-26 14:30:54.956 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE to "Display Flur EG:6.PRESS_LONG_RELEASE" 2019-05-26 14:30:54.969 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG to "Display Flur EG:6.PRESS_LONG" 2019-05-26 14:30:54.977 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_CONT to "Display Flur EG:6.PRESS_CONT" 2019-05-26 14:30:54.986 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.INSTALL_TEST to "Display Flur EG:6.INSTALL_TEST" 2019-05-26 14:30:54.998 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-26 14:30:55.009 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_SHORT to "Display Flur EG:5.PRESS_SHORT" 2019-05-26 14:30:55.018 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE to "Display Flur EG:5.PRESS_LONG_RELEASE" 2019-05-26 14:30:55.042 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG to "Display Flur EG:5.PRESS_LONG" 2019-05-26 14:30:55.079 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_CONT to "Display Flur EG:5.PRESS_CONT" 2019-05-26 14:30:55.102 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.INSTALL_TEST to "Display Flur EG:5.INSTALL_TEST" 2019-05-26 14:30:55.117 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-26 14:30:55.140 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_SHORT to "Display Flur EG:4.PRESS_SHORT" 2019-05-26 14:30:55.159 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE to "Display Flur EG:4.PRESS_LONG_RELEASE" 2019-05-26 14:30:55.178 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG to "Display Flur EG:4.PRESS_LONG" 2019-05-26 14:30:55.195 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_CONT to "Display Flur EG:4.PRESS_CONT" 2019-05-26 14:30:55.217 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.INSTALL_TEST to "Display Flur EG:4.INSTALL_TEST" 2019-05-26 14:30:55.236 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-26 14:30:55.243 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_SHORT to "Display Flur EG:3.PRESS_SHORT" 2019-05-26 14:30:55.250 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE to "Display Flur EG:3.PRESS_LONG_RELEASE" 2019-05-26 14:30:55.261 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG to "Display Flur EG:3.PRESS_LONG" 2019-05-26 14:30:55.265 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_CONT to "Display Flur EG:3.PRESS_CONT" 2019-05-26 14:30:55.271 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.INSTALL_TEST to "Display Flur EG:3.INSTALL_TEST" 2019-05-26 14:30:55.281 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-26 14:30:55.295 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_SHORT to "Display Flur EG:2.PRESS_SHORT" 2019-05-26 14:30:55.312 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE to "Display Flur EG:2.PRESS_LONG_RELEASE" 2019-05-26 14:30:55.323 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG to "Display Flur EG:2.PRESS_LONG" 2019-05-26 14:30:55.337 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_CONT to "Display Flur EG:2.PRESS_CONT" 2019-05-26 14:30:55.348 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.INSTALL_TEST to "Display Flur EG:2.INSTALL_TEST" 2019-05-26 14:30:55.391 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-26 14:30:55.408 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_SHORT to "Display Flur EG:1.PRESS_SHORT" 2019-05-26 14:30:55.423 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE to "Display Flur EG:1.PRESS_LONG_RELEASE" 2019-05-26 14:30:55.437 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG to "Display Flur EG:1.PRESS_LONG" 2019-05-26 14:30:55.459 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_CONT to "Display Flur EG:1.PRESS_CONT" 2019-05-26 14:30:55.468 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.INSTALL_TEST to "Display Flur EG:1.INSTALL_TEST" 2019-05-26 14:30:55.481 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-26 14:30:55.496 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_TONE to "Display Flur EG:0.EPAPER_TONE" 2019-05-26 14:30:55.504 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_SIGNAL to "Display Flur EG:0.EPAPER_SIGNAL" 2019-05-26 14:30:55.518 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON4 to "Display Flur EG:0.EPAPER_ICON4" 2019-05-26 14:30:55.537 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE4 to "Display Flur EG:0.EPAPER_LINE4" 2019-05-26 14:30:55.552 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON3 to "Display Flur EG:0.EPAPER_ICON3" 2019-05-26 14:30:55.566 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE3 to "Display Flur EG:0.EPAPER_LINE3" 2019-05-26 14:30:55.579 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON2 to "Display Flur EG:0.EPAPER_ICON2" 2019-05-26 14:30:55.593 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE2 to "Display Flur EG:0.EPAPER_LINE2" 2019-05-26 14:30:55.623 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-26 14:30:55.631 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG"

`

Knallochse commented 5 years ago

Das habe ich noch im Log gefunden:

hm-rpc.1 2019-05-26 15:44:47.111 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN
hm-rpc.1 2019-05-26 15:44:47.111 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11"
foxriver76 commented 5 years ago

Danke, ich glaube ich weiß woran es liegt.

Note: E-Paper wird detectet, dann werden für jeden möglichen Maintenance Kanal Daten angelegt, diese sind jedoch nur die EPAPER_LINE Daten und die normalen MAINTENANCE Daten bleiben weg. Wenn dann der Maintenance Kanal kommt, merkt der Adapter, dass die Daten schon gecached sind und fragt nicht mehr die CCU ab, weshalb die Daten wie LOWBAT dem Adapter nie mitgeteilt werden, also entweder müssen die Daten mit in addEpapertoMeta angelegt werden oder die Meta Daten werden erst nach dem Abfragen des Paramset mit den eigenen Daten angereichert.

foxriver76 commented 5 years ago

Kannst du bitte nochmal das Prozedere probieren -> GitHub install -> Stoppen -> Device unter Objekte löschen -> starten.

Wenns das net war, muss ich nochmal Logging einbauen.

Knallochse commented 5 years ago

Hab ich gemacht. Unter Objekte sieht es jetzt so aus. (kein Eintrag LOWBAT) Screenshot9

MAINTENANCE (den gibt es nicht) unter hm-rpc.meta.VALUES.HM-Dis-EP-WM55 Screenshot10

Das stand auch wieder im LOG

hm-rpc.1 2019-05-27 17:26:44.108 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MI
hm-rpc.1 2019-05-27 17:26:44.106 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11"

Sieht eigentlich aus, wie vor den Änderungen. Sorry, ich glaub das war es noch nicht.

foxriver76 commented 5 years ago

Und die EPAPER Objekte waren wieder alle leer? also das Logging mit [EPAPER] am Anfang

foxriver76 commented 5 years ago

Gibt jetzt nochmal bissl mehr Logging, damit ich sehe an welcher Stelle er die Methode aufruft.

Knallochse commented 5 years ago

Sorry ich war unterwegs.

Habe gerade; alle hm-rpc Instanzen gestoppt neu von Github installiert; Upload gemacht; Objekt Epaper-Display aus hm-rpc.1 & hm-rpc.meta gelöscht. Dann wieder alle HM-rpc Instanzen gestartet.

Hier nun der aktuelle Logfile Ausschnitt: Die von dir gesuchten [EPAPER] Einträge habe ich wieder Fett markiert. Ich hoffe das hilft dir weiter.

2019-05-27 20:57:33.319 - info: iobroker upload hm-rpc

2019-05-27 20:57:34.079 - info: iobroker got /opt/iobroker/node_modules/iobroker.hm-rpc/admin 2019-05-27 20:57:34.208 - info: iobroker upload [200] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/index_m.html index_m.html text/html 2019-05-27 20:57:37.120 - info: iobroker upload [150] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/75_hm-pb-2-wm55_thumb.png icons/75_hm-pb-2-wm55_thumb.png image/png 2019-05-27 20:57:39.936 - info: iobroker upload [100] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/27_hmw-lc-bl1-dr_thumb.png icons/27_hmw-lc-bl1-dr_thumb.png image/png 2019-05-27 20:57:40.527 - info: iobroker upload [90] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/188_hmip-etrv-c_thumb.png icons/188_hmip-etrv-c_thumb.png image/png 2019-05-27 20:57:41.139 - info: iobroker upload [80] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/179_hmip-swdm-b2_thumb.png icons/179_hmip-swdm-b2_thumb.png image/png 2019-05-27 20:57:41.728 - info: iobroker upload [70] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/169_hmip-swo-pr_thumb.png icons/169_hmip-swo-pr_thumb.png image/png 2019-05-27 20:57:42.324 - info: iobroker upload [60] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/150_hm-lc-dw-wm_thumb.png icons/150_hm-lc-dw-wm_thumb.png image/png 2019-05-27 20:57:42.923 - info: iobroker upload [50] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/140_alpha-ip-rgb_thumb.png icons/140_alpha-ip-rgb_thumb.png image/png 2019-05-27 20:57:43.513 - info: iobroker upload [40] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/132_hmip-smo_thumb.png icons/132_hmip-smo_thumb.png image/png 2019-05-27 20:57:44.088 - info: iobroker upload [30] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/121_hmip-wth_thumb.png icons/121_hmip-wth_thumb.png image/png 2019-05-27 20:57:44.672 - info: iobroker upload [20] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm_thumb.png icons/113_hmip-psm_thumb.png image/png 2019-05-27 20:57:44.728 - info: iobroker upload [19] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-uk_thumb.png icons/113_hmip-psm-uk_thumb.png image/png 2019-05-27 20:57:44.794 - info: iobroker upload [18] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-pe_thumb.png icons/113_hmip-psm-pe_thumb.png image/png 2019-05-27 20:57:44.859 - info: iobroker upload [17] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-it_thumb.png icons/113_hmip-psm-it_thumb.png image/png 2019-05-27 20:57:44.917 - info: iobroker upload [16] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-ch_thumb.png icons/113_hmip-psm-ch_thumb.png image/png 2019-05-27 20:57:44.974 - info: iobroker upload [15] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/112_hmip-wrc2_thumb.png icons/112_hmip-wrc2_thumb.png image/png 2019-05-27 20:57:45.031 - info: iobroker upload [14] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/111_hm-lc-rgbw-wm_thumb.png icons/111_hm-lc-rgbw-wm_thumb.png image/png 2019-05-27 20:57:45.088 - info: iobroker upload [13] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/110_hm-es-pmsw1-dr_thump.png icons/110_hm-es-pmsw1-dr_thump.png image/png 2019-05-27 20:57:45.147 - info: iobroker upload [12] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/109_hm-lc-sw1-pl-ct_thump.png icons/109_hm-lc-sw1-pl-ct_thump.png image/png 2019-05-27 20:57:45.204 - info: iobroker upload [11] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/108_hm-rc-dis-h-x-eu_thump.png icons/108_hm-rc-dis-h-x-eu_thump.png image/png 2019-05-27 20:57:45.263 - info: iobroker upload [10] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R5_thumb.png icons/107_hm-es-pmsw1-pl-R5_thumb.png image/png 2019-05-27 20:57:45.321 - info: iobroker upload [9] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R4_thumb.png icons/107_hm-es-pmsw1-pl-R4_thumb.png image/png 2019-05-27 20:57:45.379 - info: iobroker upload [8] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R3_thumb.png icons/107_hm-es-pmsw1-pl-R3_thumb.png image/png 2019-05-27 20:57:45.438 - info: iobroker upload [7] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R2_thumb.png icons/107_hm-es-pmsw1-pl-R2_thumb.png image/png 2019-05-27 20:57:45.499 - info: iobroker upload [6] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/105_hm-sec-sd-2-team_thumb.png icons/105_hm-sec-sd-2-team_thumb.png image/png 2019-05-27 20:57:45.556 - info: iobroker upload [5] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/104_hm-sec-sd-2_thumb.png icons/104_hm-sec-sd-2_thumb.png image/png 2019-05-27 20:57:45.625 - info: iobroker upload [4] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/103_hm-sen-mdir-wm55_thumb.png icons/103_hm-sen-mdir-wm55_thumb.png image/png 2019-05-27 20:57:45.696 - info: iobroker upload [3] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/102_hm-es-tx-wm_thumb.png icons/102_hm-es-tx-wm_thumb.png image/png 2019-05-27 20:57:45.764 - info: iobroker upload [2] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/101_hm-sen-db-pcb_thumb.png icons/101_hm-sen-db-pcb_thumb.png image/png 2019-05-27 20:57:45.825 - info: iobroker upload [1] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/100_hm-rc-8_thumb.png icons/100_hm-rc-8_thumb.png image/png 2019-05-27 20:57:45.892 - info: iobroker upload [0] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/homematic.png homematic.png image/png 2019-05-27 20:57:47.820 - info: iobroker exit 0 2019-05-27 20:59:14.045 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.0 2019-05-27 20:59:19.537 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-05-27 20:59:23.362 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-05-27 20:59:46.938 - info: host.buanet-iobroker1 object change system.adapter.hm-rega.0 2019-05-27 20:59:46.965 - info: host.buanet-iobroker1 instance system.adapter.hm-rega.0 started with pid 4235 2019-05-27 20:59:49.032 - info: hm-rega.0 starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.hm-rega, node: v8.14.0 2019-05-27 20:59:49.138 - info: hm-rega.0 subscribe hm-rpc.1.BidCoS-RF.50.PRESS_SHORT 2019-05-27 20:59:49.201 - info: hm-rega.0 ReGaHSS 192.168.178.28 up 2019-05-27 20:59:49.326 - info: hm-rega.0 time difference local-ccu 0s 2019-05-27 20:59:49.354 - info: hm-rega.0 added/updated 2 favorites to enum.favorites 2019-05-27 20:59:49.409 - info: hm-rega.0 added/updated functions to enum.functions 2019-05-27 20:59:49.446 - info: hm-rega.0 added/updated rooms to enum.rooms 2019-05-27 20:59:50.167 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.0 2019-05-27 20:59:50.167 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.0" enabled 2019-05-27 20:59:50.194 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.0 started with pid 4260 2019-05-27 20:59:51.048 - debug: hm-rpc.0 objectDB connected 2019-05-27 20:59:51.086 - debug: hm-rpc.0 statesDB connected 2019-05-27 20:59:51.218 - info: hm-rpc.0 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-27 20:59:51.269 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-27 20:59:51.276 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-27 20:59:51.285 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-27 20:59:51.298 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-27 20:59:51.305 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-27 20:59:51.311 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-27 20:59:51.318 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-27 20:59:51.325 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-27 20:59:51.343 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-27 20:59:51.352 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-27 20:59:51.809 - info: hm-rega.0 got 226 programs 2019-05-27 20:59:51.953 - info: hm-rega.0 added/updated 226 programs 2019-05-27 20:59:52.043 - info: hm-rpc.0 binrpc server is trying to listen on 192.168.178.86:18701 2019-05-27 20:59:52.044 - info: hm-rpc.0 binrpc client is trying to connect to 192.168.178.28:8701/ with ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-05-27 20:59:52.046 - debug: hm-rpc.0 Connect... 2019-05-27 20:59:52.047 - debug: hm-rpc.0 binrpc -> 192.168.178.28:8701/ init ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-05-27 20:59:52.052 - debug: hm-rpc.0 start connecting interval 2019-05-27 20:59:51.953 - info: hm-rega.0 deleted 0 programs 2019-05-27 20:59:53.953 - info: hm-rega.0 got 198 variables 2019-05-27 20:59:53.964 - info: hm-rpc.0 binrpc -> listDevices 324 2019-05-27 20:59:53.976 - debug: hm-rpc.0 system.adapter.admin.0: logging false 2019-05-27 20:59:53.996 - info: hm-rpc.0 new CUxD devices/channels after filter: 0 2019-05-27 20:59:54.000 - info: hm-rpc.0 Connected 2019-05-27 20:59:54.001 - debug: hm-rpc.0 clear connecting interval 2019-05-27 20:59:54.001 - debug: hm-rpc.0 start ping interval 2019-05-27 20:59:54.111 - info: hm-rega.0 added/updated 198 variables 2019-05-27 20:59:54.152 - info: history.0 enabled logging of hm-rega.0.1369, Alias=false 2019-05-27 20:59:54.153 - info: history.0 enabled logging of hm-rega.0.2122, Alias=false 2019-05-27 20:59:54.153 - info: history.0 enabled logging of hm-rega.0.2123, Alias=false 2019-05-27 20:59:54.111 - info: hm-rega.0 deleted 0 variables 2019-05-27 20:59:54.112 - info: hm-rega.0 request state values 2019-05-27 20:59:54.172 - info: history.0 enabled logging of hm-rega.0.3158, Alias=false 2019-05-27 20:59:54.172 - info: history.0 enabled logging of hm-rega.0.5164, Alias=false 2019-05-27 20:59:54.218 - info: history.0 enabled logging of hm-rega.0.6327, Alias=false 2019-05-27 20:59:54.219 - info: history.0 enabled logging of hm-rega.0.6328, Alias=false 2019-05-27 20:59:54.219 - info: history.0 enabled logging of hm-rega.0.6329, Alias=false 2019-05-27 20:59:54.219 - info: history.0 enabled logging of hm-rega.0.6330, Alias=false 2019-05-27 20:59:54.219 - info: history.0 enabled logging of hm-rega.0.6335, Alias=false 2019-05-27 20:59:54.219 - info: history.0 enabled logging of hm-rega.0.6337, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6340, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6341, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6342, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6343, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6345, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6346, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6347, Alias=false 2019-05-27 20:59:54.220 - info: history.0 enabled logging of hm-rega.0.6348, Alias=false 2019-05-27 20:59:54.229 - info: history.0 enabled logging of hm-rega.0.6349, Alias=false 2019-05-27 20:59:54.229 - info: history.0 enabled logging of hm-rega.0.6355, Alias=false 2019-05-27 20:59:54.511 - info: history.0 enabled logging of hm-rega.0.14916, Alias=false 2019-05-27 20:59:54.511 - info: history.0 enabled logging of hm-rega.0.16360, Alias=false 2019-05-27 20:59:54.512 - info: history.0 enabled logging of hm-rega.0.47556, Alias=false 2019-05-27 20:59:54.512 - info: history.0 enabled logging of hm-rega.0.47557, Alias=false 2019-05-27 20:59:54.512 - info: history.0 enabled logging of hm-rega.0.47558, Alias=false 2019-05-27 20:59:54.512 - info: history.0 enabled logging of hm-rega.0.47560, Alias=false 2019-05-27 20:59:54.512 - info: history.0 enabled logging of hm-rega.0.47561, Alias=false 2019-05-27 20:59:54.512 - info: history.0 enabled logging of hm-rega.0.47562, Alias=false 2019-05-27 20:59:54.535 - info: history.0 enabled logging of hm-rega.0.47564, Alias=false 2019-05-27 20:59:54.535 - info: history.0 enabled logging of hm-rega.0.47565, Alias=false 2019-05-27 20:59:54.535 - info: history.0 enabled logging of hm-rega.0.47567, Alias=false 2019-05-27 20:59:54.535 - info: history.0 enabled logging of hm-rega.0.47568, Alias=false 2019-05-27 20:59:54.535 - info: history.0 enabled logging of hm-rega.0.47569, Alias=false 2019-05-27 20:59:54.536 - info: history.0 enabled logging of hm-rega.0.47570, Alias=false 2019-05-27 20:59:54.536 - info: history.0 enabled logging of hm-rega.0.47571, Alias=false 2019-05-27 20:59:54.536 - info: history.0 enabled logging of hm-rega.0.47572, Alias=false 2019-05-27 20:59:54.536 - info: history.0 enabled logging of hm-rega.0.47573, Alias=false 2019-05-27 20:59:54.537 - info: history.0 enabled logging of hm-rega.0.47574, Alias=false 2019-05-27 20:59:54.537 - info: history.0 enabled logging of hm-rega.0.47579, Alias=false 2019-05-27 20:59:54.537 - info: history.0 enabled logging of hm-rega.0.49968, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49969, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49974, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49976, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49982, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49983, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49986, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.49987, Alias=false 2019-05-27 20:59:54.538 - info: history.0 enabled logging of hm-rega.0.50787, Alias=false 2019-05-27 20:59:54.539 - info: history.0 enabled logging of hm-rega.0.50788, Alias=false 2019-05-27 20:59:54.539 - info: history.0 enabled logging of hm-rega.0.50789, Alias=false 2019-05-27 20:59:54.688 - info: hm-rega.0 got state values 2019-05-27 20:59:57.055 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-05-27 20:59:57.056 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.1" enabled 2019-05-27 20:59:57.088 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.1 started with pid 4275 2019-05-27 20:59:58.450 - debug: hm-rpc.1 objectDB connected 2019-05-27 20:59:58.743 - debug: hm-rpc.1 statesDB connected 2019-05-27 20:59:58.880 - info: hm-rpc.1 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-27 20:59:59.289 - info: hm-rpc.1 xmlrpc server is trying to listen on 192.168.178.86:12001 2019-05-27 20:59:59.290 - info: hm-rpc.1 xmlrpc client is trying to connect to 192.168.178.28:2001/ with ["http://192.168.178.86:12001","hm-rpc.1"] 2019-05-27 20:59:59.291 - debug: hm-rpc.1 Connect... 2019-05-27 20:59:59.292 - debug: hm-rpc.1 xmlrpc -> 192.168.178.28:2001/ init ["http://192.168.178.86:12001","hm-rpc.1"] 2019-05-27 20:59:59.297 - debug: hm-rpc.1 start connecting interval 2019-05-27 20:59:59.318 - info: hm-rpc.1 xmlrpc <- system.listMethods ["hm-rpc.1"] 2019-05-27 20:59:59.329 - info: hm-rpc.1 xmlrpc <- listDevices ["hm-rpc.1"] 2019-05-27 20:59:59.357 - info: hm-rpc.1 xmlrpc -> 235 devices 2019-05-27 20:59:59.507 - info: hm-rpc.1 xmlrpc <- newDevices 10 2019-05-27 20:59:59.516 - info: hm-rpc.1 Connected 2019-05-27 20:59:59.519 - debug: hm-rpc.1 clear connecting interval 2019-05-27 20:59:59.519 - debug: hm-rpc.1 start ping interval 2019-05-27 20:59:59.521 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8 created 2019-05-27 20:59:59.525 - debug: hm-rpc.1 xml multicall : hm-rpc.1,LEQ0801502:0,STICKY_UNREACH,true 2019-05-27 20:59:59.526 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","LEQ0801502:0","STICKY_UNREACH",true] 2019-05-27 20:59:59.526 - debug: hm-rpc.1 hm-rpc.1.LEQ0801502.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true" 2019-05-27 20:59:59.533 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7 created 2019-05-27 20:59:59.538 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6 created 2019-05-27 20:59:59.542 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5 created 2019-05-27 20:59:59.546 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4 created 2019-05-27 20:59:59.551 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3 created 2019-05-27 20:59:59.555 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2 created 2019-05-27 20:59:59.559 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1 created 2019-05-27 20:59:59.563 - debug: hm-rpc.1 [EPAPER] Create Epaper because of CHANNEL 2019-05-27 20:59:59.564 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 9 with {} 2019-05-27 20:59:59.564 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 10 with {} 2019-05-27 20:59:59.564 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 11 with {} 2019-05-27 20:59:59.564 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 12 with {} 2019-05-27 20:59:59.565 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0 created 2019-05-27 20:59:59.569 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636 created 2019-05-27 20:59:59.579 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-27 20:59:59.587 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-27 20:59:59.570 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11 2019-05-27 20:59:59.571 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.591 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE2 extended 2019-05-27 20:59:59.592 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON2 extended 2019-05-27 20:59:59.593 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE3 extended 2019-05-27 20:59:59.593 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON3 extended 2019-05-27 20:59:59.595 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE4 extended 2019-05-27 20:59:59.596 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-27 20:59:59.603 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON4 extended 2019-05-27 20:59:59.604 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-27 20:59:59.604 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_SIGNAL extended 2019-05-27 20:59:59.604 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_TONE extended 2019-05-27 20:59:59.605 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.610 - info: hm-rpc.1 xmlrpc -> getParamsetDescription ["NEQ0711636:1","VALUES"] 2019-05-27 20:59:59.610 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-27 20:59:59.616 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-27 20:59:59.623 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-27 20:59:59.632 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-27 20:59:59.634 - warn: hm-rpc.1 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11" 2019-05-27 20:59:59.634 - warn: hm-rpc.1 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":2,"TYPE":"ACTION","UNIT":""},"PRESS_CONT":{"DEFAULT":false,"FLAGS":3,"ID":"PRESS_CONT","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"PRESS_LONG":{"CONTROL":"BUTTON.LONG","DEFAULT":false,"FLAGS":1,"ID":"PRESS_LONG","MAX":true,"MIN":false,"OPERATIONS":6,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"PRESS_LONG_RELEASE":{"DEFAULT":false,"FLAGS":3,"ID":"PRESS_LONG_RELEASE","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"PRESS_SHORT":{"CONTROL":"BUTTON.SHORT","DEFAULT":false,"FLAGS":1,"ID":"PRESS_SHORT","MAX":true,"MIN":false,"OPERATIONS":6,"TAB_ORDER":0,"TYPE":"ACTION","UNIT":""}}} 2019-05-27 20:59:59.638 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-27 20:59:59.645 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.INSTALL_TEST extended 2019-05-27 20:59:59.647 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-27 20:59:59.666 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_CONT extended 2019-05-27 20:59:59.667 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG extended 2019-05-27 20:59:59.667 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.668 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_SHORT extended 2019-05-27 20:59:59.668 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.670 - debug: hm-rpc.1 hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11 found 2019-05-27 20:59:59.682 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.INSTALL_TEST extended 2019-05-27 20:59:59.682 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_CONT extended 2019-05-27 20:59:59.683 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG extended 2019-05-27 20:59:59.683 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.684 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_SHORT extended 2019-05-27 20:59:59.685 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.685 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.697 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.INSTALL_TEST extended 2019-05-27 20:59:59.698 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_CONT extended 2019-05-27 20:59:59.700 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG extended 2019-05-27 20:59:59.703 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.704 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_SHORT extended 2019-05-27 20:59:59.704 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.705 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.709 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.INSTALL_TEST extended 2019-05-27 20:59:59.724 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_CONT extended 2019-05-27 20:59:59.725 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG extended 2019-05-27 20:59:59.725 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.726 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_SHORT extended 2019-05-27 20:59:59.728 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.728 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.733 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.INSTALL_TEST extended 2019-05-27 20:59:59.735 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_CONT extended 2019-05-27 20:59:59.737 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG extended 2019-05-27 20:59:59.738 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.739 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_SHORT extended 2019-05-27 20:59:59.739 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.739 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.744 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.INSTALL_TEST extended 2019-05-27 20:59:59.746 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_CONT extended 2019-05-27 20:59:59.751 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG extended 2019-05-27 20:59:59.752 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.753 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_SHORT extended 2019-05-27 20:59:59.753 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.753 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.756 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.INSTALL_TEST extended 2019-05-27 20:59:59.759 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_CONT extended 2019-05-27 20:59:59.760 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG extended 2019-05-27 20:59:59.761 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.762 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_SHORT extended 2019-05-27 20:59:59.762 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 20:59:59.763 - debug: hm-rpc.1 paramset cache hit 2019-05-27 20:59:59.767 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.INSTALL_TEST extended 2019-05-27 20:59:59.769 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_CONT extended 2019-05-27 20:59:59.769 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG extended 2019-05-27 20:59:59.772 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE extended 2019-05-27 20:59:59.772 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_SHORT extended 2019-05-27 21:00:01.423 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,STATE,true 2019-05-27 21:00:01.425 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","STATE",true] 2019-05-27 21:00:01.425 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.STATE ==> UNIT: "" (min: false, max: true) From "true" => "true" 2019-05-27 21:00:01.432 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,STATE_UNCERTAIN,true 2019-05-27 21:00:01.432 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","STATE_UNCERTAIN",true] 2019-05-27 21:00:01.433 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.STATE_UNCERTAIN ==> UNIT: "" (min: false, max: true) From "true" => "true" 2019-05-27 21:00:01.433 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,DIRECTION,3 2019-05-27 21:00:01.434 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","DIRECTION",3] 2019-05-27 21:00:01.434 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.DIRECTION ==> UNIT: "" (min: 0, max: 3) From "3" => "3" 2019-05-27 21:00:01.434 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,ERROR,0 2019-05-27 21:00:01.434 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","ERROR",0] 2019-05-27 21:00:01.434 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.ERROR ==> UNIT: "" (min: 0, max: 2) From "0" => "0" 2019-05-27 21:00:01.795 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-05-27 21:00:01.796 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.2" enabled 2019-05-27 21:00:01.852 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.2 started with pid 4307 2019-05-27 21:00:02.425 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_SHORT to "Display Flur EG:8.PRESS_SHORT" 2019-05-27 21:00:02.430 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE to "Display Flur EG:8.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.436 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG to "Display Flur EG:8.PRESS_LONG" 2019-05-27 21:00:02.442 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_CONT to "Display Flur EG:8.PRESS_CONT" 2019-05-27 21:00:02.449 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.INSTALL_TEST to "Display Flur EG:8.INSTALL_TEST" 2019-05-27 21:00:02.460 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_SHORT to "Display Flur EG:7.PRESS_SHORT" 2019-05-27 21:00:02.471 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE to "Display Flur EG:7.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.482 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG to "Display Flur EG:7.PRESS_LONG" 2019-05-27 21:00:02.492 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_CONT to "Display Flur EG:7.PRESS_CONT" 2019-05-27 21:00:02.505 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.INSTALL_TEST to "Display Flur EG:7.INSTALL_TEST" 2019-05-27 21:00:02.512 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_SHORT to "Display Flur EG:6.PRESS_SHORT" 2019-05-27 21:00:02.521 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE to "Display Flur EG:6.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.537 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG to "Display Flur EG:6.PRESS_LONG" 2019-05-27 21:00:02.549 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_CONT to "Display Flur EG:6.PRESS_CONT" 2019-05-27 21:00:02.561 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.INSTALL_TEST to "Display Flur EG:6.INSTALL_TEST" 2019-05-27 21:00:02.570 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_SHORT to "Display Flur EG:5.PRESS_SHORT" 2019-05-27 21:00:02.575 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE to "Display Flur EG:5.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.579 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG to "Display Flur EG:5.PRESS_LONG" 2019-05-27 21:00:02.583 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_CONT to "Display Flur EG:5.PRESS_CONT" 2019-05-27 21:00:02.587 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.INSTALL_TEST to "Display Flur EG:5.INSTALL_TEST" 2019-05-27 21:00:02.593 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_SHORT to "Display Flur EG:4.PRESS_SHORT" 2019-05-27 21:00:02.597 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE to "Display Flur EG:4.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.604 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG to "Display Flur EG:4.PRESS_LONG" 2019-05-27 21:00:02.613 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_CONT to "Display Flur EG:4.PRESS_CONT" 2019-05-27 21:00:02.620 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.INSTALL_TEST to "Display Flur EG:4.INSTALL_TEST" 2019-05-27 21:00:02.626 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_SHORT to "Display Flur EG:3.PRESS_SHORT" 2019-05-27 21:00:02.632 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE to "Display Flur EG:3.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.638 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG to "Display Flur EG:3.PRESS_LONG" 2019-05-27 21:00:02.656 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_CONT to "Display Flur EG:3.PRESS_CONT" 2019-05-27 21:00:02.662 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.INSTALL_TEST to "Display Flur EG:3.INSTALL_TEST" 2019-05-27 21:00:02.673 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_SHORT to "Display Flur EG:2.PRESS_SHORT" 2019-05-27 21:00:02.677 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE to "Display Flur EG:2.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.680 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG to "Display Flur EG:2.PRESS_LONG" 2019-05-27 21:00:02.689 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_CONT to "Display Flur EG:2.PRESS_CONT" 2019-05-27 21:00:02.696 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.INSTALL_TEST to "Display Flur EG:2.INSTALL_TEST" 2019-05-27 21:00:02.700 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_SHORT to "Display Flur EG:1.PRESS_SHORT" 2019-05-27 21:00:02.704 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE to "Display Flur EG:1.PRESS_LONG_RELEASE" 2019-05-27 21:00:02.708 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG to "Display Flur EG:1.PRESS_LONG" 2019-05-27 21:00:02.711 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_CONT to "Display Flur EG:1.PRESS_CONT" 2019-05-27 21:00:02.715 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.INSTALL_TEST to "Display Flur EG:1.INSTALL_TEST" 2019-05-27 21:00:02.719 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_TONE to "Display Flur EG:0.EPAPER_TONE" 2019-05-27 21:00:02.722 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_SIGNAL to "Display Flur EG:0.EPAPER_SIGNAL" 2019-05-27 21:00:02.726 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON4 to "Display Flur EG:0.EPAPER_ICON4" 2019-05-27 21:00:02.731 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE4 to "Display Flur EG:0.EPAPER_LINE4" 2019-05-27 21:00:02.743 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON3 to "Display Flur EG:0.EPAPER_ICON3" 2019-05-27 21:00:02.747 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE3 to "Display Flur EG:0.EPAPER_LINE3" 2019-05-27 21:00:02.751 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON2 to "Display Flur EG:0.EPAPER_ICON2" 2019-05-27 21:00:02.755 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE2 to "Display Flur EG:0.EPAPER_LINE2" 2019-05-27 21:00:02.768 - debug: hm-rpc.2 objectDB connected 2019-05-27 21:00:02.806 - debug: hm-rpc.2 statesDB connected 2019-05-27 21:00:02.961 - info: hm-rpc.2 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-27 21:00:03.321 - info: hm-rpc.2 xmlrpc server is trying to listen on 192.168.178.86:12010 2019-05-27 21:00:03.321 - info: hm-rpc.2 xmlrpc client is trying to connect to 192.168.178.28:2010/ with ["http://192.168.178.86:12010","hm-rpc.2"] 2019-05-27 21:00:03.322 - debug: hm-rpc.2 Connect... 2019-05-27 21:00:03.323 - debug: hm-rpc.2 xmlrpc -> 192.168.178.28:2010/ init ["http://192.168.178.86:12010","hm-rpc.2"] 2019-05-27 21:00:03.328 - debug: hm-rpc.2 start connecting interval 2019-05-27 21:00:03.352 - info: hm-rpc.2 Connected 2019-05-27 21:00:03.353 - debug: hm-rpc.2 clear connecting interval 2019-05-27 21:00:03.353 - debug: hm-rpc.2 start ping interval 2019-05-27 21:00:03.385 - info: hm-rpc.2 xmlrpc <- listDevices ["hm-rpc.2"] 2019-05-27 21:00:03.405 - info: hm-rpc.2 xmlrpc -> 0 devices 2019-05-27 21:00:04.554 - info: hm-rpc.2 xmlrpc <- newDevices 303 2019-05-27 21:00:04.751 - info: hm-rpc.2 new HmIP devices/channels after filter: 0 2019-05-27 21:00:05.519 - debug: hm-rpc.0 system.adapter.admin.0: logging true 2019-05-27 21:00:05.520 - debug: hm-rpc.1 system.adapter.admin.0: logging true 2019-05-27 21:00:05.524 - debug: hm-rpc.2 system.adapter.admin.0: logging true 2019-05-27 21:00:07.938 - info: host.buanet-iobroker1 instance system.adapter.ical.0 terminated with code 0 (OK) 2019-05-27 21:00:08.880 - info: host.buanet-iobroker1 instance system.adapter.ical.2 terminated with code 0 (OK) 2019-05-27 21:00:09.443 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,STATE,false 2019-05-27 21:00:09.443 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","STATE",false] 2019-05-27 21:00:09.443 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.STATE ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:09.450 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,STATE_UNCERTAIN,false 2019-05-27 21:00:09.451 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","STATE_UNCERTAIN",false] 2019-05-27 21:00:09.451 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.STATE_UNCERTAIN ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:09.451 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,DIRECTION,0 2019-05-27 21:00:09.451 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","DIRECTION",0] 2019-05-27 21:00:09.451 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.DIRECTION ==> UNIT: "" (min: 0, max: 3) From "0" => "0" 2019-05-27 21:00:09.451 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ0351446:1,ERROR,0 2019-05-27 21:00:09.451 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ0351446:1","ERROR",0] 2019-05-27 21:00:09.451 - debug: hm-rpc.1 hm-rpc.1.OEQ0351446.1.ERROR ==> UNIT: "" (min: 0, max: 2) From "0" => "0" 2019-05-27 21:00:22.539 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,CONFIG_PENDING,false 2019-05-27 21:00:22.539 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","CONFIG_PENDING",false] 2019-05-27 21:00:22.539 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:22.540 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,UNREACH,false 2019-05-27 21:00:22.540 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","UNREACH",false] 2019-05-27 21:00:22.540 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:22.541 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,RSSI_DEVICE,-60 2019-05-27 21:00:22.541 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","RSSI_DEVICE",-60] 2019-05-27 21:00:22.541 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-60" => "-60" 2019-05-27 21:00:40.296 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,SABOTAGE,false 2019-05-27 21:00:40.296 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","SABOTAGE",false] 2019-05-27 21:00:40.296 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.SABOTAGE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:40.299 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,CONFIG_PENDING,false 2019-05-27 21:00:40.299 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","CONFIG_PENDING",false] 2019-05-27 21:00:40.299 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:40.299 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,DUTY_CYCLE,false 2019-05-27 21:00:40.299 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","DUTY_CYCLE",false] 2019-05-27 21:00:40.299 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.DUTY_CYCLE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:40.299 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,LOW_BAT,false 2019-05-27 21:00:40.300 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","LOW_BAT",false] 2019-05-27 21:00:40.300 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.LOW_BAT ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:40.300 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,UNREACH,false 2019-05-27 21:00:40.300 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","UNREACH",false] 2019-05-27 21:00:40.300 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:00:40.300 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,RSSI_DEVICE,-88 2019-05-27 21:00:40.300 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","RSSI_DEVICE",-88] 2019-05-27 21:00:40.300 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-88" => "-88" 2019-05-27 21:00:40.301 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,OPERATING_VOLTAGE_STATUS,0 2019-05-27 21:00:40.301 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","OPERATING_VOLTAGE_STATUS",0] 2019-05-27 21:00:40.301 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.OPERATING_VOLTAGE_STATUS ==> UNIT: "undefined" (min: NORMAL, max: OVERFLOW) From "0" => "0" 2019-05-27 21:00:40.301 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,OPERATING_VOLTAGE,2.8 2019-05-27 21:00:40.302 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","OPERATING_VOLTAGE",2.8] 2019-05-27 21:00:40.302 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.OPERATING_VOLTAGE ==> UNIT: "undefined" (min: 0, max: 25.2) From "2.8" => "2.8" 2019-05-27 21:00:40.302 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00109709A3B46D:0,ERROR_CODE,0 2019-05-27 21:00:40.302 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:0","ERROR_CODE",0] 2019-05-27 21:00:40.302 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.0.ERROR_CODE ==> UNIT: "undefined" (min: 0, max: 255) From "0" => "0" 2019-05-27 21:00:40.322 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00109709A3B46D:1","STATE",0] 2019-05-27 21:00:40.322 - debug: hm-rpc.2 hm-rpc.2.00109709A3B46D.1.STATE ==> UNIT: """" (min: CLOSED, max: OPEN) From "0" => "0" 2019-05-27 21:00:56.468 - debug: hm-rpc.0 system.adapter.admin.0: logging false 2019-05-27 21:00:56.468 - debug: hm-rpc.2 system.adapter.admin.0: logging false 2019-05-27 21:00:56.469 - debug: hm-rpc.1 system.adapter.admin.0: logging false 2019-05-27 21:01:07.239 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,CONFIG_PENDING,false 2019-05-27 21:01:07.240 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","CONFIG_PENDING",false] 2019-05-27 21:01:07.240 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:07.240 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,UNREACH,false 2019-05-27 21:01:07.241 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","UNREACH",false] 2019-05-27 21:01:07.241 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:07.241 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,RSSI_DEVICE,-44 2019-05-27 21:01:07.241 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","RSSI_DEVICE",-44] 2019-05-27 21:01:07.242 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-44" => "-44" 2019-05-27 21:01:15.613 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:1,TEMPERATURE,39.8 2019-05-27 21:01:15.613 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:1","TEMPERATURE",39.8] 2019-05-27 21:01:15.614 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.1.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "39.8" => "39.8" 2019-05-27 21:01:15.632 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:2,TEMPERATURE,39.9 2019-05-27 21:01:15.633 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:2","TEMPERATURE",39.9] 2019-05-27 21:01:15.633 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.2.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "39.9" => "39.9" 2019-05-27 21:01:15.634 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:3,TEMPERATURE,-0.1 2019-05-27 21:01:15.634 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:3","TEMPERATURE",-0.1] 2019-05-27 21:01:15.634 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.3.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "-0.1" => "-0.1" 2019-05-27 21:01:15.634 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:4,TEMPERATURE,0.1 2019-05-27 21:01:15.634 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:4","TEMPERATURE",0.1] 2019-05-27 21:01:15.634 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.4.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "0.1" => "0.1" 2019-05-27 21:01:15.635 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:0,LOWBAT,false 2019-05-27 21:01:15.635 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:0","LOWBAT",false] 2019-05-27 21:01:15.635 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.0.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:15.635 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:1,LOWBAT,false 2019-05-27 21:01:15.635 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:1","LOWBAT",false] 2019-05-27 21:01:15.636 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.1.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:15.636 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:2,LOWBAT,false 2019-05-27 21:01:15.636 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:2","LOWBAT",false] 2019-05-27 21:01:15.636 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.2.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:15.636 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:3,LOWBAT,false 2019-05-27 21:01:15.636 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:3","LOWBAT",false] 2019-05-27 21:01:15.637 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.3.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:15.637 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:4,LOWBAT,false 2019-05-27 21:01:15.637 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:4","LOWBAT",false] 2019-05-27 21:01:15.637 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.4.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:15.637 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:5,LOWBAT,false 2019-05-27 21:01:15.637 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:5","LOWBAT",false] 2019-05-27 21:01:15.637 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.5.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:01:24.004 - debug: hm-rpc.0 [KEEPALIVE] Check if connection is alive 2019-05-27 21:01:24.005 - debug: hm-rpc.0 Send PING... 2019-05-27 21:01:24.010 - debug: hm-rpc.0 PING ok 2019-05-27 21:01:24.017 - debug: hm-rpc.0 bin multicall : CUxD,CENTRAL,PONG,hm-rpc.0 2019-05-27 21:01:24.018 - debug: hm-rpc.0 binrpc <- event ["CUxD","CENTRAL","PONG","hm-rpc.0"] 2019-05-27 21:01:24.018 - debug: hm-rpc.0 hm-rpc.0.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.0" => "hm-rpc.0" 2019-05-27 21:01:29.520 - debug: hm-rpc.1 [KEEPALIVE] Check if connection is alive 2019-05-27 21:01:29.521 - debug: hm-rpc.1 Send PING... 2019-05-27 21:01:29.526 - debug: hm-rpc.1 PING ok 2019-05-27 21:01:29.531 - debug: hm-rpc.1 xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1 2019-05-27 21:01:29.531 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"] 2019-05-27 21:01:29.531 - debug: hm-rpc.1 hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1" 2019-05-27 21:01:33.354 - debug: hm-rpc.2 [KEEPALIVE] Check if connection is alive 2019-05-27 21:01:33.355 - debug: hm-rpc.2 Send PING... 2019-05-27 21:01:33.375 - debug: hm-rpc.2 PING ok 2019-05-27 21:01:33.378 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","CENTRAL:0","PONG","hm-rpc.2"] 2019-05-27 21:01:33.378 - debug: hm-rpc.2 hm-rpc.2.CENTRAL.0.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.2" => "hm-rpc.2" 2019-05-27 21:01:46.055 - debug: hm-rpc.0 system.adapter.admin.0: logging true 2019-05-27 21:01:46.058 - debug: hm-rpc.2 system.adapter.admin.0: logging true 2019-05-27 21:01:46.057 - debug: hm-rpc.1 system.adapter.admin.0: logging true

foxriver76 commented 5 years ago

Hab jetzt nochmal was geändert. Sorry, fremden Code zu verstehen ist manchmal ne blöde Sache. ;-)

Knallochse commented 5 years ago

Sieht gut aus 😀

Screenshot11 Screenshot12

Noch ein paar WARN Hinweiße im Log (habe es Fett markiert) ob das wichtig ist - keine Ahnung 😀

2019-05-27 21:40:31.941 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.0 2019-05-27 21:40:35.329 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-05-27 21:40:44.033 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-05-27 21:41:08.353 - info: iobroker url "https://github.com/ioBroker/ioBroker.hm-rpc" 2019-05-27 21:41:08.788 - info: iobroker install https://github.com/ioBroker/ioBroker.hm-rpc/tarball/master 2019-05-27 21:41:09.302 - info: iobroker npm install https://github.com/ioBroker/ioBroker.hm-rpc/tarball/master --production --save --prefix "/opt/iobroker" (System call) 2019-05-27 21:41:56.524 - info: iobroker npm WARN onvif-snapshot@1.0.2 requires a peer of onvif@^0.5.5 but none is installed. You must install peer dependencies yourself.npm WARN optional SKIPPING OPTIONAL DEPENDENCY: osx-temperature-sensor@1.0.3 (node_modules/osx-temperature-sensor): npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for osx-temperature-sensor@1.0.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"}) 2019-05-27 21:41:56.526 - info: iobroker 2019-05-27 21:41:56.643 - info: iobroker got /opt/iobroker/node_modules/iobroker.hm-rpc/admin 2019-05-27 21:41:56.741 - info: iobroker upload [200] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/index_m.html index_m.html text/html 2019-05-27 21:41:59.537 - info: iobroker upload [150] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/75_hm-pb-2-wm55_thumb.png icons/75_hm-pb-2-wm55_thumb.png image/png 2019-05-27 21:42:02.340 - info: iobroker upload [100] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/27_hmw-lc-bl1-dr_thumb.png icons/27_hmw-lc-bl1-dr_thumb.png image/png 2019-05-27 21:42:02.899 - info: iobroker upload [90] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/188_hmip-etrv-c_thumb.png icons/188_hmip-etrv-c_thumb.png image/png 2019-05-27 21:42:03.471 - info: iobroker upload [80] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/179_hmip-swdm-b2_thumb.png icons/179_hmip-swdm-b2_thumb.png image/png 2019-05-27 21:42:04.034 - info: iobroker upload [70] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/169_hmip-swo-pr_thumb.png icons/169_hmip-swo-pr_thumb.png image/png 2019-05-27 21:42:04.596 - info: iobroker upload [60] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/150_hm-lc-dw-wm_thumb.png icons/150_hm-lc-dw-wm_thumb.png image/png 2019-05-27 21:42:05.169 - info: iobroker upload [50] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/140_alpha-ip-rgb_thumb.png icons/140_alpha-ip-rgb_thumb.png image/png 2019-05-27 21:42:05.738 - info: iobroker upload [40] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/132_hmip-smo_thumb.png icons/132_hmip-smo_thumb.png image/png 2019-05-27 21:42:06.310 - info: iobroker upload [30] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/121_hmip-wth_thumb.png icons/121_hmip-wth_thumb.png image/png 2019-05-27 21:42:06.884 - info: iobroker upload [20] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm_thumb.png icons/113_hmip-psm_thumb.png image/png 2019-05-27 21:42:06.942 - info: iobroker upload [19] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-uk_thumb.png icons/113_hmip-psm-uk_thumb.png image/png 2019-05-27 21:42:07.000 - info: iobroker upload [18] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-pe_thumb.png icons/113_hmip-psm-pe_thumb.png image/png 2019-05-27 21:42:07.056 - info: iobroker upload [17] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-it_thumb.png icons/113_hmip-psm-it_thumb.png image/png 2019-05-27 21:42:07.114 - info: iobroker upload [16] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-ch_thumb.png icons/113_hmip-psm-ch_thumb.png image/png 2019-05-27 21:42:07.171 - info: iobroker upload [15] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/112_hmip-wrc2_thumb.png icons/112_hmip-wrc2_thumb.png image/png 2019-05-27 21:42:07.227 - info: iobroker upload [14] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/111_hm-lc-rgbw-wm_thumb.png icons/111_hm-lc-rgbw-wm_thumb.png image/png 2019-05-27 21:42:07.285 - info: iobroker upload [13] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/110_hm-es-pmsw1-dr_thump.png icons/110_hm-es-pmsw1-dr_thump.png image/png 2019-05-27 21:42:07.343 - info: iobroker upload [12] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/109_hm-lc-sw1-pl-ct_thump.png icons/109_hm-lc-sw1-pl-ct_thump.png image/png 2019-05-27 21:42:07.398 - info: iobroker upload [11] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/108_hm-rc-dis-h-x-eu_thump.png icons/108_hm-rc-dis-h-x-eu_thump.png image/png 2019-05-27 21:42:07.458 - info: iobroker upload [10] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R5_thumb.png icons/107_hm-es-pmsw1-pl-R5_thumb.png image/png 2019-05-27 21:42:07.516 - info: iobroker upload [9] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R4_thumb.png icons/107_hm-es-pmsw1-pl-R4_thumb.png image/png 2019-05-27 21:42:07.572 - info: iobroker upload [8] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R3_thumb.png icons/107_hm-es-pmsw1-pl-R3_thumb.png image/png 2019-05-27 21:42:07.629 - info: iobroker upload [7] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R2_thumb.png icons/107_hm-es-pmsw1-pl-R2_thumb.png image/png 2019-05-27 21:42:07.684 - info: iobroker upload [6] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/105_hm-sec-sd-2-team_thumb.png icons/105_hm-sec-sd-2-team_thumb.png image/png 2019-05-27 21:42:07.741 - info: iobroker upload [5] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/104_hm-sec-sd-2_thumb.png icons/104_hm-sec-sd-2_thumb.png image/png 2019-05-27 21:42:07.797 - info: iobroker upload [4] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/103_hm-sen-mdir-wm55_thumb.png icons/103_hm-sen-mdir-wm55_thumb.png image/png 2019-05-27 21:42:07.851 - info: iobroker upload [3] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/102_hm-es-tx-wm_thumb.png icons/102_hm-es-tx-wm_thumb.png image/png 2019-05-27 21:42:07.907 - info: iobroker upload [2] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/101_hm-sen-db-pcb_thumb.png icons/101_hm-sen-db-pcb_thumb.png image/png 2019-05-27 21:42:07.964 - info: iobroker upload [1] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/100_hm-rc-8_thumb.png icons/100_hm-rc-8_thumb.png image/png 2019-05-27 21:42:08.021 - info: iobroker upload [0] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/homematic.png homematic.png image/png 2019-05-27 21:42:08.348 - info: iobroker exit 0 2019-05-27 21:42:08.509 - info: host.buanet-iobroker1 Update repository "default" under "http://repo.iobroker.live/sources-dist.json" 2019-05-27 21:42:22.045 - info: iobroker upload hm-rpc 2019-05-27 21:42:22.623 - info: iobroker got /opt/iobroker/node_modules/iobroker.hm-rpc/admin 2019-05-27 21:42:22.716 - info: iobroker upload [200] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/index_m.html index_m.html text/html 2019-05-27 21:42:25.720 - info: iobroker upload [150] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/75_hm-pb-2-wm55_thumb.png icons/75_hm-pb-2-wm55_thumb.png image/png 2019-05-27 21:42:28.481 - info: iobroker upload [100] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/27_hmw-lc-bl1-dr_thumb.png icons/27_hmw-lc-bl1-dr_thumb.png image/png 2019-05-27 21:42:29.028 - info: iobroker upload [90] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/188_hmip-etrv-c_thumb.png icons/188_hmip-etrv-c_thumb.png image/png 2019-05-27 21:42:29.605 - info: iobroker upload [80] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/179_hmip-swdm-b2_thumb.png icons/179_hmip-swdm-b2_thumb.png image/png 2019-05-27 21:42:30.171 - info: iobroker upload [70] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/169_hmip-swo-pr_thumb.png icons/169_hmip-swo-pr_thumb.png image/png 2019-05-27 21:42:30.743 - info: iobroker upload [60] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/150_hm-lc-dw-wm_thumb.png icons/150_hm-lc-dw-wm_thumb.png image/png 2019-05-27 21:42:31.304 - info: iobroker upload [50] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/140_alpha-ip-rgb_thumb.png icons/140_alpha-ip-rgb_thumb.png image/png 2019-05-27 21:42:31.862 - info: iobroker upload [40] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/132_hmip-smo_thumb.png icons/132_hmip-smo_thumb.png image/png 2019-05-27 21:42:32.431 - info: iobroker upload [30] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/121_hmip-wth_thumb.png icons/121_hmip-wth_thumb.png image/png 2019-05-27 21:42:32.994 - info: iobroker upload [20] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm_thumb.png icons/113_hmip-psm_thumb.png image/png 2019-05-27 21:42:33.054 - info: iobroker upload [19] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-uk_thumb.png icons/113_hmip-psm-uk_thumb.png image/png 2019-05-27 21:42:33.114 - info: iobroker upload [18] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-pe_thumb.png icons/113_hmip-psm-pe_thumb.png image/png 2019-05-27 21:42:33.170 - info: iobroker upload [17] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-it_thumb.png icons/113_hmip-psm-it_thumb.png image/png 2019-05-27 21:42:33.228 - info: iobroker upload [16] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-ch_thumb.png icons/113_hmip-psm-ch_thumb.png image/png 2019-05-27 21:42:33.287 - info: iobroker upload [15] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/112_hmip-wrc2_thumb.png icons/112_hmip-wrc2_thumb.png image/png 2019-05-27 21:42:33.347 - info: iobroker upload [14] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/111_hm-lc-rgbw-wm_thumb.png icons/111_hm-lc-rgbw-wm_thumb.png image/png 2019-05-27 21:42:33.403 - info: iobroker upload [13] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/110_hm-es-pmsw1-dr_thump.png icons/110_hm-es-pmsw1-dr_thump.png image/png 2019-05-27 21:42:33.461 - info: iobroker upload [12] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/109_hm-lc-sw1-pl-ct_thump.png icons/109_hm-lc-sw1-pl-ct_thump.png image/png 2019-05-27 21:42:33.519 - info: iobroker upload [11] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/108_hm-rc-dis-h-x-eu_thump.png icons/108_hm-rc-dis-h-x-eu_thump.png image/png 2019-05-27 21:42:33.575 - info: iobroker upload [10] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R5_thumb.png icons/107_hm-es-pmsw1-pl-R5_thumb.png image/png 2019-05-27 21:42:33.631 - info: iobroker upload [9] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R4_thumb.png icons/107_hm-es-pmsw1-pl-R4_thumb.png image/png 2019-05-27 21:42:33.686 - info: iobroker upload [8] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R3_thumb.png icons/107_hm-es-pmsw1-pl-R3_thumb.png image/png 2019-05-27 21:42:33.744 - info: iobroker upload [7] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R2_thumb.png icons/107_hm-es-pmsw1-pl-R2_thumb.png image/png 2019-05-27 21:42:33.800 - info: iobroker upload [6] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/105_hm-sec-sd-2-team_thumb.png icons/105_hm-sec-sd-2-team_thumb.png image/png 2019-05-27 21:42:33.861 - info: iobroker upload [5] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/104_hm-sec-sd-2_thumb.png icons/104_hm-sec-sd-2_thumb.png image/png 2019-05-27 21:42:33.918 - info: iobroker upload [4] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/103_hm-sen-mdir-wm55_thumb.png icons/103_hm-sen-mdir-wm55_thumb.png image/png 2019-05-27 21:42:33.975 - info: iobroker upload [3] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/102_hm-es-tx-wm_thumb.png icons/102_hm-es-tx-wm_thumb.png image/png 2019-05-27 21:42:34.032 - info: iobroker upload [2] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/101_hm-sen-db-pcb_thumb.png icons/101_hm-sen-db-pcb_thumb.png image/png 2019-05-27 21:42:34.089 - info: iobroker upload [1] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/100_hm-rc-8_thumb.png icons/100_hm-rc-8_thumb.png image/png 2019-05-27 21:42:34.145 - info: iobroker upload [0] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/homematic.png homematic.png image/png 2019-05-27 21:42:35.604 - info: iobroker exit 0 2019-05-27 21:43:58.338 - info: host.buanet-iobroker1 object change system.adapter.hm-rega.0 2019-05-27 21:43:58.360 - info: host.buanet-iobroker1 instance system.adapter.hm-rega.0 started with pid 1411 2019-05-27 21:43:59.291 - info: hm-rega.0 starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.hm-rega, node: v8.14.0 2019-05-27 21:43:59.374 - info: hm-rega.0 subscribe hm-rpc.1.BidCoS-RF.50.PRESS_SHORT 2019-05-27 21:43:59.426 - info: hm-rega.0 ReGaHSS 192.168.178.28 up 2019-05-27 21:43:59.465 - info: hm-rega.0 time difference local-ccu 0s 2019-05-27 21:43:59.486 - info: hm-rega.0 added/updated 2 favorites to enum.favorites 2019-05-27 21:43:59.520 - info: hm-rega.0 added/updated functions to enum.functions 2019-05-27 21:43:59.554 - info: hm-rega.0 added/updated rooms to enum.rooms 2019-05-27 21:44:01.072 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.0 2019-05-27 21:44:01.072 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.0" enabled 2019-05-27 21:44:01.091 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.0 started with pid 1434 2019-05-27 21:44:01.174 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-27 21:44:01.185 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-27 21:44:01.188 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-27 21:44:01.192 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-27 21:44:01.196 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-27 21:44:01.201 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-27 21:44:01.206 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-27 21:44:01.213 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-27 21:44:01.218 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-27 21:44:01.224 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-27 21:44:01.260 - info: hm-rega.0 got 226 programs 2019-05-27 21:44:01.402 - info: hm-rega.0 added/updated 226 programs 2019-05-27 21:44:01.402 - info: hm-rega.0 deleted 0 programs 2019-05-27 21:44:02.222 - info: hm-rega.0 got 198 variables 2019-05-27 21:44:02.228 - debug: hm-rpc.0 objectDB connected 2019-05-27 21:44:02.260 - debug: hm-rpc.0 statesDB connected 2019-05-27 21:44:02.346 - info: hm-rega.0 added/updated 198 variables 2019-05-27 21:44:02.347 - info: hm-rega.0 deleted 0 variables 2019-05-27 21:44:02.347 - info: hm-rega.0 request state values 2019-05-27 21:44:02.629 - info: hm-rpc.0 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-27 21:44:02.764 - info: hm-rega.0 got state values 2019-05-27 21:44:04.369 - info: hm-rpc.0 binrpc server is trying to listen on 192.168.178.86:18701 2019-05-27 21:44:04.369 - info: hm-rpc.0 binrpc client is trying to connect to 192.168.178.28:8701/ with ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-05-27 21:44:04.371 - debug: hm-rpc.0 Connect... 2019-05-27 21:44:04.372 - debug: hm-rpc.0 binrpc -> 192.168.178.28:8701/ init ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-05-27 21:44:04.376 - debug: hm-rpc.0 start connecting interval 2019-05-27 21:44:05.377 - info: hm-rpc.0 binrpc -> listDevices 324 2019-05-27 21:44:05.694 - info: hm-rpc.0 new CUxD devices/channels after filter: 0 2019-05-27 21:44:05.704 - info: hm-rpc.0 Connected 2019-05-27 21:44:05.704 - debug: hm-rpc.0 clear connecting interval 2019-05-27 21:44:05.705 - debug: hm-rpc.0 start ping interval 2019-05-27 21:44:05.989 - debug: hm-rpc.0 system.adapter.admin.0: logging false 2019-05-27 21:44:07.588 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-27 21:44:07.591 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-27 21:44:07.594 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-27 21:44:07.597 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-27 21:44:07.601 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-27 21:44:07.605 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-27 21:44:07.609 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-27 21:44:07.612 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-27 21:44:07.616 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-27 21:44:07.619 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-27 21:44:08.432 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-05-27 21:44:08.433 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.1" enabled 2019-05-27 21:44:08.454 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.1 started with pid 1451 2019-05-27 21:44:08.954 - debug: hm-rpc.1 objectDB connected 2019-05-27 21:44:08.987 - debug: hm-rpc.1 statesDB connected 2019-05-27 21:44:09.104 - info: hm-rpc.1 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-27 21:44:09.415 - info: hm-rpc.1 xmlrpc server is trying to listen on 192.168.178.86:12001 2019-05-27 21:44:09.416 - info: hm-rpc.1 xmlrpc client is trying to connect to 192.168.178.28:2001/ with ["http://192.168.178.86:12001","hm-rpc.1"] 2019-05-27 21:44:09.417 - debug: hm-rpc.1 Connect... 2019-05-27 21:44:09.417 - debug: hm-rpc.1 xmlrpc -> 192.168.178.28:2001/ init ["http://192.168.178.86:12001","hm-rpc.1"] 2019-05-27 21:44:09.422 - debug: hm-rpc.1 start connecting interval 2019-05-27 21:44:09.440 - info: hm-rpc.1 xmlrpc <- system.listMethods ["hm-rpc.1"] 2019-05-27 21:44:09.447 - info: hm-rpc.1 xmlrpc <- listDevices ["hm-rpc.1"] 2019-05-27 21:44:09.469 - info: hm-rpc.1 xmlrpc -> 235 devices 2019-05-27 21:44:09.576 - info: hm-rpc.1 xmlrpc <- newDevices 10 2019-05-27 21:44:09.586 - info: hm-rpc.1 Connected 2019-05-27 21:44:09.587 - debug: hm-rpc.1 clear connecting interval 2019-05-27 21:44:09.587 - debug: hm-rpc.1 start ping interval 2019-05-27 21:44:09.590 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8 created 2019-05-27 21:44:09.595 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7 created 2019-05-27 21:44:09.597 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6 created 2019-05-27 21:44:09.600 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5 created 2019-05-27 21:44:09.602 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4 created 2019-05-27 21:44:09.605 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3 created 2019-05-27 21:44:09.607 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2 created 2019-05-27 21:44:09.610 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1 created 2019-05-27 21:44:09.612 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0 created 2019-05-27 21:44:09.615 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636 created 2019-05-27 21:44:09.616 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11 2019-05-27 21:44:09.619 - info: hm-rpc.1 xmlrpc -> getParamsetDescription ["NEQ0711636:0","VALUES"] 2019-05-27 21:44:09.647 - debug: hm-rpc.1 [EPAPER] Create Epaper because of no paramset cache hit and no meta hit 2019-05-27 21:44:09.648 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 9 with {} 2019-05-27 21:44:09.648 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 10 with {} 2019-05-27 21:44:09.648 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 11 with {} 2019-05-27 21:44:09.649 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta for version 12 with {} 2019-05-27 21:44:09.649 - warn: hm-rpc.1 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.MAINTENANCE.11" 2019-05-27 21:44:09.649 - warn: hm-rpc.1 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"AES_KEY":{"DEFAULT":0,"FLAGS":0,"ID":"AES_KEY","MAX":127,"MIN":0,"OPERATIONS":1,"TAB_ORDER":8,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"DEVICE_IN_BOOTLOADER":{"DEFAULT":false,"FLAGS":9,"ID":"DEVICE_IN_BOOTLOADER","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":6,"TYPE":"BOOL","UNIT":""},"LOWBAT":{"DEFAULT":false,"FLAGS":9,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"BOOL","UNIT":""},"RSSI_DEVICE":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_DEVICE","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"INTEGER","UNIT":""},"STICKY_UNREACH":{"DEFAULT":false,"FLAGS":25,"ID":"STICKY_UNREACH","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"UNREACH":{"DEFAULT":false,"FLAGS":9,"ID":"UNREACH","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"UPDATE_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"UPDATE_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":7,"TYPE":"BOOL","UNIT":""}}} 2019-05-27 21:44:09.675 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.AES_KEY extended 2019-05-27 21:44:09.675 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.CONFIG_PENDING extended 2019-05-27 21:44:09.675 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.DEVICE_IN_BOOTLOADER extended 2019-05-27 21:44:09.676 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.LOWBAT extended 2019-05-27 21:44:09.676 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.RSSI_DEVICE extended 2019-05-27 21:44:09.677 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.RSSI_PEER extended 2019-05-27 21:44:09.677 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.STICKY_UNREACH extended 2019-05-27 21:44:09.678 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.UNREACH extended 2019-05-27 21:44:09.678 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.UPDATE_PENDING extended 2019-05-27 21:44:09.679 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.680 - info: hm-rpc.1 xmlrpc -> getParamsetDescription ["NEQ0711636:1","VALUES"] 2019-05-27 21:44:09.699 - warn: hm-rpc.1 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11" 2019-05-27 21:44:09.700 - warn: hm-rpc.1 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":2,"TYPE":"ACTION","UNIT":""},"PRESS_CONT":{"DEFAULT":false,"FLAGS":3,"ID":"PRESS_CONT","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"PRESS_LONG":{"CONTROL":"BUTTON.LONG","DEFAULT":false,"FLAGS":1,"ID":"PRESS_LONG","MAX":true,"MIN":false,"OPERATIONS":6,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"PRESS_LONG_RELEASE":{"DEFAULT":false,"FLAGS":3,"ID":"PRESS_LONG_RELEASE","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"PRESS_SHORT":{"CONTROL":"BUTTON.SHORT","DEFAULT":false,"FLAGS":1,"ID":"PRESS_SHORT","MAX":true,"MIN":false,"OPERATIONS":6,"TAB_ORDER":0,"TYPE":"ACTION","UNIT":""}}} 2019-05-27 21:44:09.715 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.INSTALL_TEST extended 2019-05-27 21:44:09.715 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_CONT extended 2019-05-27 21:44:09.716 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG extended 2019-05-27 21:44:09.716 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.716 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_SHORT extended 2019-05-27 21:44:09.716 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.718 - debug: hm-rpc.1 hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11 found 2019-05-27 21:44:09.721 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.INSTALL_TEST extended 2019-05-27 21:44:09.725 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_CONT extended 2019-05-27 21:44:09.726 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG extended 2019-05-27 21:44:09.726 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.726 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_SHORT extended 2019-05-27 21:44:09.727 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.727 - debug: hm-rpc.1 paramset cache hit 2019-05-27 21:44:09.731 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.INSTALL_TEST extended 2019-05-27 21:44:09.732 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_CONT extended 2019-05-27 21:44:09.734 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG extended 2019-05-27 21:44:09.735 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.735 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_SHORT extended 2019-05-27 21:44:09.736 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.736 - debug: hm-rpc.1 paramset cache hit 2019-05-27 21:44:09.740 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.INSTALL_TEST extended 2019-05-27 21:44:09.742 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_CONT extended 2019-05-27 21:44:09.743 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG extended 2019-05-27 21:44:09.746 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.747 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_SHORT extended 2019-05-27 21:44:09.747 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.747 - debug: hm-rpc.1 paramset cache hit 2019-05-27 21:44:09.750 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.INSTALL_TEST extended 2019-05-27 21:44:09.756 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_CONT extended 2019-05-27 21:44:09.757 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG extended 2019-05-27 21:44:09.758 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.758 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_SHORT extended 2019-05-27 21:44:09.759 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.759 - debug: hm-rpc.1 paramset cache hit 2019-05-27 21:44:09.763 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.INSTALL_TEST extended 2019-05-27 21:44:09.767 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_CONT extended 2019-05-27 21:44:09.768 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG extended 2019-05-27 21:44:09.768 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.768 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_SHORT extended 2019-05-27 21:44:09.768 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.768 - debug: hm-rpc.1 paramset cache hit 2019-05-27 21:44:09.774 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.INSTALL_TEST extended 2019-05-27 21:44:09.776 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_CONT extended 2019-05-27 21:44:09.778 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG extended 2019-05-27 21:44:09.778 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.779 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_SHORT extended 2019-05-27 21:44:09.779 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-05-27 21:44:09.779 - debug: hm-rpc.1 paramset cache hit 2019-05-27 21:44:09.788 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.INSTALL_TEST extended 2019-05-27 21:44:09.790 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_CONT extended 2019-05-27 21:44:09.790 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG extended 2019-05-27 21:44:09.791 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE extended 2019-05-27 21:44:09.791 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_SHORT extended 2019-05-27 21:44:11.909 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_SHORT to "Display Flur EG:8.PRESS_SHORT" 2019-05-27 21:44:11.914 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE to "Display Flur EG:8.PRESS_LONG_RELEASE" 2019-05-27 21:44:11.918 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG to "Display Flur EG:8.PRESS_LONG" 2019-05-27 21:44:11.922 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_CONT to "Display Flur EG:8.PRESS_CONT" 2019-05-27 21:44:11.924 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.INSTALL_TEST to "Display Flur EG:8.INSTALL_TEST" 2019-05-27 21:44:11.927 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-05-27 21:44:11.931 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_SHORT to "Display Flur EG:7.PRESS_SHORT" 2019-05-27 21:44:11.934 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE to "Display Flur EG:7.PRESS_LONG_RELEASE" 2019-05-27 21:44:11.938 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG to "Display Flur EG:7.PRESS_LONG" 2019-05-27 21:44:11.941 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_CONT to "Display Flur EG:7.PRESS_CONT" 2019-05-27 21:44:11.944 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.INSTALL_TEST to "Display Flur EG:7.INSTALL_TEST" 2019-05-27 21:44:11.949 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-05-27 21:44:11.954 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_SHORT to "Display Flur EG:6.PRESS_SHORT" 2019-05-27 21:44:11.959 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE to "Display Flur EG:6.PRESS_LONG_RELEASE" 2019-05-27 21:44:11.963 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG to "Display Flur EG:6.PRESS_LONG" 2019-05-27 21:44:11.968 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_CONT to "Display Flur EG:6.PRESS_CONT" 2019-05-27 21:44:11.973 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.INSTALL_TEST to "Display Flur EG:6.INSTALL_TEST" 2019-05-27 21:44:11.977 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-05-27 21:44:11.982 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_SHORT to "Display Flur EG:5.PRESS_SHORT" 2019-05-27 21:44:11.986 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE to "Display Flur EG:5.PRESS_LONG_RELEASE" 2019-05-27 21:44:11.989 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG to "Display Flur EG:5.PRESS_LONG" 2019-05-27 21:44:11.993 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_CONT to "Display Flur EG:5.PRESS_CONT" 2019-05-27 21:44:11.998 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.INSTALL_TEST to "Display Flur EG:5.INSTALL_TEST" 2019-05-27 21:44:12.002 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-05-27 21:44:12.006 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_SHORT to "Display Flur EG:4.PRESS_SHORT" 2019-05-27 21:44:12.010 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE to "Display Flur EG:4.PRESS_LONG_RELEASE" 2019-05-27 21:44:12.014 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG to "Display Flur EG:4.PRESS_LONG" 2019-05-27 21:44:12.017 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_CONT to "Display Flur EG:4.PRESS_CONT" 2019-05-27 21:44:12.023 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.INSTALL_TEST to "Display Flur EG:4.INSTALL_TEST" 2019-05-27 21:44:12.027 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-05-27 21:44:12.031 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_SHORT to "Display Flur EG:3.PRESS_SHORT" 2019-05-27 21:44:12.035 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE to "Display Flur EG:3.PRESS_LONG_RELEASE" 2019-05-27 21:44:12.038 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG to "Display Flur EG:3.PRESS_LONG" 2019-05-27 21:44:12.042 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_CONT to "Display Flur EG:3.PRESS_CONT" 2019-05-27 21:44:12.047 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.INSTALL_TEST to "Display Flur EG:3.INSTALL_TEST" 2019-05-27 21:44:12.051 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-05-27 21:44:12.055 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_SHORT to "Display Flur EG:2.PRESS_SHORT" 2019-05-27 21:44:12.059 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE to "Display Flur EG:2.PRESS_LONG_RELEASE" 2019-05-27 21:44:12.062 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG to "Display Flur EG:2.PRESS_LONG" 2019-05-27 21:44:12.066 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_CONT to "Display Flur EG:2.PRESS_CONT" 2019-05-27 21:44:12.069 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.INSTALL_TEST to "Display Flur EG:2.INSTALL_TEST" 2019-05-27 21:44:12.072 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-05-27 21:44:12.076 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_SHORT to "Display Flur EG:1.PRESS_SHORT" 2019-05-27 21:44:12.080 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE to "Display Flur EG:1.PRESS_LONG_RELEASE" 2019-05-27 21:44:12.084 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG to "Display Flur EG:1.PRESS_LONG" 2019-05-27 21:44:12.087 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_CONT to "Display Flur EG:1.PRESS_CONT" 2019-05-27 21:44:12.091 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.INSTALL_TEST to "Display Flur EG:1.INSTALL_TEST" 2019-05-27 21:44:12.094 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-05-27 21:44:12.098 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.UPDATE_PENDING to "Display Flur EG:0.UPDATE_PENDING" 2019-05-27 21:44:12.102 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.UNREACH to "Display Flur EG:0.UNREACH" 2019-05-27 21:44:12.106 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.STICKY_UNREACH to "Display Flur EG:0.STICKY_UNREACH" 2019-05-27 21:44:12.110 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.RSSI_PEER to "Display Flur EG:0.RSSI_PEER" 2019-05-27 21:44:12.115 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.RSSI_DEVICE to "Display Flur EG:0.RSSI_DEVICE" 2019-05-27 21:44:12.119 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.LOWBAT to "Display Flur EG:0.LOWBAT" 2019-05-27 21:44:12.123 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.DEVICE_IN_BOOTLOADER to "Display Flur EG:0.DEVICE_IN_BOOTLOADER" 2019-05-27 21:44:12.127 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.CONFIG_PENDING to "Display Flur EG:0.CONFIG_PENDING" 2019-05-27 21:44:12.130 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.AES_KEY to "Display Flur EG:0.AES_KEY" 2019-05-27 21:44:12.133 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-05-27 21:44:12.137 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-05-27 21:44:12.728 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-05-27 21:44:12.728 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.2" enabled 2019-05-27 21:44:12.751 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.2 started with pid 1463 2019-05-27 21:44:13.264 - debug: hm-rpc.2 objectDB connected 2019-05-27 21:44:13.297 - debug: hm-rpc.2 statesDB connected 2019-05-27 21:44:13.413 - info: hm-rpc.2 starting. Version 1.9.11 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-05-27 21:44:13.709 - info: hm-rpc.2 xmlrpc server is trying to listen on 192.168.178.86:12010 2019-05-27 21:44:13.710 - info: hm-rpc.2 xmlrpc client is trying to connect to 192.168.178.28:2010/ with ["http://192.168.178.86:12010","hm-rpc.2"] 2019-05-27 21:44:13.711 - debug: hm-rpc.2 Connect... 2019-05-27 21:44:13.711 - debug: hm-rpc.2 xmlrpc -> 192.168.178.28:2010/ init ["http://192.168.178.86:12010","hm-rpc.2"] 2019-05-27 21:44:13.716 - debug: hm-rpc.2 start connecting interval 2019-05-27 21:44:13.739 - info: hm-rpc.2 Connected 2019-05-27 21:44:13.740 - debug: hm-rpc.2 clear connecting interval 2019-05-27 21:44:13.740 - debug: hm-rpc.2 start ping interval 2019-05-27 21:44:13.757 - info: hm-rpc.2 xmlrpc <- listDevices ["hm-rpc.2"] 2019-05-27 21:44:13.780 - info: hm-rpc.2 xmlrpc -> 0 devices 2019-05-27 21:44:14.669 - info: hm-rpc.2 xmlrpc <- newDevices 303 2019-05-27 21:44:14.703 - info: hm-rpc.2 new HmIP devices/channels after filter: 0 2019-05-27 21:44:17.775 - debug: hm-rpc.0 system.adapter.admin.0: logging true 2019-05-27 21:44:17.776 - debug: hm-rpc.1 system.adapter.admin.0: logging true 2019-05-27 21:44:17.776 - debug: hm-rpc.2 system.adapter.admin.0: logging true 2019-05-27 21:44:22.169 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ0538725:1,BRIGHTNESS,33 2019-05-27 21:44:22.170 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ0538725:1","BRIGHTNESS",33] 2019-05-27 21:44:22.170 - debug: hm-rpc.1 hm-rpc.1.MEQ0538725.1.BRIGHTNESS ==> UNIT: "" (min: 0, max: 255) From "33" => "33" 2019-05-27 21:44:22.179 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ0538725:1,ERROR,0 2019-05-27 21:44:22.179 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ0538725:1","ERROR",0] 2019-05-27 21:44:22.179 - debug: hm-rpc.1 hm-rpc.1.MEQ0538725.1.ERROR ==> UNIT: "" (min: 0, max: 7) From "0" => "0" 2019-05-27 21:44:23.300 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,CONFIG_PENDING,false 2019-05-27 21:44:23.301 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","CONFIG_PENDING",false] 2019-05-27 21:44:23.302 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.302 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,RSSI_DEVICE,-58 2019-05-27 21:44:23.303 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","RSSI_DEVICE",-58] 2019-05-27 21:44:23.303 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-58" => "-58" 2019-05-27 21:44:23.303 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,DUTY_CYCLE,false 2019-05-27 21:44:23.303 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","DUTY_CYCLE",false] 2019-05-27 21:44:23.303 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.DUTY_CYCLE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.304 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,UNREACH,false 2019-05-27 21:44:23.304 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","UNREACH",false] 2019-05-27 21:44:23.304 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.317 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:2,SECTION_STATUS,0 2019-05-27 21:44:23.317 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:2","SECTION_STATUS",0] 2019-05-27 21:44:23.317 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.2.SECTION_STATUS ==> UNIT: "undefined" (min: NORMAL, max: UNKNOWN) From "0" => "0" 2019-05-27 21:44:23.317 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:2,STATE,false 2019-05-27 21:44:23.317 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:2","STATE",false] 2019-05-27 21:44:23.317 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.2.STATE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.318 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:2,SECTION,0 2019-05-27 21:44:23.318 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:2","SECTION",0] 2019-05-27 21:44:23.318 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.2.SECTION ==> UNIT: "undefined" (min: 0, max: 15) From "0" => "0" 2019-05-27 21:44:23.318 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:2,PROCESS,0 2019-05-27 21:44:23.318 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:2","PROCESS",0] 2019-05-27 21:44:23.318 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.2.PROCESS ==> UNIT: "undefined" (min: STABLE, max: NOT_STABLE) From "0" => "0" 2019-05-27 21:44:23.331 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:3,SECTION_STATUS,0 2019-05-27 21:44:23.331 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:3","SECTION_STATUS",0] 2019-05-27 21:44:23.331 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.3.SECTION_STATUS ==> UNIT: "undefined" (min: NORMAL, max: UNKNOWN) From "0" => "0" 2019-05-27 21:44:23.332 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:3,STATE,false 2019-05-27 21:44:23.332 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:3","STATE",false] 2019-05-27 21:44:23.332 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.3.STATE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.332 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:3,SECTION,0 2019-05-27 21:44:23.332 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:3","SECTION",0] 2019-05-27 21:44:23.332 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.3.SECTION ==> UNIT: "undefined" (min: 0, max: 15) From "0" => "0" 2019-05-27 21:44:23.333 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:3,PROCESS,0 2019-05-27 21:44:23.333 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:3","PROCESS",0] 2019-05-27 21:44:23.333 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.3.PROCESS ==> UNIT: "undefined" (min: STABLE, max: NOT_STABLE) From "0" => "0" 2019-05-27 21:44:23.347 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:4,SECTION_STATUS,0 2019-05-27 21:44:23.347 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:4","SECTION_STATUS",0] 2019-05-27 21:44:23.347 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.4.SECTION_STATUS ==> UNIT: "undefined" (min: NORMAL, max: UNKNOWN) From "0" => "0" 2019-05-27 21:44:23.348 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:4,STATE,false 2019-05-27 21:44:23.348 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:4","STATE",false] 2019-05-27 21:44:23.348 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.4.STATE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.348 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:4,SECTION,0 2019-05-27 21:44:23.348 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:4","SECTION",0] 2019-05-27 21:44:23.349 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.4.SECTION ==> UNIT: "undefined" (min: 0, max: 15) From "0" => "0" 2019-05-27 21:44:23.349 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:4,PROCESS,0 2019-05-27 21:44:23.349 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:4","PROCESS",0] 2019-05-27 21:44:23.349 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.4.PROCESS ==> UNIT: "undefined" (min: STABLE, max: NOT_STABLE) From "0" => "0" 2019-05-27 21:44:23.359 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:5,SECTION_STATUS,0 2019-05-27 21:44:23.359 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:5","SECTION_STATUS",0] 2019-05-27 21:44:23.359 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.5.SECTION_STATUS ==> UNIT: "undefined" (min: NORMAL, max: UNKNOWN) From "0" => "0" 2019-05-27 21:44:23.360 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:5,STATE,false 2019-05-27 21:44:23.360 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:5","STATE",false] 2019-05-27 21:44:23.360 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.5.STATE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.360 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:5,SECTION,0 2019-05-27 21:44:23.361 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:5","SECTION",0] 2019-05-27 21:44:23.361 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.5.SECTION ==> UNIT: "undefined" (min: 0, max: 15) From "0" => "0" 2019-05-27 21:44:23.361 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:5,PROCESS,0 2019-05-27 21:44:23.361 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:5","PROCESS",0] 2019-05-27 21:44:23.361 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.5.PROCESS ==> UNIT: "undefined" (min: STABLE, max: NOT_STABLE) From "0" => "0" 2019-05-27 21:44:23.453 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,CONFIG_PENDING,false 2019-05-27 21:44:23.453 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","CONFIG_PENDING",false] 2019-05-27 21:44:23.454 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.454 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,RSSI_DEVICE,-58 2019-05-27 21:44:23.454 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","RSSI_DEVICE",-58] 2019-05-27 21:44:23.454 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-58" => "-58" 2019-05-27 21:44:23.455 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,DUTY_CYCLE,false 2019-05-27 21:44:23.455 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","DUTY_CYCLE",false] 2019-05-27 21:44:23.455 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.DUTY_CYCLE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.455 - debug: hm-rpc.2 xml multicall : hm-rpc.2,00021709A0ED02:0,UNREACH,false 2019-05-27 21:44:23.455 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:0","UNREACH",false] 2019-05-27 21:44:23.456 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:23.472 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","00021709A0ED02:6","WEEK_PROGRAM_CHANNEL_LOCKS",0] 2019-05-27 21:44:23.473 - debug: hm-rpc.2 hm-rpc.2.00021709A0ED02.6.WEEK_PROGRAM_CHANNEL_LOCKS ==> UNIT: "undefined" (min: 0, max: 16777215) From "0" => "0" 2019-05-27 21:44:55.727 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,SABOTAGE,false 2019-05-27 21:44:55.728 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","SABOTAGE",false] 2019-05-27 21:44:55.728 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.SABOTAGE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:55.728 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,CONFIG_PENDING,false 2019-05-27 21:44:55.728 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","CONFIG_PENDING",false] 2019-05-27 21:44:55.729 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:55.729 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,DUTY_CYCLE,false 2019-05-27 21:44:55.729 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","DUTY_CYCLE",false] 2019-05-27 21:44:55.729 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.DUTY_CYCLE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:55.730 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,LOW_BAT,false 2019-05-27 21:44:55.730 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","LOW_BAT",false] 2019-05-27 21:44:55.730 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.LOW_BAT ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:55.731 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,UNREACH,false 2019-05-27 21:44:55.731 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","UNREACH",false] 2019-05-27 21:44:55.731 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:44:55.731 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,RSSI_DEVICE,-73 2019-05-27 21:44:55.731 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","RSSI_DEVICE",-73] 2019-05-27 21:44:55.731 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-73" => "-73" 2019-05-27 21:44:55.731 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,OPERATING_VOLTAGE_STATUS,0 2019-05-27 21:44:55.731 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","OPERATING_VOLTAGE_STATUS",0] 2019-05-27 21:44:55.731 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.OPERATING_VOLTAGE_STATUS ==> UNIT: "undefined" (min: NORMAL, max: OVERFLOW) From "0" => "0" 2019-05-27 21:44:55.732 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,OPERATING_VOLTAGE,1.3 2019-05-27 21:44:55.732 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","OPERATING_VOLTAGE",1.3] 2019-05-27 21:44:55.732 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.OPERATING_VOLTAGE ==> UNIT: "undefined" (min: 0, max: 25.2) From "1.3" => "1.3" 2019-05-27 21:44:55.732 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C975E:0,ERROR_CODE,0 2019-05-27 21:44:55.732 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:0","ERROR_CODE",0] 2019-05-27 21:44:55.732 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.0.ERROR_CODE ==> UNIT: "undefined" (min: 0, max: 255) From "0" => "0" 2019-05-27 21:44:55.751 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C975E:1","STATE",0] 2019-05-27 21:44:55.751 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C975E.1.STATE ==> UNIT: """" (min: CLOSED, max: OPEN) From "0" => "0" 2019-05-27 21:45:02.941 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,TEMPERATURE,15.1 2019-05-27 21:45:02.941 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","TEMPERATURE",15.1] 2019-05-27 21:45:02.941 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.TEMPERATURE ==> UNIT: "�C" (min: -40, max: 80) From "15.1" => "15.1" 2019-05-27 21:45:02.955 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,HUMIDITY,78 2019-05-27 21:45:02.955 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","HUMIDITY",78] 2019-05-27 21:45:02.955 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.HUMIDITY ==> UNIT: "%" (min: 0, max: 100) From "78" => "78" 2019-05-27 21:45:02.956 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,RAINING,false 2019-05-27 21:45:02.956 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","RAINING",false] 2019-05-27 21:45:02.956 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.RAINING ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:45:02.957 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,RAIN_COUNTER,42.775 2019-05-27 21:45:02.957 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","RAIN_COUNTER",42.775] 2019-05-27 21:45:02.957 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.RAIN_COUNTER ==> UNIT: "mm" (min: 0, max: 9666.264999) From "42.775" => "42.775" 2019-05-27 21:45:02.957 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,WIND_SPEED,6.1 2019-05-27 21:45:02.957 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","WIND_SPEED",6.1] 2019-05-27 21:45:02.957 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.WIND_SPEED ==> UNIT: "km/h" (min: 0, max: 1638.299999) From "6.1" => "6.1" 2019-05-27 21:45:02.958 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,WIND_DIRECTION,135 2019-05-27 21:45:02.958 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","WIND_DIRECTION",135] 2019-05-27 21:45:02.959 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.WIND_DIRECTION ==> UNIT: "degree" (min: 0, max: 355) From "135" => "135" 2019-05-27 21:45:02.959 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,WIND_DIRECTION_RANGE,67 2019-05-27 21:45:02.959 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","WIND_DIRECTION_RANGE",67] 2019-05-27 21:45:02.959 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.WIND_DIRECTION_RANGE ==> UNIT: "degree" (min: 0, max: 67) From "67" => "67" 2019-05-27 21:45:02.959 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,SUNSHINEDURATION,6 2019-05-27 21:45:02.960 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","SUNSHINEDURATION",6] 2019-05-27 21:45:02.960 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.SUNSHINEDURATION ==> UNIT: "" (min: 0, max: 255) From "6" => "6" 2019-05-27 21:45:02.960 - debug: hm-rpc.1 xml multicall : hm-rpc.1,OEQ1864679:1,BRIGHTNESS,0 2019-05-27 21:45:02.960 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","OEQ1864679:1","BRIGHTNESS",0] 2019-05-27 21:45:02.960 - debug: hm-rpc.1 hm-rpc.1.OEQ1864679.1.BRIGHTNESS ==> UNIT: "" (min: 0, max: 255) From "0" => "0" 2019-05-27 21:45:30.067 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,CONFIG_PENDING,false 2019-05-27 21:45:30.068 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","CONFIG_PENDING",false] 2019-05-27 21:45:30.068 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:45:30.068 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,UNREACH,false 2019-05-27 21:45:30.068 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","UNREACH",false] 2019-05-27 21:45:30.068 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:45:30.069 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,RSSI_DEVICE,-65 2019-05-27 21:45:30.069 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","RSSI_DEVICE",-65] 2019-05-27 21:45:30.069 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-65" => "-65" 2019-05-27 21:45:35.709 - debug: hm-rpc.0 [KEEPALIVE] Check if connection is alive 2019-05-27 21:45:35.710 - debug: hm-rpc.0 Send PING... 2019-05-27 21:45:35.717 - debug: hm-rpc.0 PING ok 2019-05-27 21:45:35.725 - debug: hm-rpc.0 bin multicall : CUxD,CENTRAL,PONG,hm-rpc.0 2019-05-27 21:45:35.726 - debug: hm-rpc.0 binrpc <- event ["CUxD","CENTRAL","PONG","hm-rpc.0"] 2019-05-27 21:45:35.726 - debug: hm-rpc.0 hm-rpc.0.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.0" => "hm-rpc.0" 2019-05-27 21:45:39.588 - debug: hm-rpc.1 [KEEPALIVE] Check if connection is alive 2019-05-27 21:45:39.589 - debug: hm-rpc.1 Send PING... 2019-05-27 21:45:39.597 - debug: hm-rpc.1 PING ok 2019-05-27 21:45:39.601 - debug: hm-rpc.1 xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1 2019-05-27 21:45:39.602 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"] 2019-05-27 21:45:39.602 - debug: hm-rpc.1 hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1" 2019-05-27 21:45:43.741 - debug: hm-rpc.2 [KEEPALIVE] Check if connection is alive 2019-05-27 21:45:43.742 - debug: hm-rpc.2 Send PING... 2019-05-27 21:45:43.764 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","CENTRAL:0","PONG","hm-rpc.2"] 2019-05-27 21:45:43.764 - debug: hm-rpc.2 hm-rpc.2.CENTRAL.0.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.2" => "hm-rpc.2" 2019-05-27 21:45:43.767 - debug: hm-rpc.2 PING ok 2019-05-27 21:46:07.900 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:1,TEMPERATURE,35 2019-05-27 21:46:07.900 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:1","TEMPERATURE",35] 2019-05-27 21:46:07.900 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.1.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "35" => "35" 2019-05-27 21:46:07.919 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:2,TEMPERATURE,36.2 2019-05-27 21:46:07.919 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:2","TEMPERATURE",36.2] 2019-05-27 21:46:07.920 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.2.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "36.2" => "36.2" 2019-05-27 21:46:07.920 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:3,TEMPERATURE,-1.2 2019-05-27 21:46:07.920 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:3","TEMPERATURE",-1.2] 2019-05-27 21:46:07.920 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.3.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "-1.2" => "-1.2" 2019-05-27 21:46:07.920 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:4,TEMPERATURE,1.2 2019-05-27 21:46:07.920 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:4","TEMPERATURE",1.2] 2019-05-27 21:46:07.920 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.4.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "1.2" => "1.2" 2019-05-27 21:46:07.920 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:0,LOWBAT,false 2019-05-27 21:46:07.921 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:0","LOWBAT",false] 2019-05-27 21:46:07.921 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.0.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:07.923 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:1,LOWBAT,false 2019-05-27 21:46:07.923 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:1","LOWBAT",false] 2019-05-27 21:46:07.924 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.1.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:07.924 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:2,LOWBAT,false 2019-05-27 21:46:07.924 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:2","LOWBAT",false] 2019-05-27 21:46:07.924 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.2.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:07.924 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:3,LOWBAT,false 2019-05-27 21:46:07.924 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:3","LOWBAT",false] 2019-05-27 21:46:07.924 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.3.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:07.925 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:4,LOWBAT,false 2019-05-27 21:46:07.925 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:4","LOWBAT",false] 2019-05-27 21:46:07.925 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.4.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:07.925 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:5,LOWBAT,false 2019-05-27 21:46:07.925 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:5","LOWBAT",false] 2019-05-27 21:46:07.925 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.5.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:24.256 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,CONFIG_PENDING,false 2019-05-27 21:46:24.256 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","CONFIG_PENDING",false] 2019-05-27 21:46:24.256 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:24.257 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,UNREACH,false 2019-05-27 21:46:24.257 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","UNREACH",false] 2019-05-27 21:46:24.257 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:24.257 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000313C9906E35:0,RSSI_DEVICE,-44 2019-05-27 21:46:24.257 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000313C9906E35:0","RSSI_DEVICE",-44] 2019-05-27 21:46:24.257 - debug: hm-rpc.2 hm-rpc.2.000313C9906E35.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-44" => "-44" 2019-05-27 21:46:27.744 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,SABOTAGE,false 2019-05-27 21:46:27.744 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","SABOTAGE",false] 2019-05-27 21:46:27.744 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.SABOTAGE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:27.745 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,CONFIG_PENDING,false 2019-05-27 21:46:27.745 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","CONFIG_PENDING",false] 2019-05-27 21:46:27.745 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:27.745 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,DUTY_CYCLE,false 2019-05-27 21:46:27.746 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","DUTY_CYCLE",false] 2019-05-27 21:46:27.746 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.DUTY_CYCLE ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:27.746 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,LOW_BAT,false 2019-05-27 21:46:27.746 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","LOW_BAT",false] 2019-05-27 21:46:27.746 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.LOW_BAT ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:27.746 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,UNREACH,false 2019-05-27 21:46:27.746 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","UNREACH",false] 2019-05-27 21:46:27.747 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-05-27 21:46:27.747 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,RSSI_DEVICE,-71 2019-05-27 21:46:27.747 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","RSSI_DEVICE",-71] 2019-05-27 21:46:27.747 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-71" => "-71" 2019-05-27 21:46:27.747 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,OPERATING_VOLTAGE_STATUS,0 2019-05-27 21:46:27.747 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","OPERATING_VOLTAGE_STATUS",0] 2019-05-27 21:46:27.747 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.OPERATING_VOLTAGE_STATUS ==> UNIT: "undefined" (min: NORMAL, max: OVERFLOW) From "0" => "0" 2019-05-27 21:46:27.747 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,OPERATING_VOLTAGE,1.4 2019-05-27 21:46:27.747 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","OPERATING_VOLTAGE",1.4] 2019-05-27 21:46:27.748 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.OPERATING_VOLTAGE ==> UNIT: "undefined" (min: 0, max: 25.2) From "1.4" => "1.4" 2019-05-27 21:46:27.748 - debug: hm-rpc.2 xml multicall : hm-rpc.2,0000D3C98C9772:0,ERROR_CODE,0 2019-05-27 21:46:27.748 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:0","ERROR_CODE",0] 2019-05-27 21:46:27.748 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.0.ERROR_CODE ==> UNIT: "undefined" (min: 0, max: 255) From "0" => "0" 2019-05-27 21:46:27.766 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","0000D3C98C9772:1","STATE",1] 2019-05-27 21:46:27.766 - debug: hm-rpc.2 hm-rpc.2.0000D3C98C9772.1.STATE ==> UNIT: """" (min: CLOSED, max: OPEN) From "1" => "1"

foxriver76 commented 5 years ago

Perfekt, schlimm sind die Warnings nicht, sind nur Meta-Daten die dann zukünftig nicht extra bei der CCU abegefragt werden müssen, wenn sie im Adapter integriert sind.

Knallochse commented 5 years ago

Hab vielen Dank. Ich zieh den Hut vor deinem können.

foxriver76 commented 5 years ago

Danke für deine Geduld und das Testen.

intruder7777 commented 5 years ago

Hallo, und wo sind jetzt bitte die Datenpunkte für die einzelnen Zeilen, Icons, Signale und so weiter?? Die sind wichtig und bei mir nicht mehr vorhanden.

intruder7777 commented 5 years ago

image auch fehlen hier im Vergleich zu Knallochse einige Punkte. Habe alles probiert. Adapter Neustart nach Löschen der Objekte und auch bei Homematic abgelernt und wieder angelernt.

foxriver76 commented 5 years ago

Debug Log?

intruder7777 commented 5 years ago

Log kommt, sorry fürs späte schreiben

intruder7777 commented 5 years ago
hm-rpc.1 2019-06-03 13:57:41.239 debug object hm-rpc.1.NEQ1464362.8.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:41.238 debug object hm-rpc.1.NEQ1464362.8.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:41.238 debug object hm-rpc.1.NEQ1464362.8.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:41.218 debug object hm-rpc.1.NEQ1464362.8.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:41.218 debug object hm-rpc.1.NEQ1464362.8.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:41.218 debug paramset cache hit
hm-rpc.1 2019-06-03 13:57:41.217 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:41.215 debug object hm-rpc.1.NEQ1464362.7.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:41.184 debug object hm-rpc.1.NEQ1464362.7.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:41.181 debug object hm-rpc.1.NEQ1464362.7.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:41.161 debug object hm-rpc.1.NEQ1464362.7.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:41.153 debug object hm-rpc.1.NEQ1464362.7.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:41.132 debug paramset cache hit
hm-rpc.1 2019-06-03 13:57:41.132 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:41.132 debug object hm-rpc.1.NEQ1464362.6.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:41.129 debug object hm-rpc.1.NEQ1464362.6.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:41.100 debug object hm-rpc.1.NEQ1464362.6.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:41.097 debug object hm-rpc.1.NEQ1464362.6.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:41.075 debug object hm-rpc.1.NEQ1464362.6.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:41.075 debug paramset cache hit
hm-rpc.1 2019-06-03 13:57:41.075 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:41.074 debug object hm-rpc.1.NEQ1464362.5.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:41.074 debug object hm-rpc.1.NEQ1464362.5.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:41.071 debug object hm-rpc.1.NEQ1464362.5.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:41.035 debug object hm-rpc.1.NEQ1464362.5.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:41.035 debug object hm-rpc.1.NEQ1464362.5.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:41.034 debug paramset cache hit
hm-rpc.1 2019-06-03 13:57:41.034 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:41.034 debug object hm-rpc.1.NEQ1464362.4.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:41.033 debug object hm-rpc.1.NEQ1464362.4.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:41.030 debug object hm-rpc.1.NEQ1464362.4.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:40.991 debug object hm-rpc.1.NEQ1464362.4.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:40.991 debug object hm-rpc.1.NEQ1464362.4.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:40.991 debug paramset cache hit
hm-rpc.1 2019-06-03 13:57:40.990 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:40.990 debug object hm-rpc.1.NEQ1464362.3.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:40.989 debug object hm-rpc.1.NEQ1464362.3.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:40.986 debug object hm-rpc.1.NEQ1464362.3.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:40.946 debug object hm-rpc.1.NEQ1464362.3.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:40.946 debug object hm-rpc.1.NEQ1464362.3.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:40.946 debug paramset cache hit
hm-rpc.1 2019-06-03 13:57:40.945 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:40.945 debug object hm-rpc.1.NEQ1464362.2.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:40.944 debug object hm-rpc.1.NEQ1464362.2.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:40.942 debug object hm-rpc.1.NEQ1464362.2.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:40.908 debug object hm-rpc.1.NEQ1464362.2.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:40.908 debug object hm-rpc.1.NEQ1464362.2.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:40.905 debug hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11 found
hm-rpc.1 2019-06-03 13:57:40.877 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:40.876 debug object hm-rpc.1.NEQ1464362.1.PRESS_SHORT extended
hm-rpc.1 2019-06-03 13:57:40.876 debug object hm-rpc.1.NEQ1464362.1.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 13:57:40.874 debug object hm-rpc.1.NEQ1464362.1.PRESS_LONG extended
hm-rpc.1 2019-06-03 13:57:40.857 debug object hm-rpc.1.NEQ1464362.1.PRESS_CONT extended
hm-rpc.1 2019-06-03 13:57:40.854 debug object hm-rpc.1.NEQ1464362.1.INSTALL_TEST extended
hm-rpc.1 2019-06-03 13:57:40.828 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN
hm-rpc.1 2019-06-03 13:57:40.825 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11"
hm-rpc.1 2019-06-03 13:57:40.774 info xmlrpc -> getParamsetDescription ["NEQ1464362:1","VALUES"]
hm-rpc.1 2019-06-03 13:57:40.763 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 13:57:40.763 debug object hm-rpc.1.NEQ1464362.0.UPDATE_PENDING extended
hm-rpc.1 2019-06-03 13:57:40.762 debug object hm-rpc.1.NEQ1464362.0.UNREACH extended
hm-rpc.1 2019-06-03 13:57:40.759 debug object hm-rpc.1.NEQ1464362.0.STICKY_UNREACH extended
hm-rpc.1 2019-06-03 13:57:40.726 debug object hm-rpc.1.NEQ1464362.0.RSSI_PEER extended
hm-rpc.1 2019-06-03 13:57:40.725 debug object hm-rpc.1.NEQ1464362.0.RSSI_DEVICE extended
hm-rpc.1 2019-06-03 13:57:40.725 debug object hm-rpc.1.NEQ1464362.0.LOWBAT extended
hm-rpc.1 2019-06-03 13:57:40.723 debug object hm-rpc.1.NEQ1464362.0.DEVICE_IN_BOOTLOADER extended
hm-rpc.1 2019-06-03 13:57:40.708 debug object hm-rpc.1.NEQ1464362.0.CONFIG_PENDING extended
hm-rpc.1 2019-06-03 13:57:40.705 debug object hm-rpc.1.NEQ1464362.0.AES_KEY extended
hm-rpc.1 2019-06-03 13:57:40.653 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"AES_KEY":{"DEFAULT":0,"FLAGS":0,"ID":"AES_KEY","MAX":127,"MIN":0,"OPERATIONS
hm-rpc.1 2019-06-03 13:57:40.653 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.MAINTENANCE.11"
hm-rpc.1 2019-06-03 13:57:40.652 debug [EPAPER] Add E-Paper to Meta for version 12 with {}
hm-rpc.1 2019-06-03 13:57:40.652 debug [EPAPER] Add E-Paper to Meta for version 11 with {}
hm-rpc.1 2019-06-03 13:57:40.652 debug [EPAPER] Add E-Paper to Meta for version 10 with {}
hm-rpc.1 2019-06-03 13:57:40.649 debug [EPAPER] Add E-Paper to Meta for version 9 with {}
hm-rpc.1 2019-06-03 13:57:40.596 info xmlrpc -> getParamsetDescription ["NEQ1464362:0","VALUES"]
hm-rpc.1 2019-06-03 13:57:40.596 debug getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11
hm-rpc.1 2019-06-03 13:57:40.594 debug object hm-rpc.1.NEQ1464362 created
hm-rpc.1 2019-06-03 13:57:40.575 debug object hm-rpc.1.NEQ1464362.0 created
hm-rpc.1 2019-06-03 13:57:40.564 debug object hm-rpc.1.NEQ1464362.1 created
hm-rpc.1 2019-06-03 13:57:40.554 debug object hm-rpc.1.NEQ1464362.2 created
hm-rpc.1 2019-06-03 13:57:40.535 debug object hm-rpc.1.NEQ1464362.3 created
hm-rpc.1 2019-06-03 13:57:40.517 debug object hm-rpc.1.NEQ1464362.4 created
hm-rpc.1 2019-06-03 13:57:40.507 debug object hm-rpc.1.NEQ1464362.5 created
hm-rpc.1 2019-06-03 13:57:40.497 debug object hm-rpc.1.NEQ1464362.6 created
hm-rpc.1 2019-06-03 13:57:40.425 debug object hm-rpc.1.NEQ1464362.7 created
hm-rpc.1 2019-06-03 13:57:40.424 debug hm-rpc.1.OEQ0662850.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.424 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.424 debug xml multicall : hm-rpc.1,OEQ0662850:0,UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.423 debug hm-rpc.1.OEQ0662850.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.423 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.423 debug xml multicall : hm-rpc.1,OEQ0662850:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.422 debug hm-rpc.1.OEQ0662850.0.CONFIG_PENDING ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.422 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","CONFIG_PENDING",true]
hm-rpc.1 2019-06-03 13:57:40.422 debug xml multicall : hm-rpc.1,OEQ0662850:0,CONFIG_PENDING,true
hm-rpc.1 2019-06-03 13:57:40.421 debug hm-rpc.1.JPSw1CT003.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.421 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT003:0","UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.421 debug xml multicall : hm-rpc.1,JPSw1CT003:0,UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.420 debug hm-rpc.1.JPSw1CT003.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.420 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT003:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.420 debug xml multicall : hm-rpc.1,JPSw1CT003:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.419 debug hm-rpc.1.JPSw1CT002.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.419 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT002:0","UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.419 debug xml multicall : hm-rpc.1,JPSw1CT002:0,UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.418 debug hm-rpc.1.JPSw1CT002.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.418 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT002:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.418 debug xml multicall : hm-rpc.1,JPSw1CT002:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.417 debug hm-rpc.1.JPSw1CT001.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.417 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT001:0","UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.417 debug xml multicall : hm-rpc.1,JPSw1CT001:0,UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.417 debug hm-rpc.1.JPSw1CT001.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:57:40.416 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT001:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 13:57:40.416 debug xml multicall : hm-rpc.1,JPSw1CT001:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 13:57:40.413 debug object hm-rpc.1.NEQ1464362.8 created
hm-rpc.1 2019-06-03 13:57:40.304 debug start ping interval
hm-rpc.1 2019-06-03 13:57:40.304 debug clear connecting interval
hm-rpc.1 2019-06-03 13:57:40.304 info Connected
hm-rpc.1 2019-06-03 13:57:40.301 info xmlrpc <- newDevices 10
hm-rpc.1 2019-06-03 13:57:40.156 info xmlrpc -> 105 devices
hm-rpc.1 2019-06-03 13:57:40.042 info xmlrpc <- listDevices ["hm-rpc.1"]
hm-rpc.1 2019-06-03 13:57:40.026 info xmlrpc <- system.listMethods ["hm-rpc.1"]
hm-rpc.1 2019-06-03 13:57:39.971 debug start connecting interval
hm-rpc.1 2019-06-03 13:57:39.971 debug xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001","hm-rpc.1"]
hm-rpc.1 2019-06-03 13:57:39.970 debug Connect...
hm-rpc.1 2019-06-03 13:57:39.970 info xmlrpc client is trying to connect to 192.168.100.80:2001/ with ["http://192.168.100.85:2001","hm-rpc.1"]
hm-rpc.1 2019-06-03 13:57:39.967 info xmlrpc server is trying to listen on 192.168.100.85:2001
hm-rpc.1 2019-06-03 13:57:39.260 info starting. Version 1.9.12 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v10.16.0
hm-rpc.1 2019-06-03 13:56:40.185 info xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001",""]
hm-rpc.1 2019-06-03 13:56:40.166 info Disconnected
hm-rpc.1 2019-06-03 13:56:40.153 info xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001",""]
hm-rpc.1 2019-06-03 13:56:39.155 debug [MSSG] Received: {"command":"stopInstance","message":null,"from":"system.host.ioBroker-rock64","callback":{"message":null,"id":33,"ack":false,"time":1559562999148},"_id":61046762}
hm-rpc.1 2019-06-03 13:56:35.103 debug hm-rpc.1.NEQ0862883.1.POWER ==> UNIT: "W" (min: 0, max: 167772.149902) From "15" => "15"
hm-rpc.1 2019-06-03 13:56:35.102 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","POWER",15]
hm-rpc.1 2019-06-03 13:56:35.102 debug xml multicall : hm-rpc.1,NEQ0862883:1,POWER,15
hm-rpc.1 2019-06-03 13:56:35.101 debug hm-rpc.1.NEQ0862883.1.ENERGY_COUNTER ==> UNIT: "Wh" (min: 0, max: 838860.699219) From "209267.5" => "209267.5"
hm-rpc.1 2019-06-03 13:56:35.100 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","ENERGY_COUNTER",209267.5]
hm-rpc.1 2019-06-03 13:56:35.099 debug xml multicall : hm-rpc.1,NEQ0862883:1,ENERGY_COUNTER,209267.5
hm-rpc.1 2019-06-03 13:56:35.081 debug hm-rpc.1.NEQ0862883.1.BOOT ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 13:56:35.080 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","BOOT",true]
hm-rpc.1 2019-06-03 13:56:35.079 debug xml multicall : hm-rpc.1,NEQ0862883:1,BOOT,true
hm-rpc.1 2019-06-03 13:56:29.434 debug hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1"
hm-rpc.1 2019-06-03 13:56:29.434 debug xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"]
hm-rpc.1 2019-06-03 13:56:29.418 debug xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1
hm-rpc.1 2019-06-03 13:56:29.410 debug PING ok
hm-rpc.1 2019-06-03 13:56:29.393 debug Send PING...
hm-rpc.1 2019-06-03 13:56:29.392 debug [KEEPALIVE] Check if connection is alive
hm-rpc.1 2019-06-03 13:56:22.194 debug system.adapter.admin.0: logging true
hm-rpc.1 2019-06-03 13:56:05.663 debug system.adapter.admin.0: logging false
hm-rpc.1 2019-06-03 13:55:19.677 debug system.adapter.admin.0: logging true
hm-rpc.1 2019-06-03 13:54:59.413 debug hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1"
hm-rpc.1 2019-06-03 13:54:59.412 debug xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"]
hm-rpc.1 2019-06-03 13:54:59.411 debug xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1
hm-rpc.1 2019-06-03 13:54:59.402 debug PING ok
hm-rpc.1 2019-06-03 13:54:59.392 debug Send PING...
hm-rpc.1 2019-06-03 13:54:59.391 debug [KEEPALIVE] Check if connection is alive
hm-rpc.1 2019-06-03 13:54:48.663 debug hm-rpc.1.OEQ0802171.5.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 13:54:48.662 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:5","LOWBAT",false]
hm-rpc.1 2019-06-03 13:54:48.662 debug xml multicall : hm-rpc.1,OEQ0802171:5,LOWBAT,false
hm-rpc.1 2019-06-03 13:54:48.661 debug hm-rpc.1.OEQ0802171.4.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 13:54:48.660 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:4","LOWBAT",false]
hm-rpc.1 2019-06-03 13:54:48.660 debug xml multicall : hm-rpc.1,OEQ0802171:4,LOWBAT,false
hm-rpc.1 2019-06-03 13:54:48.659 debug hm-rpc.1.OEQ0802171.3.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 13:54:48.659 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:3","LOWBAT",false]
hm-rpc.1 2019-06-03 13:54:48.658 debug xml multicall : hm-rpc.1,OEQ0802171:3,LOWBAT,false
hm-rpc.1 2019-06-03 13:54:48.658 debug hm-rpc.1.OEQ0802171.2.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 13:54:48.657 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:2","LOWBAT",false]
hm-rpc.1 2019-06-03 13:54:48.656 debug xml multicall : hm-rpc.1,OEQ0802171:2,LOWBAT,false
hm-rpc.1 2019-06-03 13:54:48.656 debug hm-rpc.1.OEQ0802171.1.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 13:54:48.655 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","LOWBAT",false]
hm-rpc.1 2019-06-03 13:54:48.654 debug xml multicall : hm-rpc.1,OEQ0802171:1,LOWBAT,false
hm-rpc.1 2019-06-03 13:54:48.653 debug hm-rpc.1.OEQ0802171.0.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 13:54:48.653 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:0","LOWBAT",false]
hm-rpc.1 2019-06-03 13:54:48.652 debug xml multicall : hm-rpc.1,OEQ0802171:0,LOWBAT,false
hm-rpc.1 2019-06-03 13:54:48.651 debug hm-rpc.1.OEQ0802171.4.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "-0.6" => "-0.6"
hm-rpc.1 2019-06-03 13:54:48.650 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:4","TEMPERATURE",-0.6]
hm-rpc.1 2019-06-03 13:54:48.650 debug xml multicall : hm-rpc.1,OEQ0802171:4,TEMPERATURE,-0.6
hm-rpc.1 2019-06-03 13:54:48.649 debug hm-rpc.1.OEQ0802171.3.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "0.6" => "0.6"
hm-rpc.1 2019-06-03 13:54:48.648 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:3","TEMPERATURE",0.6]
hm-rpc.1 2019-06-03 13:54:48.647 debug xml multicall : hm-rpc.1,OEQ0802171:3,TEMPERATURE,0.6
hm-rpc.1 2019-06-03 13:54:48.645 debug hm-rpc.1.OEQ0802171.2.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "23.5" => "23.5"
hm-rpc.1 2019-06-03 13:54:48.644 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:2","TEMPERATURE",23.5]
hm-rpc.1 2019-06-03 13:54:48.644 debug xml multicall : hm-rpc.1,OEQ0802171:2,TEMPERATURE,23.5
hm-rpc.1 2019-06-03 13:54:48.622 debug hm-rpc.1.OEQ0802171.1.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "24.1" => "24.1"
hm-rpc.1 2019-06-03 13:54:48.622 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","TEMPERATURE",24.1]
hm-rpc.1 2019-06-03 13:54:48.621 debug xml multicall : hm-rpc.1,OEQ0802171:1,TEMPERATURE,24.1
hm-rpc.1 2019-06-03 13:54:41.349 debug system.adapter.admin.0: logging false
foxriver76 commented 5 years ago

Danke, habe mal was gepusht. Was es evtl. behebt. Dann bitte nochmal neu anlegen lassen im ioB.

intruder7777 commented 5 years ago

Sieht immernoch genau so aus

intruder7777 commented 5 years ago

image

intruder7777 commented 5 years ago
hm-rpc.1 2019-06-03 15:25:56.187 debug xml multicall : hm-rpc.1,OEQ0802171:2,TEMPERATURE,23.3
hm-rpc.1 2019-06-03 15:25:56.124 debug hm-rpc.1.OEQ0802171.1.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "24" => "24"
hm-rpc.1 2019-06-03 15:25:56.124 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","TEMPERATURE",24]
hm-rpc.1 2019-06-03 15:25:56.122 debug xml multicall : hm-rpc.1,OEQ0802171:1,TEMPERATURE,24
hm-rpc.1 2019-06-03 15:25:27.978 debug hm-rpc.1.NEQ0862915.1.POWER ==> UNIT: "W" (min: 0, max: 167772.149902) From "337" => "337"
hm-rpc.1 2019-06-03 15:25:27.978 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","POWER",337]
hm-rpc.1 2019-06-03 15:25:27.978 debug xml multicall : hm-rpc.1,NEQ0862915:1,POWER,337
hm-rpc.1 2019-06-03 15:25:27.978 debug hm-rpc.1.NEQ0862915.1.ENERGY_COUNTER ==> UNIT: "Wh" (min: 0, max: 838860.699219) From "146772.5" => "146772.5"
hm-rpc.1 2019-06-03 15:25:27.978 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","ENERGY_COUNTER",146772.5]
hm-rpc.1 2019-06-03 15:25:27.978 debug xml multicall : hm-rpc.1,NEQ0862915:1,ENERGY_COUNTER,146772.5
hm-rpc.1 2019-06-03 15:25:27.978 debug hm-rpc.1.NEQ0862915.1.BOOT ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:27.977 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","BOOT",true]
hm-rpc.1 2019-06-03 15:25:27.977 debug xml multicall : hm-rpc.1,NEQ0862915:1,BOOT,true
hm-rpc.1 2019-06-03 15:25:17.694 debug object hm-rpc.1.NEQ1464362.8.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.694 debug object hm-rpc.1.NEQ1464362.8.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.692 debug object hm-rpc.1.NEQ1464362.8.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.669 debug object hm-rpc.1.NEQ1464362.8.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.669 debug object hm-rpc.1.NEQ1464362.8.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.668 debug paramset cache hit
hm-rpc.1 2019-06-03 15:25:17.668 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.668 debug object hm-rpc.1.NEQ1464362.7.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.667 debug object hm-rpc.1.NEQ1464362.7.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.665 debug object hm-rpc.1.NEQ1464362.7.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.624 debug object hm-rpc.1.NEQ1464362.7.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.624 debug object hm-rpc.1.NEQ1464362.7.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.624 debug paramset cache hit
hm-rpc.1 2019-06-03 15:25:17.623 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.623 debug object hm-rpc.1.NEQ1464362.6.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.623 debug object hm-rpc.1.NEQ1464362.6.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.623 debug object hm-rpc.1.NEQ1464362.6.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.620 debug object hm-rpc.1.NEQ1464362.6.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.579 debug object hm-rpc.1.NEQ1464362.6.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.579 debug paramset cache hit
hm-rpc.1 2019-06-03 15:25:17.579 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.579 debug object hm-rpc.1.NEQ1464362.5.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.578 debug object hm-rpc.1.NEQ1464362.5.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.575 debug object hm-rpc.1.NEQ1464362.5.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.535 debug object hm-rpc.1.NEQ1464362.5.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.535 debug object hm-rpc.1.NEQ1464362.5.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.535 debug paramset cache hit
hm-rpc.1 2019-06-03 15:25:17.534 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.534 debug object hm-rpc.1.NEQ1464362.4.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.534 debug object hm-rpc.1.NEQ1464362.4.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.531 debug object hm-rpc.1.NEQ1464362.4.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.487 debug object hm-rpc.1.NEQ1464362.4.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.487 debug object hm-rpc.1.NEQ1464362.4.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.487 debug paramset cache hit
hm-rpc.1 2019-06-03 15:25:17.486 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.486 debug object hm-rpc.1.NEQ1464362.3.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.486 debug object hm-rpc.1.NEQ1464362.3.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.483 debug object hm-rpc.1.NEQ1464362.3.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.443 debug object hm-rpc.1.NEQ1464362.3.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.443 debug object hm-rpc.1.NEQ1464362.3.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.443 debug paramset cache hit
hm-rpc.1 2019-06-03 15:25:17.442 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.442 debug object hm-rpc.1.NEQ1464362.2.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.442 debug object hm-rpc.1.NEQ1464362.2.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.439 debug object hm-rpc.1.NEQ1464362.2.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.399 debug object hm-rpc.1.NEQ1464362.2.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.393 debug object hm-rpc.1.NEQ1464362.2.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.387 debug hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11 found
hm-rpc.1 2019-06-03 15:25:17.360 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.359 debug object hm-rpc.1.NEQ1464362.1.PRESS_SHORT extended
hm-rpc.1 2019-06-03 15:25:17.359 debug object hm-rpc.1.NEQ1464362.1.PRESS_LONG_RELEASE extended
hm-rpc.1 2019-06-03 15:25:17.356 debug object hm-rpc.1.NEQ1464362.1.PRESS_LONG extended
hm-rpc.1 2019-06-03 15:25:17.338 debug object hm-rpc.1.NEQ1464362.1.PRESS_CONT extended
hm-rpc.1 2019-06-03 15:25:17.335 debug object hm-rpc.1.NEQ1464362.1.INSTALL_TEST extended
hm-rpc.1 2019-06-03 15:25:17.310 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN
hm-rpc.1 2019-06-03 15:25:17.307 warn Send this info to developer: "_id": "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11"
hm-rpc.1 2019-06-03 15:25:17.264 info xmlrpc -> getParamsetDescription ["NEQ1464362:1","VALUES"]
hm-rpc.1 2019-06-03 15:25:17.243 debug getValueParamsets HM-Dis-EP-WM55.KEY.11
hm-rpc.1 2019-06-03 15:25:17.243 debug object hm-rpc.1.NEQ1464362.0.UPDATE_PENDING extended
hm-rpc.1 2019-06-03 15:25:17.243 debug object hm-rpc.1.NEQ1464362.0.UNREACH extended
hm-rpc.1 2019-06-03 15:25:17.243 debug object hm-rpc.1.NEQ1464362.0.STICKY_UNREACH extended
hm-rpc.1 2019-06-03 15:25:17.243 debug object hm-rpc.1.NEQ1464362.0.RSSI_PEER extended
hm-rpc.1 2019-06-03 15:25:17.243 debug object hm-rpc.1.NEQ1464362.0.RSSI_DEVICE extended
hm-rpc.1 2019-06-03 15:25:17.242 debug object hm-rpc.1.NEQ1464362.0.LOWBAT extended
hm-rpc.1 2019-06-03 15:25:17.242 debug object hm-rpc.1.NEQ1464362.0.DEVICE_IN_BOOTLOADER extended
hm-rpc.1 2019-06-03 15:25:17.242 debug object hm-rpc.1.NEQ1464362.0.CONFIG_PENDING extended
hm-rpc.1 2019-06-03 15:25:17.240 debug object hm-rpc.1.NEQ1464362.0.AES_KEY extended
hm-rpc.1 2019-06-03 15:25:17.159 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"AES_KEY":{"DEFAULT":0,"FLAGS":0,"ID":"AES_KEY","MAX":127,"MIN":0,"OPERATIONS
hm-rpc.1 2019-06-03 15:25:17.159 warn Send this info to developer: "_id": "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.MAINTENANCE.11"
hm-rpc.1 2019-06-03 15:25:17.159 debug [EPAPER] Add E-Paper to Meta for version 12 with {}
hm-rpc.1 2019-06-03 15:25:17.158 debug [EPAPER] Add E-Paper to Meta for version 11 with {}
hm-rpc.1 2019-06-03 15:25:17.158 debug [EPAPER] Add E-Paper to Meta for version 10 with {}
hm-rpc.1 2019-06-03 15:25:17.156 debug [EPAPER] Add E-Paper to Meta for version 9 with {}
hm-rpc.1 2019-06-03 15:25:17.109 info xmlrpc -> getParamsetDescription ["NEQ1464362:0","VALUES"]
hm-rpc.1 2019-06-03 15:25:17.109 debug getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11
hm-rpc.1 2019-06-03 15:25:17.107 debug object hm-rpc.1.NEQ1464362 created
hm-rpc.1 2019-06-03 15:25:17.088 debug object hm-rpc.1.NEQ1464362.0 created
hm-rpc.1 2019-06-03 15:25:17.078 debug object hm-rpc.1.NEQ1464362.1 created
hm-rpc.1 2019-06-03 15:25:17.067 debug object hm-rpc.1.NEQ1464362.2 created
hm-rpc.1 2019-06-03 15:25:17.057 debug object hm-rpc.1.NEQ1464362.3 created
hm-rpc.1 2019-06-03 15:25:17.044 debug object hm-rpc.1.NEQ1464362.4 created
hm-rpc.1 2019-06-03 15:25:17.034 debug object hm-rpc.1.NEQ1464362.5 created
hm-rpc.1 2019-06-03 15:25:17.024 debug object hm-rpc.1.NEQ1464362.6 created
hm-rpc.1 2019-06-03 15:25:16.953 debug object hm-rpc.1.NEQ1464362.7 created
hm-rpc.1 2019-06-03 15:25:16.953 debug hm-rpc.1.OEQ0662850.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.952 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.952 debug xml multicall : hm-rpc.1,OEQ0662850:0,UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.952 debug hm-rpc.1.OEQ0662850.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.951 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.951 debug xml multicall : hm-rpc.1,OEQ0662850:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.951 debug hm-rpc.1.OEQ0662850.0.CONFIG_PENDING ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.950 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","CONFIG_PENDING",true]
hm-rpc.1 2019-06-03 15:25:16.950 debug xml multicall : hm-rpc.1,OEQ0662850:0,CONFIG_PENDING,true
hm-rpc.1 2019-06-03 15:25:16.950 debug hm-rpc.1.JPSw1CT003.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.949 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT003:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.949 debug xml multicall : hm-rpc.1,JPSw1CT003:0,UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.949 debug hm-rpc.1.JPSw1CT003.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.948 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT003:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.948 debug xml multicall : hm-rpc.1,JPSw1CT003:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.948 debug hm-rpc.1.JPSw1CT002.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.948 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT002:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.947 debug xml multicall : hm-rpc.1,JPSw1CT002:0,UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.947 debug hm-rpc.1.JPSw1CT002.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.946 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT002:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.946 debug xml multicall : hm-rpc.1,JPSw1CT002:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.946 debug hm-rpc.1.JPSw1CT001.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.945 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT001:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.945 debug xml multicall : hm-rpc.1,JPSw1CT001:0,UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.945 debug hm-rpc.1.JPSw1CT001.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:25:16.944 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT001:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:25:16.944 debug xml multicall : hm-rpc.1,JPSw1CT001:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:25:16.941 debug object hm-rpc.1.NEQ1464362.8 created
hm-rpc.1 2019-06-03 15:25:16.834 debug start ping interval
hm-rpc.1 2019-06-03 15:25:16.834 debug clear connecting interval
hm-rpc.1 2019-06-03 15:25:16.833 info Connected
hm-rpc.1 2019-06-03 15:25:16.831 info xmlrpc <- newDevices 10
hm-rpc.1 2019-06-03 15:25:16.688 info xmlrpc -> 105 devices
hm-rpc.1 2019-06-03 15:25:16.578 info xmlrpc <- listDevices ["hm-rpc.1"]
hm-rpc.1 2019-06-03 15:25:16.563 info xmlrpc <- system.listMethods ["hm-rpc.1"]
hm-rpc.1 2019-06-03 15:25:16.512 debug start connecting interval
hm-rpc.1 2019-06-03 15:25:16.512 debug xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:25:16.512 debug Connect...
hm-rpc.1 2019-06-03 15:25:16.511 info xmlrpc client is trying to connect to 192.168.100.80:2001/ with ["http://192.168.100.85:2001","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:25:16.509 info xmlrpc server is trying to listen on 192.168.100.85:2001
hm-rpc.1 2019-06-03 15:25:15.758 info starting. Version 1.9.12 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v10.16.0
hm-rpc.1 2019-06-03 15:25:15.993 debug system.adapter.admin.0: logging true
hm-rpc.1 2019-06-03 15:24:15.797 info xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001",""]
hm-rpc.1 2019-06-03 15:24:15.781 info Disconnected
hm-rpc.1 2019-06-03 15:24:15.768 info xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001",""]
hm-rpc.1 2019-06-03 15:24:14.770 debug [MSSG] Received: {"command":"stopInstance","message":null,"from":"system.host.ioBroker-rock64","callback":{"message":null,"id":38,"ack":false,"time":1559568254763},"_id":61047631}
hm-rpc.1 2019-06-03 15:24:11.447 debug hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1"
hm-rpc.1 2019-06-03 15:24:11.446 debug xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:24:11.446 debug xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1
hm-rpc.1 2019-06-03 15:24:11.440 debug PING ok
hm-rpc.1 2019-06-03 15:24:11.431 debug Send PING...
hm-rpc.1 2019-06-03 15:24:11.431 debug [KEEPALIVE] Check if connection is alive
hm-rpc.1 2019-06-03 15:23:25.910 debug hm-rpc.1.OEQ0802171.5.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:23:25.909 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:5","LOWBAT",false]
hm-rpc.1 2019-06-03 15:23:25.909 debug xml multicall : hm-rpc.1,OEQ0802171:5,LOWBAT,false
hm-rpc.1 2019-06-03 15:23:25.909 debug hm-rpc.1.OEQ0802171.4.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:23:25.908 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:4","LOWBAT",false]
hm-rpc.1 2019-06-03 15:23:25.908 debug xml multicall : hm-rpc.1,OEQ0802171:4,LOWBAT,false
hm-rpc.1 2019-06-03 15:23:25.907 debug hm-rpc.1.OEQ0802171.3.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:23:25.907 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:3","LOWBAT",false]
hm-rpc.1 2019-06-03 15:23:25.907 debug xml multicall : hm-rpc.1,OEQ0802171:3,LOWBAT,false
hm-rpc.1 2019-06-03 15:23:25.906 debug hm-rpc.1.OEQ0802171.2.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:23:25.906 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:2","LOWBAT",false]
hm-rpc.1 2019-06-03 15:23:25.906 debug xml multicall : hm-rpc.1,OEQ0802171:2,LOWBAT,false
hm-rpc.1 2019-06-03 15:23:25.905 debug hm-rpc.1.OEQ0802171.1.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:23:25.905 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","LOWBAT",false]
hm-rpc.1 2019-06-03 15:23:25.904 debug xml multicall : hm-rpc.1,OEQ0802171:1,LOWBAT,false
hm-rpc.1 2019-06-03 15:23:25.904 debug hm-rpc.1.OEQ0802171.0.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:23:25.903 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:0","LOWBAT",false]
hm-rpc.1 2019-06-03 15:23:25.903 debug xml multicall : hm-rpc.1,OEQ0802171:0,LOWBAT,false
hm-rpc.1 2019-06-03 15:23:25.902 debug hm-rpc.1.OEQ0802171.4.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "-0.7" => "-0.7"
hm-rpc.1 2019-06-03 15:23:25.902 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:4","TEMPERATURE",-0.7]
hm-rpc.1 2019-06-03 15:23:25.901 debug xml multicall : hm-rpc.1,OEQ0802171:4,TEMPERATURE,-0.7
hm-rpc.1 2019-06-03 15:23:25.899 debug hm-rpc.1.OEQ0802171.3.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "0.7" => "0.7"
hm-rpc.1 2019-06-03 15:23:25.898 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:3","TEMPERATURE",0.7]
hm-rpc.1 2019-06-03 15:23:25.898 debug xml multicall : hm-rpc.1,OEQ0802171:3,TEMPERATURE,0.7
hm-rpc.1 2019-06-03 15:23:25.895 debug hm-rpc.1.OEQ0802171.2.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "23.3" => "23.3"
hm-rpc.1 2019-06-03 15:23:25.895 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:2","TEMPERATURE",23.3]
hm-rpc.1 2019-06-03 15:23:25.894 debug xml multicall : hm-rpc.1,OEQ0802171:2,TEMPERATURE,23.3
hm-rpc.1 2019-06-03 15:23:25.865 debug hm-rpc.1.OEQ0802171.1.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "24" => "24"
hm-rpc.1 2019-06-03 15:23:25.864 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","TEMPERATURE",24]
hm-rpc.1 2019-06-03 15:23:25.863 debug xml multicall : hm-rpc.1,OEQ0802171:1,TEMPERATURE,24
hm-rpc.1 2019-06-03 15:23:16.528 debug system.adapter.admin.0: logging false
hm-rpc.1 2019-06-03 15:22:41.474 debug PING ok
hm-rpc.1 2019-06-03 15:22:41.448 debug hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1"
hm-rpc.1 2019-06-03 15:22:41.447 debug xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:22:41.447 debug xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1
hm-rpc.1 2019-06-03 15:22:41.430 debug Send PING...
hm-rpc.1 2019-06-03 15:22:41.430 debug [KEEPALIVE] Check if connection is alive
hm-rpc.1 2019-06-03 15:22:37.895 debug hm-rpc.1.NEQ0862883.1.POWER ==> UNIT: "W" (min: 0, max: 167772.149902) From "15" => "15"
hm-rpc.1 2019-06-03 15:22:37.895 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","POWER",15]
hm-rpc.1 2019-06-03 15:22:37.894 debug xml multicall : hm-rpc.1,NEQ0862883:1,POWER,15
hm-rpc.1 2019-06-03 15:22:37.893 debug hm-rpc.1.NEQ0862883.1.ENERGY_COUNTER ==> UNIT: "Wh" (min: 0, max: 838860.699219) From "209289.4" => "209289.4"
hm-rpc.1 2019-06-03 15:22:37.892 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","ENERGY_COUNTER",209289.4]
hm-rpc.1 2019-06-03 15:22:37.892 debug xml multicall : hm-rpc.1,NEQ0862883:1,ENERGY_COUNTER,209289.4
hm-rpc.1 2019-06-03 15:22:37.887 debug hm-rpc.1.NEQ0862883.1.BOOT ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:22:37.886 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","BOOT",true]
hm-rpc.1 2019-06-03 15:22:37.885 debug xml multicall : hm-rpc.1,NEQ0862883:1,BOOT,true
hm-rpc.1 2019-06-03 15:22:37.506 debug hm-rpc.1.NEQ0862915.1.POWER ==> UNIT: "W" (min: 0, max: 167772.149902) From "339" => "339"
hm-rpc.1 2019-06-03 15:22:37.505 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","POWER",339]
hm-rpc.1 2019-06-03 15:22:37.504 debug xml multicall : hm-rpc.1,NEQ0862915:1,POWER,339
hm-rpc.1 2019-06-03 15:22:37.500 debug hm-rpc.1.NEQ0862915.1.ENERGY_COUNTER ==> UNIT: "Wh" (min: 0, max: 838860.699219) From "146756.5" => "146756.5"
hm-rpc.1 2019-06-03 15:22:37.499 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","ENERGY_COUNTER",146756.5]
hm-rpc.1 2019-06-03 15:22:37.499 debug xml multicall : hm-rpc.1,NEQ0862915:1,ENERGY_COUNTER,146756.5
hm-rpc.1 2019-06-03 15:22:37.476 debug hm-rpc.1.NEQ0862915.1.BOOT ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:22:37.475 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","BOOT",true]
hm-rpc.1 2019-06-03 15:22:37.474 debug xml multicall : hm-rpc.1,NEQ0862915:1,BOOT,true
hm-rpc.1 2019-06-03 15:22:26.436 debug system.adapter.admin.0: logging true
hm-rpc.1 2019-06-03 15:21:11.475 debug hm-rpc.1.CENTRAL.PONG ==> UNIT: "none" (min: none, max: none) From "hm-rpc.1" => "hm-rpc.1"
hm-rpc.1 2019-06-03 15:21:11.474 debug xmlrpc <- event ["hm-rpc.1","CENTRAL","PONG","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:21:11.473 debug xml multicall : hm-rpc.1,CENTRAL,PONG,hm-rpc.1
hm-rpc.1 2019-06-03 15:21:11.456 debug PING ok
hm-rpc.1 2019-06-03 15:21:11.432 debug Send PING...
hm-rpc.1 2019-06-03 15:21:11.430 debug [KEEPALIVE] Check if connection is alive
hm-rpc.1 2019-06-03 15:20:41.493 debug system.adapter.admin.0: logging false
hm-rpc.1 2019-06-03 15:20:41.487 debug hm-rpc.1.OEQ0802171.5.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:20:41.486 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:5","LOWBAT",false]
hm-rpc.1 2019-06-03 15:20:41.486 debug xml multicall : hm-rpc.1,OEQ0802171:5,LOWBAT,false
hm-rpc.1 2019-06-03 15:20:41.485 debug hm-rpc.1.OEQ0802171.4.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:20:41.484 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:4","LOWBAT",false]
hm-rpc.1 2019-06-03 15:20:41.484 debug xml multicall : hm-rpc.1,OEQ0802171:4,LOWBAT,false
hm-rpc.1 2019-06-03 15:20:41.483 debug hm-rpc.1.OEQ0802171.3.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:20:41.482 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:3","LOWBAT",false]
hm-rpc.1 2019-06-03 15:20:41.482 debug xml multicall : hm-rpc.1,OEQ0802171:3,LOWBAT,false
hm-rpc.1 2019-06-03 15:20:41.481 debug hm-rpc.1.OEQ0802171.2.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:20:41.480 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:2","LOWBAT",false]
hm-rpc.1 2019-06-03 15:20:41.480 debug xml multicall : hm-rpc.1,OEQ0802171:2,LOWBAT,false
hm-rpc.1 2019-06-03 15:20:41.479 debug hm-rpc.1.OEQ0802171.1.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:20:41.478 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","LOWBAT",false]
hm-rpc.1 2019-06-03 15:20:41.478 debug xml multicall : hm-rpc.1,OEQ0802171:1,LOWBAT,false
hm-rpc.1 2019-06-03 15:20:41.477 debug hm-rpc.1.OEQ0802171.0.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false"
hm-rpc.1 2019-06-03 15:20:41.476 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:0","LOWBAT",false]
hm-rpc.1 2019-06-03 15:20:41.476 debug xml multicall : hm-rpc.1,OEQ0802171:0,LOWBAT,false
hm-rpc.1 2019-06-03 15:20:41.475 debug hm-rpc.1.OEQ0802171.4.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "-0.7" => "-0.7"
hm-rpc.1 2019-06-03 15:20:41.474 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:4","TEMPERATURE",-0.7]
hm-rpc.1 2019-06-03 15:20:41.474 debug xml multicall : hm-rpc.1,OEQ0802171:4,TEMPERATURE,-0.7
hm-rpc.1 2019-06-03 15:20:41.473 debug hm-rpc.1.OEQ0802171.3.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "0.7" => "0.7"
hm-rpc.1 2019-06-03 15:20:41.472 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:3","TEMPERATURE",0.7]
hm-rpc.1 2019-06-03 15:20:41.471 debug xml multicall : hm-rpc.1,OEQ0802171:3,TEMPERATURE,0.7
hm-rpc.1 2019-06-03 15:20:41.404 debug hm-rpc.1.OEQ0802171.2.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "23.3" => "23.3"
hm-rpc.1 2019-06-03 15:20:41.403 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:2","TEMPERATURE",23.3]
hm-rpc.1 2019-06-03 15:20:41.403 debug xml multicall : hm-rpc.1,OEQ0802171:2,TEMPERATURE,23.3
hm-rpc.1 2019-06-03 15:20:41.392 debug hm-rpc.1.OEQ0802171.1.TEMPERATURE ==> UNIT: "�C" (min: -150, max: 150) From "24" => "24"
hm-rpc.1 2019-06-03 15:20:41.391 debug xmlrpc <- event ["hm-rpc.1","OEQ0802171:1","TEMPERATURE",24]
hm-rpc.1 2019-06-03 15:20:41.390 debug xml multicall : hm-rpc.1,OEQ0802171:1,TEMPERATURE,24
hm-rpc.1 2019-06-03 15:20:35.455 debug hm-rpc.1.NEQ0862915.1.POWER ==> UNIT: "W" (min: 0, max: 167772.149902) From "339" => "339"
hm-rpc.1 2019-06-03 15:20:35.436 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","POWER",339]
hm-rpc.1 2019-06-03 15:20:35.436 debug xml multicall : hm-rpc.1,NEQ0862915:1,POWER,339
hm-rpc.1 2019-06-03 15:20:35.431 debug hm-rpc.1.NEQ0862915.1.ENERGY_COUNTER ==> UNIT: "Wh" (min: 0, max: 838860.699219) From "146744.4" => "146744.4"
hm-rpc.1 2019-06-03 15:20:35.431 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","ENERGY_COUNTER",146744.4]
hm-rpc.1 2019-06-03 15:20:35.430 debug xml multicall : hm-rpc.1,NEQ0862915:1,ENERGY_COUNTER,146744.4
hm-rpc.1 2019-06-03 15:20:35.402 debug hm-rpc.1.NEQ0862915.1.BOOT ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:20:35.402 debug xmlrpc <- event ["hm-rpc.1","NEQ0862915:1","BOOT",true]
hm-rpc.1 2019-06-03 15:20:35.401 debug xml multicall : hm-rpc.1,NEQ0862915:1,BOOT,true
hm-rpc.1 2019-06-03 15:19:50.940 debug hm-rpc.1.NEQ0862883.1.POWER ==> UNIT: "W" (min: 0, max: 167772.149902) From "15" => "15"
hm-rpc.1 2019-06-03 15:19:50.940 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","POWER",15]
hm-rpc.1 2019-06-03 15:19:50.939 debug xml multicall : hm-rpc.1,NEQ0862883:1,POWER,15
hm-rpc.1 2019-06-03 15:19:50.939 debug hm-rpc.1.NEQ0862883.1.ENERGY_COUNTER ==> UNIT: "Wh" (min: 0, max: 838860.699219) From "209287.5" => "209287.5"
hm-rpc.1 2019-06-03 15:19:50.938 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","ENERGY_COUNTER",209287.5]
hm-rpc.1 2019-06-03 15:19:50.938 debug xml multicall : hm-rpc.1,NEQ0862883:1,ENERGY_COUNTER,209287.5
hm-rpc.1 2019-06-03 15:19:50.893 debug hm-rpc.1.NEQ0862883.1.BOOT ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:50.893 debug xmlrpc <- event ["hm-rpc.1","NEQ0862883:1","BOOT",true]
hm-rpc.1 2019-06-03 15:19:50.892 debug xml multicall : hm-rpc.1,NEQ0862883:1,BOOT,true
hm-rpc.1 2019-06-03 15:19:41.482 debug hm-rpc.1.OEQ0662850.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.482 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.482 debug xml multicall : hm-rpc.1,OEQ0662850:0,UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.481 debug hm-rpc.1.OEQ0662850.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.480 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.480 debug xml multicall : hm-rpc.1,OEQ0662850:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.479 debug hm-rpc.1.OEQ0662850.0.CONFIG_PENDING ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.479 debug xmlrpc <- event ["hm-rpc.1","OEQ0662850:0","CONFIG_PENDING",true]
hm-rpc.1 2019-06-03 15:19:41.478 debug xml multicall : hm-rpc.1,OEQ0662850:0,CONFIG_PENDING,true
hm-rpc.1 2019-06-03 15:19:41.478 debug hm-rpc.1.JPSw1CT003.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.477 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT003:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.477 debug xml multicall : hm-rpc.1,JPSw1CT003:0,UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.476 debug hm-rpc.1.JPSw1CT003.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.476 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT003:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.475 debug xml multicall : hm-rpc.1,JPSw1CT003:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.475 debug hm-rpc.1.JPSw1CT002.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.474 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT002:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.474 debug xml multicall : hm-rpc.1,JPSw1CT002:0,UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.474 debug hm-rpc.1.JPSw1CT002.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.473 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT002:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.473 debug xml multicall : hm-rpc.1,JPSw1CT002:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.472 debug hm-rpc.1.JPSw1CT001.0.UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.471 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT001:0","UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.471 debug xml multicall : hm-rpc.1,JPSw1CT001:0,UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.470 debug hm-rpc.1.JPSw1CT001.0.STICKY_UNREACH ==> UNIT: "" (min: false, max: true) From "true" => "true"
hm-rpc.1 2019-06-03 15:19:41.469 debug xmlrpc <- event ["hm-rpc.1","JPSw1CT001:0","STICKY_UNREACH",true]
hm-rpc.1 2019-06-03 15:19:41.468 debug xml multicall : hm-rpc.1,JPSw1CT001:0,STICKY_UNREACH,true
hm-rpc.1 2019-06-03 15:19:41.427 debug start ping interval
hm-rpc.1 2019-06-03 15:19:41.426 debug clear connecting interval
hm-rpc.1 2019-06-03 15:19:41.423 info Connected
hm-rpc.1 2019-06-03 15:19:41.325 info xmlrpc -> 115 devices
hm-rpc.1 2019-06-03 15:19:41.266 info xmlrpc <- listDevices ["hm-rpc.1"]
hm-rpc.1 2019-06-03 15:19:41.244 info xmlrpc <- system.listMethods ["hm-rpc.1"]
hm-rpc.1 2019-06-03 15:19:41.173 debug start connecting interval
hm-rpc.1 2019-06-03 15:19:41.157 debug xmlrpc -> 192.168.100.80:2001/ init ["http://192.168.100.85:2001","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:19:41.156 debug Connect...
hm-rpc.1 2019-06-03 15:19:41.153 info xmlrpc client is trying to connect to 192.168.100.80:2001/ with ["http://192.168.100.85:2001","hm-rpc.1"]
hm-rpc.1 2019-06-03 15:19:41.152 info xmlrpc server is trying to listen on 192.168.100.85:2001
hm-rpc.1 2019-06-03 15:19:40.237 info starting. Version 1.9.12 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v10.16.0
foxriver76 commented 5 years ago

Bitte nochmal probieren, da war was grundlegend falsch, was auch erklärt warum er bei dir leere Objekte loggt. Der Fehler muss da schon ewig drin sein, ist nur nicht tragisch außer bei dem Epaper-Fall.

intruder7777 commented 5 years ago

image

intruder7777 commented 5 years ago

jetzt passt alles und ich kann das EPaper wieder mit iobroker ansprechen

intruder7777 commented 5 years ago

Frag mich nur warum das Knallochse nicht gestört hat

foxriver76 commented 5 years ago

Okay, also passt es nun. Kannst du @Knallochse evtl auch nochmal auf die GitHub Version updaten und durch neu anlegen des Gerätes verifizieren, dass es auch bei dir geht? ;-)

Knallochse commented 5 years ago

Hallo @foxriver76 OFFTOPIC: Ich ziehe den Hut vor deiner Geduld und die Toleranz für den Ton, welcher hier teilweise angeschlagen wird. Mir ist sehr wohl bewusst, dass du hier für uns deine Freizeit opferst. OFFTOPIC ENDE

Ich habe gerade die neue Version installiert. Bei mir werden die Objekte EPAPER_LINE; EPAPER_ICON etc. bei mir nicht angelegt. Entschuldige, aber ich habe es leider bei unserer Überarbeitung nicht bemerkt, weil ich die Datenpunkte für EPAPER_LINE; EPAPER_ICON etc. unter IoBroker nicht benutzt hatte. Das läuft bei mir auf der CCU. Die Firmware Version des EPaper-Display ist bei mir die V1.2 (zum Vergleich)

Screenshot13 Anbei mein aktuelles debuglog.

2019-06-04 08:06:18.952 - info: iobroker upload hm-rpc 2019-06-04 08:06:19.570 - info: iobroker got /opt/iobroker/node_modules/iobroker.hm-rpc/admin 2019-06-04 08:06:19.706 - info: iobroker upload [200] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/index_m.html index_m.html text/html 2019-06-04 08:06:22.572 - info: iobroker upload [150] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/75_hm-pb-2-wm55_thumb.png icons/75_hm-pb-2-wm55_thumb.png image/png 2019-06-04 08:06:25.421 - info: iobroker upload [100] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/27_hmw-lc-bl1-dr_thumb.png icons/27_hmw-lc-bl1-dr_thumb.png image/png 2019-06-04 08:06:25.986 - info: iobroker upload [90] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/188_hmip-etrv-c_thumb.png icons/188_hmip-etrv-c_thumb.png image/png 2019-06-04 08:06:26.708 - info: iobroker upload [80] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/179_hmip-swdm-b2_thumb.png icons/179_hmip-swdm-b2_thumb.png image/png 2019-06-04 08:06:27.383 - info: iobroker upload [70] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/169_hmip-swo-pr_thumb.png icons/169_hmip-swo-pr_thumb.png image/png 2019-06-04 08:06:27.950 - info: iobroker upload [60] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/150_hm-lc-dw-wm_thumb.png icons/150_hm-lc-dw-wm_thumb.png image/png 2019-06-04 08:06:28.662 - info: iobroker upload [50] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/140_alpha-ip-rgb_thumb.png icons/140_alpha-ip-rgb_thumb.png image/png 2019-06-04 08:06:29.225 - info: iobroker upload [40] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/132_hmip-smo_thumb.png icons/132_hmip-smo_thumb.png image/png 2019-06-04 08:06:29.808 - info: iobroker upload [30] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/121_hmip-wth_thumb.png icons/121_hmip-wth_thumb.png image/png 2019-06-04 08:06:30.386 - info: iobroker upload [20] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm_thumb.png icons/113_hmip-psm_thumb.png image/png 2019-06-04 08:06:30.443 - info: iobroker upload [19] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-uk_thumb.png icons/113_hmip-psm-uk_thumb.png image/png 2019-06-04 08:06:30.505 - info: iobroker upload [18] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-pe_thumb.png icons/113_hmip-psm-pe_thumb.png image/png 2019-06-04 08:06:30.560 - info: iobroker upload [17] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-it_thumb.png icons/113_hmip-psm-it_thumb.png image/png 2019-06-04 08:06:30.619 - info: iobroker upload [16] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-ch_thumb.png icons/113_hmip-psm-ch_thumb.png image/png 2019-06-04 08:06:30.677 - info: iobroker upload [15] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/112_hmip-wrc2_thumb.png icons/112_hmip-wrc2_thumb.png image/png 2019-06-04 08:06:30.734 - info: iobroker upload [14] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/111_hm-lc-rgbw-wm_thumb.png icons/111_hm-lc-rgbw-wm_thumb.png image/png 2019-06-04 08:06:30.789 - info: iobroker upload [13] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/110_hm-es-pmsw1-dr_thump.png icons/110_hm-es-pmsw1-dr_thump.png image/png 2019-06-04 08:06:30.846 - info: iobroker upload [12] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/109_hm-lc-sw1-pl-ct_thump.png icons/109_hm-lc-sw1-pl-ct_thump.png image/png 2019-06-04 08:06:30.903 - info: iobroker upload [11] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/108_hm-rc-dis-h-x-eu_thump.png icons/108_hm-rc-dis-h-x-eu_thump.png image/png 2019-06-04 08:06:30.960 - info: iobroker upload [10] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R5_thumb.png icons/107_hm-es-pmsw1-pl-R5_thumb.png image/png 2019-06-04 08:06:31.016 - info: iobroker upload [9] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R4_thumb.png icons/107_hm-es-pmsw1-pl-R4_thumb.png image/png 2019-06-04 08:06:31.072 - info: iobroker upload [8] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R3_thumb.png icons/107_hm-es-pmsw1-pl-R3_thumb.png image/png 2019-06-04 08:06:31.139 - info: iobroker upload [7] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R2_thumb.png icons/107_hm-es-pmsw1-pl-R2_thumb.png image/png 2019-06-04 08:06:31.205 - info: iobroker upload [6] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/105_hm-sec-sd-2-team_thumb.png icons/105_hm-sec-sd-2-team_thumb.png image/png 2019-06-04 08:06:31.261 - info: iobroker upload [5] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/104_hm-sec-sd-2_thumb.png icons/104_hm-sec-sd-2_thumb.png image/png 2019-06-04 08:06:31.323 - info: iobroker upload [4] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/103_hm-sen-mdir-wm55_thumb.png icons/103_hm-sen-mdir-wm55_thumb.png image/png 2019-06-04 08:06:31.380 - info: iobroker upload [3] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/102_hm-es-tx-wm_thumb.png icons/102_hm-es-tx-wm_thumb.png image/png 2019-06-04 08:06:31.437 - info: iobroker upload [2] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/101_hm-sen-db-pcb_thumb.png icons/101_hm-sen-db-pcb_thumb.png image/png 2019-06-04 08:06:31.495 - info: iobroker upload [1] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/100_hm-rc-8_thumb.png icons/100_hm-rc-8_thumb.png image/png 2019-06-04 08:06:31.550 - info: iobroker upload [0] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/homematic.png homematic.png image/png 2019-06-04 08:06:33.824 - info: iobroker exit 0 2019-06-04 08:06:53.582 - info: host.buanet-iobroker1 object change system.adapter.hm-rega.0 2019-06-04 08:06:53.599 - info: host.buanet-iobroker1 instance system.adapter.hm-rega.0 started with pid 30151 2019-06-04 08:06:56.002 - info: hm-rega.0 starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.hm-rega, node: v8.14.0 2019-06-04 08:06:56.091 - info: hm-rega.0 subscribe hm-rpc.1.BidCoS-RF.50.PRESS_SHORT 2019-06-04 08:06:56.151 - info: hm-rega.0 ReGaHSS 192.168.178.28 up 2019-06-04 08:06:56.282 - info: hm-rega.0 time difference local-ccu 0s 2019-06-04 08:06:56.302 - info: hm-rega.0 added/updated 2 favorites to enum.favorites 2019-06-04 08:06:56.337 - info: hm-rega.0 added/updated functions to enum.functions 2019-06-04 08:06:56.393 - info: hm-rega.0 added/updated rooms to enum.rooms 2019-06-04 08:06:58.097 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-06-04 08:06:58.104 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-06-04 08:06:58.108 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-06-04 08:06:58.113 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-06-04 08:06:58.121 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-06-04 08:06:58.126 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-06-04 08:06:58.129 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-06-04 08:06:58.133 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-06-04 08:06:58.138 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-06-04 08:06:58.142 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-06-04 08:06:58.176 - info: hm-rega.0 got 226 programs 2019-06-04 08:06:58.315 - info: hm-rega.0 added/updated 226 programs 2019-06-04 08:06:58.315 - info: hm-rega.0 deleted 0 programs 2019-06-04 08:06:59.971 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.0 2019-06-04 08:06:59.986 - info: hm-rega.0 got 199 variables 2019-06-04 08:06:59.972 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.0" enabled 2019-06-04 08:06:59.990 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.0 started with pid 30161 2019-06-04 08:07:00.145 - info: hm-rega.0 added/updated 199 variables 2019-06-04 08:07:00.145 - info: hm-rega.0 deleted 0 variables 2019-06-04 08:07:00.146 - info: hm-rega.0 request state values 2019-06-04 08:07:00.894 - info: hm-rega.0 got state values 2019-06-04 08:07:00.986 - debug: hm-rpc.0 objectDB connected 2019-06-04 08:07:02.667 - debug: hm-rpc.0 statesDB connected 2019-06-04 08:07:02.792 - info: hm-rpc.0 starting. Version 1.9.13 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-06-04 08:07:03.340 - info: hm-rpc.0 binrpc server is trying to listen on 192.168.178.86:18701 2019-06-04 08:07:03.340 - info: hm-rpc.0 binrpc client is trying to connect to 192.168.178.28:8701/ with ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-06-04 08:07:03.343 - debug: hm-rpc.0 Connect... 2019-06-04 08:07:03.343 - debug: hm-rpc.0 binrpc -> 192.168.178.28:8701/ init ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-06-04 08:07:03.349 - debug: hm-rpc.0 start connecting interval 2019-06-04 08:07:04.782 - info: hm-rpc.0 binrpc -> listDevices 324 2019-06-04 08:07:04.863 - info: hm-rpc.0 new CUxD devices/channels after filter: 0 2019-06-04 08:07:04.865 - info: hm-rpc.0 Connected 2019-06-04 08:07:04.865 - debug: hm-rpc.0 clear connecting interval 2019-06-04 08:07:04.866 - debug: hm-rpc.0 start ping interval 2019-06-04 08:07:06.988 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-06-04 08:07:06.992 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-06-04 08:07:06.997 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-06-04 08:07:07.001 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-06-04 08:07:07.008 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-06-04 08:07:07.013 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-06-04 08:07:07.017 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-06-04 08:07:07.021 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-06-04 08:07:07.024 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-06-04 08:07:07.028 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-06-04 08:07:08.421 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-06-04 08:07:08.421 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.1" enabled 2019-06-04 08:07:08.467 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.1 started with pid 30181 2019-06-04 08:07:09.041 - debug: hm-rpc.1 objectDB connected 2019-06-04 08:07:09.085 - debug: hm-rpc.1 statesDB connected 2019-06-04 08:07:09.210 - info: hm-rpc.1 starting. Version 1.9.13 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-06-04 08:07:09.563 - info: hm-rpc.1 xmlrpc server is trying to listen on 192.168.178.86:12001 2019-06-04 08:07:09.563 - info: hm-rpc.1 xmlrpc client is trying to connect to 192.168.178.28:2001/ with ["http://192.168.178.86:12001","hm-rpc.1"] 2019-06-04 08:07:09.565 - debug: hm-rpc.1 Connect... 2019-06-04 08:07:09.565 - debug: hm-rpc.1 xmlrpc -> 192.168.178.28:2001/ init ["http://192.168.178.86:12001","hm-rpc.1"] 2019-06-04 08:07:09.571 - debug: hm-rpc.1 start connecting interval 2019-06-04 08:07:09.573 - error: javascript.0 Error in callback: TypeError: Cannot read property 'substr' of undefined 2019-06-04 08:07:09.596 - info: hm-rpc.1 xmlrpc <- system.listMethods ["hm-rpc.1"] 2019-06-04 08:07:09.607 - info: hm-rpc.1 xmlrpc <- listDevices ["hm-rpc.1"] 2019-06-04 08:07:09.633 - info: hm-rpc.1 xmlrpc -> 235 devices 2019-06-04 08:07:09.750 - info: hm-rpc.1 xmlrpc <- newDevices 10 2019-06-04 08:07:09.761 - info: hm-rpc.1 Connected 2019-06-04 08:07:09.762 - debug: hm-rpc.1 clear connecting interval 2019-06-04 08:07:09.762 - debug: hm-rpc.1 start ping interval 2019-06-04 08:07:09.765 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8 created 2019-06-04 08:07:09.769 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7 created 2019-06-04 08:07:09.777 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6 created 2019-06-04 08:07:09.783 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5 created 2019-06-04 08:07:09.789 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4 created 2019-06-04 08:07:09.792 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3 created 2019-06-04 08:07:09.799 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2 created 2019-06-04 08:07:09.802 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1 created 2019-06-04 08:07:09.808 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0 created 2019-06-04 08:07:09.813 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636 created 2019-06-04 08:07:09.814 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11 2019-06-04 08:07:09.818 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.831 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.AES_KEY extended 2019-06-04 08:07:09.858 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.CONFIG_PENDING extended 2019-06-04 08:07:09.858 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.DEVICE_IN_BOOTLOADER extended 2019-06-04 08:07:09.859 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.LOWBAT extended 2019-06-04 08:07:09.859 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.RSSI_DEVICE extended 2019-06-04 08:07:09.862 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.RSSI_PEER extended 2019-06-04 08:07:09.862 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.STICKY_UNREACH extended 2019-06-04 08:07:09.863 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.UNREACH extended 2019-06-04 08:07:09.863 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.UPDATE_PENDING extended 2019-06-04 08:07:09.864 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.864 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.868 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.INSTALL_TEST extended 2019-06-04 08:07:09.873 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_CONT extended 2019-06-04 08:07:09.895 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG extended 2019-06-04 08:07:09.896 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.896 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_SHORT extended 2019-06-04 08:07:09.897 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.897 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.904 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.INSTALL_TEST extended 2019-06-04 08:07:09.904 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_CONT extended 2019-06-04 08:07:09.910 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG extended 2019-06-04 08:07:09.910 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.911 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_SHORT extended 2019-06-04 08:07:09.911 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.911 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.916 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.INSTALL_TEST extended 2019-06-04 08:07:09.922 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_CONT extended 2019-06-04 08:07:09.922 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG extended 2019-06-04 08:07:09.923 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.923 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_SHORT extended 2019-06-04 08:07:09.924 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.924 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.937 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.INSTALL_TEST extended 2019-06-04 08:07:09.937 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_CONT extended 2019-06-04 08:07:09.938 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG extended 2019-06-04 08:07:09.938 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.939 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_SHORT extended 2019-06-04 08:07:09.939 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.939 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.948 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.INSTALL_TEST extended 2019-06-04 08:07:09.954 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_CONT extended 2019-06-04 08:07:09.954 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG extended 2019-06-04 08:07:09.955 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.955 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_SHORT extended 2019-06-04 08:07:09.956 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.956 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.960 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.INSTALL_TEST extended 2019-06-04 08:07:09.972 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_CONT extended 2019-06-04 08:07:09.973 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG extended 2019-06-04 08:07:09.973 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.974 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_SHORT extended 2019-06-04 08:07:09.974 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.975 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.979 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.INSTALL_TEST extended 2019-06-04 08:07:09.985 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_CONT extended 2019-06-04 08:07:09.986 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG extended 2019-06-04 08:07:09.987 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE extended 2019-06-04 08:07:09.987 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_SHORT extended 2019-06-04 08:07:09.987 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 08:07:09.988 - debug: hm-rpc.1 paramset cache hit 2019-06-04 08:07:09.993 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.INSTALL_TEST extended 2019-06-04 08:07:10.007 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_CONT extended 2019-06-04 08:07:10.008 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG extended 2019-06-04 08:07:10.014 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE extended 2019-06-04 08:07:10.015 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_SHORT extended 2019-06-04 08:07:10.428 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:1,TEMPERATURE,36.2 2019-06-04 08:07:10.429 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:1","TEMPERATURE",36.2] 2019-06-04 08:07:10.429 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.1.TEMPERATURE ==> UNIT: "°C" (min: -150, max: 150) From "36.2" => "36.2" 2019-06-04 08:07:10.446 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:2,TEMPERATURE,37.8 2019-06-04 08:07:10.446 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:2","TEMPERATURE",37.8] 2019-06-04 08:07:10.448 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.2.TEMPERATURE ==> UNIT: "°C" (min: -150, max: 150) From "37.8" => "37.8" 2019-06-04 08:07:10.450 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:3,TEMPERATURE,-1.6 2019-06-04 08:07:10.450 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:3","TEMPERATURE",-1.6] 2019-06-04 08:07:10.451 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.3.TEMPERATURE ==> UNIT: "°C" (min: -150, max: 150) From "-1.6" => "-1.6" 2019-06-04 08:07:10.451 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:4,TEMPERATURE,1.6 2019-06-04 08:07:10.454 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:4","TEMPERATURE",1.6] 2019-06-04 08:07:10.454 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.4.TEMPERATURE ==> UNIT: "°C" (min: -150, max: 150) From "1.6" => "1.6" 2019-06-04 08:07:10.455 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:0,LOWBAT,false 2019-06-04 08:07:10.455 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:0","LOWBAT",false] 2019-06-04 08:07:10.455 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.0.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-06-04 08:07:10.457 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:1,LOWBAT,false 2019-06-04 08:07:10.457 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:1","LOWBAT",false] 2019-06-04 08:07:10.458 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.1.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-06-04 08:07:10.458 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:2,LOWBAT,false 2019-06-04 08:07:10.458 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:2","LOWBAT",false] 2019-06-04 08:07:10.460 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.2.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-06-04 08:07:10.460 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:3,LOWBAT,false 2019-06-04 08:07:10.460 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:3","LOWBAT",false] 2019-06-04 08:07:10.461 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.3.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-06-04 08:07:10.461 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:4,LOWBAT,false 2019-06-04 08:07:10.461 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:4","LOWBAT",false] 2019-06-04 08:07:10.463 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.4.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-06-04 08:07:10.463 - debug: hm-rpc.1 xml multicall : hm-rpc.1,MEQ1597335:5,LOWBAT,false 2019-06-04 08:07:10.464 - debug: hm-rpc.1 xmlrpc <- event ["hm-rpc.1","MEQ1597335:5","LOWBAT",false] 2019-06-04 08:07:10.464 - debug: hm-rpc.1 hm-rpc.1.MEQ1597335.5.LOWBAT ==> UNIT: "" (min: false, max: true) From "false" => "false" 2019-06-04 08:07:11.923 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_SHORT to "Display Flur EG:8.PRESS_SHORT" 2019-06-04 08:07:11.930 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE to "Display Flur EG:8.PRESS_LONG_RELEASE" 2019-06-04 08:07:11.933 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG to "Display Flur EG:8.PRESS_LONG" 2019-06-04 08:07:11.937 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_CONT to "Display Flur EG:8.PRESS_CONT" 2019-06-04 08:07:11.941 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.INSTALL_TEST to "Display Flur EG:8.INSTALL_TEST" 2019-06-04 08:07:11.946 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-06-04 08:07:11.955 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_SHORT to "Display Flur EG:7.PRESS_SHORT" 2019-06-04 08:07:11.964 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE to "Display Flur EG:7.PRESS_LONG_RELEASE" 2019-06-04 08:07:11.969 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG to "Display Flur EG:7.PRESS_LONG" 2019-06-04 08:07:11.974 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_CONT to "Display Flur EG:7.PRESS_CONT" 2019-06-04 08:07:11.979 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.INSTALL_TEST to "Display Flur EG:7.INSTALL_TEST" 2019-06-04 08:07:11.984 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-06-04 08:07:11.992 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_SHORT to "Display Flur EG:6.PRESS_SHORT" 2019-06-04 08:07:12.020 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE to "Display Flur EG:6.PRESS_LONG_RELEASE" 2019-06-04 08:07:12.026 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG to "Display Flur EG:6.PRESS_LONG" 2019-06-04 08:07:12.035 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_CONT to "Display Flur EG:6.PRESS_CONT" 2019-06-04 08:07:12.043 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.INSTALL_TEST to "Display Flur EG:6.INSTALL_TEST" 2019-06-04 08:07:12.052 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-06-04 08:07:12.063 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_SHORT to "Display Flur EG:5.PRESS_SHORT" 2019-06-04 08:07:12.067 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE to "Display Flur EG:5.PRESS_LONG_RELEASE" 2019-06-04 08:07:12.072 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG to "Display Flur EG:5.PRESS_LONG" 2019-06-04 08:07:12.079 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_CONT to "Display Flur EG:5.PRESS_CONT" 2019-06-04 08:07:12.085 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.INSTALL_TEST to "Display Flur EG:5.INSTALL_TEST" 2019-06-04 08:07:12.093 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-06-04 08:07:12.109 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_SHORT to "Display Flur EG:4.PRESS_SHORT" 2019-06-04 08:07:12.123 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE to "Display Flur EG:4.PRESS_LONG_RELEASE" 2019-06-04 08:07:12.137 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG to "Display Flur EG:4.PRESS_LONG" 2019-06-04 08:07:12.148 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_CONT to "Display Flur EG:4.PRESS_CONT" 2019-06-04 08:07:12.158 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.INSTALL_TEST to "Display Flur EG:4.INSTALL_TEST" 2019-06-04 08:07:12.167 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-06-04 08:07:12.179 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_SHORT to "Display Flur EG:3.PRESS_SHORT" 2019-06-04 08:07:12.194 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE to "Display Flur EG:3.PRESS_LONG_RELEASE" 2019-06-04 08:07:12.207 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG to "Display Flur EG:3.PRESS_LONG" 2019-06-04 08:07:12.218 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_CONT to "Display Flur EG:3.PRESS_CONT" 2019-06-04 08:07:12.229 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.INSTALL_TEST to "Display Flur EG:3.INSTALL_TEST" 2019-06-04 08:07:12.239 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-06-04 08:07:12.249 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_SHORT to "Display Flur EG:2.PRESS_SHORT" 2019-06-04 08:07:12.260 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE to "Display Flur EG:2.PRESS_LONG_RELEASE" 2019-06-04 08:07:12.269 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG to "Display Flur EG:2.PRESS_LONG" 2019-06-04 08:07:12.276 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_CONT to "Display Flur EG:2.PRESS_CONT" 2019-06-04 08:07:12.280 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.INSTALL_TEST to "Display Flur EG:2.INSTALL_TEST" 2019-06-04 08:07:12.287 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-06-04 08:07:12.299 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_SHORT to "Display Flur EG:1.PRESS_SHORT" 2019-06-04 08:07:12.313 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE to "Display Flur EG:1.PRESS_LONG_RELEASE" 2019-06-04 08:07:12.319 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG to "Display Flur EG:1.PRESS_LONG" 2019-06-04 08:07:12.326 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_CONT to "Display Flur EG:1.PRESS_CONT" 2019-06-04 08:07:12.328 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.INSTALL_TEST to "Display Flur EG:1.INSTALL_TEST" 2019-06-04 08:07:12.333 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-06-04 08:07:12.338 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.UPDATE_PENDING to "Display Flur EG:0.UPDATE_PENDING" 2019-06-04 08:07:12.344 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.UNREACH to "Display Flur EG:0.UNREACH" 2019-06-04 08:07:12.349 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.STICKY_UNREACH to "Display Flur EG:0.STICKY_UNREACH" 2019-06-04 08:07:12.354 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.RSSI_PEER to "Display Flur EG:0.RSSI_PEER" 2019-06-04 08:07:12.359 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.RSSI_DEVICE to "Display Flur EG:0.RSSI_DEVICE" 2019-06-04 08:07:12.364 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.LOWBAT to "Display Flur EG:0.LOWBAT" 2019-06-04 08:07:12.370 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.DEVICE_IN_BOOTLOADER to "Display Flur EG:0.DEVICE_IN_BOOTLOADER" 2019-06-04 08:07:12.383 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.CONFIG_PENDING to "Display Flur EG:0.CONFIG_PENDING" 2019-06-04 08:07:12.387 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.AES_KEY to "Display Flur EG:0.AES_KEY" 2019-06-04 08:07:12.391 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-06-04 08:07:12.397 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-06-04 08:07:12.825 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-06-04 08:07:12.825 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.2" enabled 2019-06-04 08:07:12.846 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.2 started with pid 30204 2019-06-04 08:07:13.382 - debug: hm-rpc.2 objectDB connected 2019-06-04 08:07:13.426 - debug: hm-rpc.2 statesDB connected 2019-06-04 08:07:13.564 - info: hm-rpc.2 starting. Version 1.9.13 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-06-04 08:07:13.839 - info: hm-rpc.2 xmlrpc server is trying to listen on 192.168.178.86:12010 2019-06-04 08:07:13.840 - info: hm-rpc.2 xmlrpc client is trying to connect to 192.168.178.28:2010/ with ["http://192.168.178.86:12010","hm-rpc.2"] 2019-06-04 08:07:13.842 - debug: hm-rpc.2 Connect... 2019-06-04 08:07:13.842 - debug: hm-rpc.2 xmlrpc -> 192.168.178.28:2010/ init ["http://192.168.178.86:12010","hm-rpc.2"] 2019-06-04 08:07:13.847 - debug: hm-rpc.2 start connecting interval 2019-06-04 08:07:13.880 - info: hm-rpc.2 Connected 2019-06-04 08:07:13.881 - debug: hm-rpc.2 clear connecting interval 2019-06-04 08:07:13.881 - debug: hm-rpc.2 start ping interval 2019-06-04 08:07:13.911 - info: hm-rpc.2 xmlrpc <- listDevices ["hm-rpc.2"] 2019-06-04 08:07:13.933 - info: hm-rpc.2 xmlrpc -> 0 devices 2019-06-04 08:07:14.800 - info: hm-rpc.2 xmlrpc <- newDevices 303 2019-06-04 08:07:14.831 - info: hm-rpc.2 new HmIP devices/channels after filter: 0

foxriver76 commented 5 years ago

@Knallochse, danke auch für deine Geduld beim testen, bitte jetzt nochmal.

Knallochse commented 5 years ago

Hallo @foxriver76

Unter den Objekten sieht es gut aus, EPAPER_LINE; EPAPER_ICON etc. sind vorhanden ;-) Screenshot14

Und das debuglog dazu:

2019-06-04 12:43:39.913 - info: iobroker upload hm-rpc 2019-06-04 12:43:40.540 - info: iobroker got /opt/iobroker/node_modules/iobroker.hm-rpc/admin 2019-06-04 12:43:40.634 - info: iobroker upload [200] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/index_m.html index_m.html text/html 2019-06-04 12:43:43.561 - info: iobroker upload [150] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/75_hm-pb-2-wm55_thumb.png icons/75_hm-pb-2-wm55_thumb.png image/png 2019-06-04 12:43:46.445 - info: iobroker upload [100] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/27_hmw-lc-bl1-dr_thumb.png icons/27_hmw-lc-bl1-dr_thumb.png image/png 2019-06-04 12:43:47.000 - info: iobroker upload [90] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/188_hmip-etrv-c_thumb.png icons/188_hmip-etrv-c_thumb.png image/png 2019-06-04 12:43:47.612 - info: iobroker upload [80] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/179_hmip-swdm-b2_thumb.png icons/179_hmip-swdm-b2_thumb.png image/png 2019-06-04 12:43:48.185 - info: iobroker upload [70] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/169_hmip-swo-pr_thumb.png icons/169_hmip-swo-pr_thumb.png image/png 2019-06-04 12:43:48.759 - info: iobroker upload [60] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/150_hm-lc-dw-wm_thumb.png icons/150_hm-lc-dw-wm_thumb.png image/png 2019-06-04 12:43:49.331 - info: iobroker upload [50] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/140_alpha-ip-rgb_thumb.png icons/140_alpha-ip-rgb_thumb.png image/png 2019-06-04 12:43:49.906 - info: iobroker upload [40] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/132_hmip-smo_thumb.png icons/132_hmip-smo_thumb.png image/png 2019-06-04 12:43:50.487 - info: iobroker upload [30] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/121_hmip-wth_thumb.png icons/121_hmip-wth_thumb.png image/png 2019-06-04 12:43:51.057 - info: iobroker upload [20] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm_thumb.png icons/113_hmip-psm_thumb.png image/png 2019-06-04 12:43:51.114 - info: iobroker upload [19] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-uk_thumb.png icons/113_hmip-psm-uk_thumb.png image/png 2019-06-04 12:43:51.175 - info: iobroker upload [18] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-pe_thumb.png icons/113_hmip-psm-pe_thumb.png image/png 2019-06-04 12:43:51.232 - info: iobroker upload [17] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-it_thumb.png icons/113_hmip-psm-it_thumb.png image/png 2019-06-04 12:43:51.289 - info: iobroker upload [16] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/113_hmip-psm-ch_thumb.png icons/113_hmip-psm-ch_thumb.png image/png 2019-06-04 12:43:51.349 - info: iobroker upload [15] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/112_hmip-wrc2_thumb.png icons/112_hmip-wrc2_thumb.png image/png 2019-06-04 12:43:51.410 - info: iobroker upload [14] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/111_hm-lc-rgbw-wm_thumb.png icons/111_hm-lc-rgbw-wm_thumb.png image/png 2019-06-04 12:43:51.468 - info: iobroker upload [13] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/110_hm-es-pmsw1-dr_thump.png icons/110_hm-es-pmsw1-dr_thump.png image/png 2019-06-04 12:43:51.526 - info: iobroker upload [12] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/109_hm-lc-sw1-pl-ct_thump.png icons/109_hm-lc-sw1-pl-ct_thump.png image/png 2019-06-04 12:43:51.583 - info: iobroker upload [11] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/108_hm-rc-dis-h-x-eu_thump.png icons/108_hm-rc-dis-h-x-eu_thump.png image/png 2019-06-04 12:43:51.644 - info: iobroker upload [10] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R5_thumb.png icons/107_hm-es-pmsw1-pl-R5_thumb.png image/png 2019-06-04 12:43:51.701 - info: iobroker upload [9] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R4_thumb.png icons/107_hm-es-pmsw1-pl-R4_thumb.png image/png 2019-06-04 12:43:51.758 - info: iobroker upload [8] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R3_thumb.png icons/107_hm-es-pmsw1-pl-R3_thumb.png image/png 2019-06-04 12:43:51.816 - info: iobroker upload [7] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/107_hm-es-pmsw1-pl-R2_thumb.png icons/107_hm-es-pmsw1-pl-R2_thumb.png image/png 2019-06-04 12:43:51.873 - info: iobroker upload [6] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/105_hm-sec-sd-2-team_thumb.png icons/105_hm-sec-sd-2-team_thumb.png image/png 2019-06-04 12:43:51.929 - info: iobroker upload [5] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/104_hm-sec-sd-2_thumb.png icons/104_hm-sec-sd-2_thumb.png image/png 2019-06-04 12:43:51.986 - info: iobroker upload [4] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/103_hm-sen-mdir-wm55_thumb.png icons/103_hm-sen-mdir-wm55_thumb.png image/png 2019-06-04 12:43:52.042 - info: iobroker upload [3] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/102_hm-es-tx-wm_thumb.png icons/102_hm-es-tx-wm_thumb.png image/png 2019-06-04 12:43:52.098 - info: iobroker upload [2] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/101_hm-sen-db-pcb_thumb.png icons/101_hm-sen-db-pcb_thumb.png image/png 2019-06-04 12:43:52.157 - info: iobroker upload [1] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/icons/100_hm-rc-8_thumb.png icons/100_hm-rc-8_thumb.png image/png 2019-06-04 12:43:52.217 - info: iobroker upload [0] hm-rpc.admin /opt/iobroker/node_modules/iobroker.hm-rpc/admin/homematic.png homematic.png image/png 2019-06-04 12:43:54.364 - info: iobroker exit 0 2019-06-04 12:44:02.140 - info: host.buanet-iobroker1 object change system.adapter.hm-rega.0 2019-06-04 12:44:02.168 - info: host.buanet-iobroker1 instance system.adapter.hm-rega.0 started with pid 5680 2019-06-04 12:44:03.327 - info: hm-rega.0 starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.hm-rega, node: v8.14.0 2019-06-04 12:44:03.425 - info: hm-rega.0 subscribe hm-rpc.1.BidCoS-RF.50.PRESS_SHORT 2019-06-04 12:44:03.489 - info: hm-rega.0 ReGaHSS 192.168.178.28 up 2019-06-04 12:44:03.549 - info: hm-rega.0 time difference local-ccu 1s 2019-06-04 12:44:03.595 - info: hm-rega.0 added/updated 2 favorites to enum.favorites 2019-06-04 12:44:03.651 - info: hm-rega.0 added/updated functions to enum.functions 2019-06-04 12:44:03.697 - info: hm-rega.0 added/updated rooms to enum.rooms 2019-06-04 12:44:05.647 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-06-04 12:44:05.654 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-06-04 12:44:05.659 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-06-04 12:44:05.664 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-06-04 12:44:05.671 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-06-04 12:44:05.676 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-06-04 12:44:05.680 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-06-04 12:44:05.686 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-06-04 12:44:05.691 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-06-04 12:44:05.697 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-06-04 12:44:05.761 - info: hm-rega.0 got 226 programs 2019-06-04 12:44:05.954 - info: hm-rega.0 added/updated 226 programs 2019-06-04 12:44:05.954 - info: hm-rega.0 deleted 0 programs 2019-06-04 12:44:07.692 - info: hm-rega.0 got 199 variables 2019-06-04 12:44:07.840 - info: hm-rega.0 added/updated 199 variables 2019-06-04 12:44:07.840 - info: hm-rega.0 deleted 0 variables 2019-06-04 12:44:07.841 - info: hm-rega.0 request state values 2019-06-04 12:44:10.805 - info: host.buanet-iobroker1 object change system.adapter.hm-rega.0 2019-06-04 12:44:10.805 - info: host.buanet-iobroker1 stopInstance system.adapter.hm-rega.0 2019-06-04 12:44:10.805 - info: host.buanet-iobroker1 stopInstance system.adapter.hm-rega.0 killing pid 5680 2019-06-04 12:44:13.446 - info: host.buanet-iobroker1 instance system.adapter.hm-rega.0 started with pid 5692 2019-06-04 12:44:13.585 - info: host.buanet-iobroker1 instance system.adapter.hm-rega.0 terminated with code 0 (OK) 2019-06-04 12:44:14.748 - info: hm-rega.0 starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.hm-rega, node: v8.14.0 2019-06-04 12:44:14.763 - info: hm-rega.0 subscribe hm-rpc.1.BidCoS-RF.50.PRESS_SHORT 2019-06-04 12:44:14.821 - info: hm-rega.0 ReGaHSS 192.168.178.28 up 2019-06-04 12:44:14.884 - info: hm-rega.0 time difference local-ccu 1s 2019-06-04 12:44:14.921 - info: hm-rega.0 added/updated 2 favorites to enum.favorites 2019-06-04 12:44:14.960 - info: hm-rega.0 added/updated functions to enum.functions 2019-06-04 12:44:15.023 - info: hm-rega.0 added/updated rooms to enum.rooms 2019-06-04 12:44:16.983 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.0 2019-06-04 12:44:16.984 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.0" enabled 2019-06-04 12:44:17.080 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.0 started with pid 5702 2019-06-04 12:44:17.899 - debug: hm-rpc.0 objectDB connected 2019-06-04 12:44:17.945 - debug: hm-rpc.0 statesDB connected 2019-06-04 12:44:17.986 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-06-04 12:44:17.999 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-06-04 12:44:18.005 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-06-04 12:44:18.011 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-06-04 12:44:18.022 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-06-04 12:44:18.031 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-06-04 12:44:18.041 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-06-04 12:44:18.048 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-06-04 12:44:18.056 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-06-04 12:44:18.068 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-06-04 12:44:18.081 - info: hm-rpc.0 starting. Version 1.9.13 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-06-04 12:44:18.525 - info: hm-rega.0 got 226 programs 2019-06-04 12:44:18.724 - info: hm-rega.0 added/updated 226 programs 2019-06-04 12:44:18.800 - info: hm-rpc.0 binrpc server is trying to listen on 192.168.178.86:18701 2019-06-04 12:44:18.800 - info: hm-rpc.0 binrpc client is trying to connect to 192.168.178.28:8701/ with ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-06-04 12:44:18.803 - debug: hm-rpc.0 Connect... 2019-06-04 12:44:18.803 - debug: hm-rpc.0 binrpc -> 192.168.178.28:8701/ init ["xmlrpc_bin://192.168.178.86:18701","hm-rpc.0"] 2019-06-04 12:44:18.809 - debug: hm-rpc.0 start connecting interval 2019-06-04 12:44:18.725 - info: hm-rega.0 deleted 0 programs 2019-06-04 12:44:20.028 - error: javascript.0 Error in callback: TypeError: Cannot read property 'substr' of undefined 2019-06-04 12:44:20.938 - info: hm-rpc.0 binrpc -> listDevices 324 2019-06-04 12:44:21.011 - info: hm-rpc.0 new CUxD devices/channels after filter: 0 2019-06-04 12:44:21.013 - info: hm-rpc.0 Connected 2019-06-04 12:44:21.014 - debug: hm-rpc.0 clear connecting interval 2019-06-04 12:44:21.014 - debug: hm-rpc.0 start ping interval 2019-06-04 12:44:21.021 - info: hm-rega.0 got 199 variables 2019-06-04 12:44:21.160 - info: hm-rega.0 added/updated 199 variables 2019-06-04 12:44:21.161 - info: hm-rega.0 deleted 0 variables 2019-06-04 12:44:21.161 - info: hm-rega.0 request state values 2019-06-04 12:44:21.777 - info: hm-rega.0 got state values 2019-06-04 12:44:23.517 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.1 2019-06-04 12:44:23.518 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.1" enabled 2019-06-04 12:44:23.576 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.1 started with pid 5712 2019-06-04 12:44:24.332 - debug: hm-rpc.1 objectDB connected 2019-06-04 12:44:24.402 - debug: hm-rpc.1 statesDB connected 2019-06-04 12:44:24.529 - info: hm-rpc.1 starting. Version 1.9.13 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-06-04 12:44:24.926 - info: hm-rpc.1 xmlrpc server is trying to listen on 192.168.178.86:12001 2019-06-04 12:44:24.927 - info: hm-rpc.1 xmlrpc client is trying to connect to 192.168.178.28:2001/ with ["http://192.168.178.86:12001","hm-rpc.1"] 2019-06-04 12:44:24.928 - debug: hm-rpc.1 Connect... 2019-06-04 12:44:24.929 - debug: hm-rpc.1 xmlrpc -> 192.168.178.28:2001/ init ["http://192.168.178.86:12001","hm-rpc.1"] 2019-06-04 12:44:24.934 - debug: hm-rpc.1 start connecting interval 2019-06-04 12:44:24.958 - info: hm-rpc.1 xmlrpc <- system.listMethods ["hm-rpc.1"] 2019-06-04 12:44:24.968 - info: hm-rpc.1 xmlrpc <- listDevices ["hm-rpc.1"] 2019-06-04 12:44:24.992 - info: hm-rpc.1 xmlrpc -> 235 devices 2019-06-04 12:44:25.170 - info: hm-rpc.1 xmlrpc <- newDevices 10 2019-06-04 12:44:25.188 - info: hm-rpc.1 Connected 2019-06-04 12:44:25.189 - debug: hm-rpc.1 clear connecting interval 2019-06-04 12:44:25.189 - debug: hm-rpc.1 start ping interval 2019-06-04 12:44:25.763 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8 created 2019-06-04 12:44:25.773 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7 created 2019-06-04 12:44:25.841 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6 created 2019-06-04 12:44:25.848 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5 created 2019-06-04 12:44:25.854 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4 created 2019-06-04 12:44:26.056 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3 created 2019-06-04 12:44:26.557 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2 created 2019-06-04 12:44:26.588 - info: host.buanet-iobroker1 object change system.adapter.hm-rpc.2 2019-06-04 12:44:26.588 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1 created 2019-06-04 12:44:26.588 - info: host.buanet-iobroker1 "system.adapter.hm-rpc.2" enabled 2019-06-04 12:44:26.613 - info: host.buanet-iobroker1 instance system.adapter.hm-rpc.2 started with pid 5722 2019-06-04 12:44:26.633 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0 created 2019-06-04 12:44:26.660 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636 created 2019-06-04 12:44:26.661 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.MAINTENANCE.11 2019-06-04 12:44:26.662 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta on {} 2019-06-04 12:44:26.662 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta on {} 2019-06-04 12:44:26.663 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta on {"AES_KEY":{"DEFAULT":0,"FLAGS":0,"ID":"AES_KEY","MAX":127,"MIN":0,"OPERATIONS":1,"TAB_ORDER":8,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"DEVICE_IN_BOOTLOADER":{"DEFAULT":false,"FLAGS":9,"ID":"DEVICE_IN_BOOTLOADER","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":6,"TYPE":"BOOL","UNIT":""},"LOWBAT":{"DEFAULT":false,"FLAGS":9,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"BOOL","UNIT":""},"RSSI_DEVICE":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_DEVICE","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"INTEGER","UNIT":""},"STICKY_UNREACH":{"DEFAULT":false,"FLAGS":25,"ID":"STICKY_UNREACH","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"UNREACH":{"DEFAULT":false,"FLAGS":9,"ID":"UNREACH","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"UPDATE_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"UPDATE_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":7,"TYPE":"BOOL","UNIT":""}} 2019-06-04 12:44:26.663 - debug: hm-rpc.1 [EPAPER] Add E-Paper to Meta on {} 2019-06-04 12:44:26.665 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.690 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.AES_KEY extended 2019-06-04 12:44:26.693 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.CONFIG_PENDING extended 2019-06-04 12:44:26.695 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.DEVICE_IN_BOOTLOADER extended 2019-06-04 12:44:26.696 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.LOWBAT extended 2019-06-04 12:44:26.727 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.RSSI_DEVICE extended 2019-06-04 12:44:26.727 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.RSSI_PEER extended 2019-06-04 12:44:26.729 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.STICKY_UNREACH extended 2019-06-04 12:44:26.730 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.UNREACH extended 2019-06-04 12:44:26.730 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.UPDATE_PENDING extended 2019-06-04 12:44:26.731 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE2 extended 2019-06-04 12:44:26.732 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON2 extended 2019-06-04 12:44:26.732 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE3 extended 2019-06-04 12:44:26.733 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON3 extended 2019-06-04 12:44:26.733 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_LINE4 extended 2019-06-04 12:44:26.734 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_ICON4 extended 2019-06-04 12:44:26.734 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_SIGNAL extended 2019-06-04 12:44:26.736 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.0.EPAPER_TONE extended 2019-06-04 12:44:26.737 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.737 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.787 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.INSTALL_TEST extended 2019-06-04 12:44:26.794 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_CONT extended 2019-06-04 12:44:26.795 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG extended 2019-06-04 12:44:26.797 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE extended 2019-06-04 12:44:26.798 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.1.PRESS_SHORT extended 2019-06-04 12:44:26.799 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.799 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.844 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.INSTALL_TEST extended 2019-06-04 12:44:26.845 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_CONT extended 2019-06-04 12:44:26.846 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG extended 2019-06-04 12:44:26.846 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE extended 2019-06-04 12:44:26.847 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.2.PRESS_SHORT extended 2019-06-04 12:44:26.847 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.848 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.902 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.INSTALL_TEST extended 2019-06-04 12:44:26.904 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_CONT extended 2019-06-04 12:44:26.906 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG extended 2019-06-04 12:44:26.908 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE extended 2019-06-04 12:44:26.910 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.3.PRESS_SHORT extended 2019-06-04 12:44:26.910 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.910 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.948 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.INSTALL_TEST extended 2019-06-04 12:44:26.949 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_CONT extended 2019-06-04 12:44:26.951 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG extended 2019-06-04 12:44:26.952 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE extended 2019-06-04 12:44:26.952 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.4.PRESS_SHORT extended 2019-06-04 12:44:26.953 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.953 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.961 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.INSTALL_TEST extended 2019-06-04 12:44:26.966 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_CONT extended 2019-06-04 12:44:26.967 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG extended 2019-06-04 12:44:26.968 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE extended 2019-06-04 12:44:26.968 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.5.PRESS_SHORT extended 2019-06-04 12:44:26.969 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.969 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:26.974 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.INSTALL_TEST extended 2019-06-04 12:44:26.977 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_CONT extended 2019-06-04 12:44:26.977 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG extended 2019-06-04 12:44:26.978 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE extended 2019-06-04 12:44:26.986 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.6.PRESS_SHORT extended 2019-06-04 12:44:26.989 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:26.990 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:27.061 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.INSTALL_TEST extended 2019-06-04 12:44:27.063 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_CONT extended 2019-06-04 12:44:27.065 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG extended 2019-06-04 12:44:27.066 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE extended 2019-06-04 12:44:27.067 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.7.PRESS_SHORT extended 2019-06-04 12:44:27.069 - debug: hm-rpc.1 getValueParamsets HM-Dis-EP-WM55.KEY.11 2019-06-04 12:44:27.070 - debug: hm-rpc.1 paramset cache hit 2019-06-04 12:44:27.083 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.INSTALL_TEST extended 2019-06-04 12:44:27.089 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_CONT extended 2019-06-04 12:44:27.121 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG extended 2019-06-04 12:44:27.128 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE extended 2019-06-04 12:44:27.135 - debug: hm-rpc.1 object hm-rpc.1.NEQ0711636.8.PRESS_SHORT extended 2019-06-04 12:44:27.625 - debug: hm-rpc.2 objectDB connected 2019-06-04 12:44:27.668 - debug: hm-rpc.2 statesDB connected 2019-06-04 12:44:27.692 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8 to "Display Flur EG:8" 2019-06-04 12:44:27.716 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7 to "Display Flur EG:7" 2019-06-04 12:44:27.727 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6 to "Display Flur EG:6" 2019-06-04 12:44:27.733 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5 to "Display Flur EG:5" 2019-06-04 12:44:27.738 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4 to "Display Flur EG:4" 2019-06-04 12:44:27.742 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3 to "Display Flur EG:3" 2019-06-04 12:44:27.747 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2 to "Display Flur EG:2" 2019-06-04 12:44:27.751 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1 to "Display Flur EG:1" 2019-06-04 12:44:27.755 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0 to "Display Flur EG:0" 2019-06-04 12:44:27.760 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636 to "Display Flur EG" 2019-06-04 12:44:27.787 - info: hm-rpc.2 starting. Version 1.9.13 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.14.0 2019-06-04 12:44:28.174 - info: hm-rpc.2 xmlrpc server is trying to listen on 192.168.178.86:12010 2019-06-04 12:44:28.175 - info: hm-rpc.2 xmlrpc client is trying to connect to 192.168.178.28:2010/ with ["http://192.168.178.86:12010","hm-rpc.2"] 2019-06-04 12:44:28.176 - debug: hm-rpc.2 Connect... 2019-06-04 12:44:28.177 - debug: hm-rpc.2 xmlrpc -> 192.168.178.28:2010/ init ["http://192.168.178.86:12010","hm-rpc.2"] 2019-06-04 12:44:28.183 - debug: hm-rpc.2 start connecting interval 2019-06-04 12:44:28.210 - info: hm-rpc.2 Connected 2019-06-04 12:44:28.211 - debug: hm-rpc.2 clear connecting interval 2019-06-04 12:44:28.211 - debug: hm-rpc.2 start ping interval 2019-06-04 12:44:28.248 - info: hm-rpc.2 xmlrpc <- listDevices ["hm-rpc.2"] 2019-06-04 12:44:28.275 - info: hm-rpc.2 xmlrpc -> 0 devices 2019-06-04 12:44:29.433 - info: hm-rpc.2 xmlrpc <- newDevices 303 2019-06-04 12:44:29.500 - info: hm-rpc.2 new HmIP devices/channels after filter: 0 2019-06-04 12:44:29.607 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_SHORT to "Display Flur EG:8.PRESS_SHORT" 2019-06-04 12:44:29.623 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG_RELEASE to "Display Flur EG:8.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.637 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_LONG to "Display Flur EG:8.PRESS_LONG" 2019-06-04 12:44:29.647 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.PRESS_CONT to "Display Flur EG:8.PRESS_CONT" 2019-06-04 12:44:29.658 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.8.INSTALL_TEST to "Display Flur EG:8.INSTALL_TEST" 2019-06-04 12:44:29.667 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_SHORT to "Display Flur EG:7.PRESS_SHORT" 2019-06-04 12:44:29.681 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG_RELEASE to "Display Flur EG:7.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.692 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_LONG to "Display Flur EG:7.PRESS_LONG" 2019-06-04 12:44:29.700 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.PRESS_CONT to "Display Flur EG:7.PRESS_CONT" 2019-06-04 12:44:29.708 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.7.INSTALL_TEST to "Display Flur EG:7.INSTALL_TEST" 2019-06-04 12:44:29.714 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_SHORT to "Display Flur EG:6.PRESS_SHORT" 2019-06-04 12:44:29.728 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG_RELEASE to "Display Flur EG:6.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.735 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_LONG to "Display Flur EG:6.PRESS_LONG" 2019-06-04 12:44:29.744 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.PRESS_CONT to "Display Flur EG:6.PRESS_CONT" 2019-06-04 12:44:29.753 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.6.INSTALL_TEST to "Display Flur EG:6.INSTALL_TEST" 2019-06-04 12:44:29.802 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_SHORT to "Display Flur EG:5.PRESS_SHORT" 2019-06-04 12:44:29.833 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG_RELEASE to "Display Flur EG:5.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.844 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_LONG to "Display Flur EG:5.PRESS_LONG" 2019-06-04 12:44:29.853 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.PRESS_CONT to "Display Flur EG:5.PRESS_CONT" 2019-06-04 12:44:29.862 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.5.INSTALL_TEST to "Display Flur EG:5.INSTALL_TEST" 2019-06-04 12:44:29.873 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_SHORT to "Display Flur EG:4.PRESS_SHORT" 2019-06-04 12:44:29.878 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG_RELEASE to "Display Flur EG:4.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.884 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_LONG to "Display Flur EG:4.PRESS_LONG" 2019-06-04 12:44:29.891 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.PRESS_CONT to "Display Flur EG:4.PRESS_CONT" 2019-06-04 12:44:29.896 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.4.INSTALL_TEST to "Display Flur EG:4.INSTALL_TEST" 2019-06-04 12:44:29.901 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_SHORT to "Display Flur EG:3.PRESS_SHORT" 2019-06-04 12:44:29.911 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG_RELEASE to "Display Flur EG:3.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.926 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_LONG to "Display Flur EG:3.PRESS_LONG" 2019-06-04 12:44:29.931 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.PRESS_CONT to "Display Flur EG:3.PRESS_CONT" 2019-06-04 12:44:29.944 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.3.INSTALL_TEST to "Display Flur EG:3.INSTALL_TEST" 2019-06-04 12:44:29.953 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_SHORT to "Display Flur EG:2.PRESS_SHORT" 2019-06-04 12:44:29.962 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG_RELEASE to "Display Flur EG:2.PRESS_LONG_RELEASE" 2019-06-04 12:44:29.972 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_LONG to "Display Flur EG:2.PRESS_LONG" 2019-06-04 12:44:29.982 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.PRESS_CONT to "Display Flur EG:2.PRESS_CONT" 2019-06-04 12:44:29.991 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.2.INSTALL_TEST to "Display Flur EG:2.INSTALL_TEST" 2019-06-04 12:44:30.010 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_SHORT to "Display Flur EG:1.PRESS_SHORT" 2019-06-04 12:44:30.032 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG_RELEASE to "Display Flur EG:1.PRESS_LONG_RELEASE" 2019-06-04 12:44:30.043 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_LONG to "Display Flur EG:1.PRESS_LONG" 2019-06-04 12:44:30.057 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.PRESS_CONT to "Display Flur EG:1.PRESS_CONT" 2019-06-04 12:44:30.074 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.1.INSTALL_TEST to "Display Flur EG:1.INSTALL_TEST" 2019-06-04 12:44:30.090 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_TONE to "Display Flur EG:0.EPAPER_TONE" 2019-06-04 12:44:30.110 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_SIGNAL to "Display Flur EG:0.EPAPER_SIGNAL" 2019-06-04 12:44:30.130 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON4 to "Display Flur EG:0.EPAPER_ICON4" 2019-06-04 12:44:30.155 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE4 to "Display Flur EG:0.EPAPER_LINE4" 2019-06-04 12:44:30.178 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON3 to "Display Flur EG:0.EPAPER_ICON3" 2019-06-04 12:44:30.212 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE3 to "Display Flur EG:0.EPAPER_LINE3" 2019-06-04 12:44:30.231 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_ICON2 to "Display Flur EG:0.EPAPER_ICON2" 2019-06-04 12:44:30.241 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.EPAPER_LINE2 to "Display Flur EG:0.EPAPER_LINE2" 2019-06-04 12:44:30.251 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.UPDATE_PENDING to "Display Flur EG:0.UPDATE_PENDING" 2019-06-04 12:44:30.258 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.UNREACH to "Display Flur EG:0.UNREACH" 2019-06-04 12:44:30.265 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.STICKY_UNREACH to "Display Flur EG:0.STICKY_UNREACH" 2019-06-04 12:44:30.270 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.RSSI_PEER to "Display Flur EG:0.RSSI_PEER" 2019-06-04 12:44:30.285 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.RSSI_DEVICE to "Display Flur EG:0.RSSI_DEVICE" 2019-06-04 12:44:30.295 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.LOWBAT to "Display Flur EG:0.LOWBAT" 2019-06-04 12:44:30.302 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.DEVICE_IN_BOOTLOADER to "Display Flur EG:0.DEVICE_IN_BOOTLOADER" 2019-06-04 12:44:30.309 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.CONFIG_PENDING to "Display Flur EG:0.CONFIG_PENDING" 2019-06-04 12:44:30.318 - info: hm-rega.0 renamed hm-rpc.1.NEQ0711636.0.AES_KEY to "Display Flur EG:0.AES_KEY" 2019-06-04 12:44:45.454 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,CONFIG_PENDING,false 2019-06-04 12:44:45.455 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","CONFIG_PENDING",false] 2019-06-04 12:44:45.455 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.CONFIG_PENDING ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-06-04 12:44:45.456 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,UNREACH,false 2019-06-04 12:44:45.456 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","UNREACH",false] 2019-06-04 12:44:45.456 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.UNREACH ==> UNIT: "undefined" (min: false, max: true) From "false" => "false" 2019-06-04 12:44:45.457 - debug: hm-rpc.2 xml multicall : hm-rpc.2,000A97099C20AB:0,RSSI_DEVICE,-59 2019-06-04 12:44:45.457 - debug: hm-rpc.2 xmlrpc <- event ["hm-rpc.2","000A97099C20AB:0","RSSI_DEVICE",-59] 2019-06-04 12:44:45.457 - debug: hm-rpc.2 hm-rpc.2.000A97099C20AB.0.RSSI_DEVICE ==> UNIT: "undefined" (min: -128, max: 127) From "-59" => "-59"

foxriver76 commented 5 years ago

Top, vielen Dank. Jetzt sollten alle Möglichkeiten abgedeckt sein. Schwere Geburt für so eine "Kleinigkeit" ;-)

intruder7777 commented 5 years ago

Danke dir auch @foxriver76 . Ich habe so ziemlich alles auf iobroker ausgelagert und nutze die CCU nur als Schnittstelle. Da war es wichtig dass das EPaper auch über ikobroker anzusprechen ist. Und @Knallochse ich hoffe du meinst nicht mich bezüglich Ton. Wenn dies so rüber kam bitte ich es zu entschuldigen. Sonnige Grüße