GithubHelp home page GithubHelp logo

iobroker / iobroker.hm-rpc Goto Github PK

View Code? Open in Web Editor NEW
60.0 13.0 25.0 5.24 MB

Connects HomeMatic Interface-Processes to ioBroker

Home Page: www.iobroker.org

License: MIT License

JavaScript 7.47% Shell 0.55% TypeScript 91.98%
iobroker homematic smarthome home-automation xml-rpc ccu

iobroker.hm-rpc's Introduction

Logo

ioBroker HomeMatic RPC Adapter

Build Status Number of Installations Number of Installations NPM version Downloads

NPM

Connects HomeMatic Interface-Processes (BidCos-Services, Homegear and CUxD) via XML-RPC or BIN-RPC to ioBroker

This adapter uses the service Sentry.io to automatically report exceptions and code errors and new device schemas to me as the developer. More details see below!

What is Sentry.io and what is reported to the servers of that company?

Sentry.io is a service for developers to get an overview about errors from their applications. Exactly this is implemented in this adapter.

When the adapter crashes or another Code error happens, this error message that also appears in the ioBroker log is submitted to Sentry. When you have allowed ioBroker GmbH to collect diagnostic data, then also your installation ID (this is just a unique ID without any additional infos about you, email, name or such) is included. This allows Sentry to group errors and show how many unique users are affected by such an error. All of these helps me to provide error-free adapters that basically never crash.

Configuration

HomeMatic Address

Homematic Address is the IP of the HomeMatic CCU respectively the Host that is running the BidCos-Service(s). CCU IP address.

HomeMatic Port

CCU Port.

Usually:

  • 2001 for wireless devices (https: 42001),
  • 2000 for wired devices (https: 42000),
  • 8701 for CUxD daemon,
  • 2010 for Homematic IP devices (https: 42010)
  • 9292 for Virtual Devices (https: 49292)

Daemon

CCU/Homematic can support different types of devices (wired, wireless, HM-IP, CUxD), and for every type you should create the instance of adapter separately.

Protocol

There are two protocols for communication XML-RPC and BIN-RPC. BIN-RPC is faster, but it can be, that the end device does not support it or supports it incorrect. In this case, switch the protocol to XML.

Notice: CUxD can only communicate with BIN-RPC and HM-IP and RFD only via XML-RPC protocol.

Synchronize objects (once)

After very first start the instance read all devices from CCU/Homematic. If you changed the configuration (renamed devices, added or removed devices) you can synchronise the configuration in ioBroker by enabling this option.

The instance will be restarted immediately, synchronize all devices anew and deactivate this option itself.

Adapter Address

This address has to be the IP under which the host that is running the adapter itself is reachable. This address is used by the CCU to connect to the adapter. This address cannot be 0.0.0.0, because CCU/Homematic cannot reach ioBroker under "0.0.0.0" IP address.

Adapter port

The port number on which the ioBroker will run. Let it 0 for automatic selection.

Adapter Callback Address

Sometimes the ioBroker server runs behind the router, to solve this problem (that inbound and outbound addresses are different), this option can be used. Here you can define the IP address of the router, and the router will route the traffic to ioBroker according to the port.

In case of a docker instance, you can write here directly the IP address of the host of the docker. It is also important to route the adapter port (next to adapter address) into the docker container. You can choose there an arbitrary port (e.g., 12001, 12010).

Used if ioBroker runs in Docker.

Check communication interval(sec)

Send pings to CCU/Homematic with such intervall.

Reconnect interval (sec)

How many seconds will be waited before connect attempts.

Don't delete devices on adapter start

If this flag is not activated, the ioBroker will remove devices from configuration if a device is not found at adapter start in CCU/Homematic. Activate this flag to do not delete such a devices. This is to avoid a bug on CCU side, where HM-IP devices are not correctly transmitted to ioBroker and thus will be deleted on the adapter start and be recreated when transmitted, some milliseconds later. The flag is automatically checked when you select HM-IP as daemon. However, when you delete devices while the adapter is running, the adapter will be notified by CCU and will remove devices which are removed on CCU.

Use https

If this flag is activated, the connection will be established via https instead of http. This only works with XML-RPC protocol.

Username and password

If 'use https' is activated, you can fill in the username and password of a CCU user. In case the CCU needs authentication on the API, you have to provide the credentials here.

Custom commands

It is possible to send custom commands, e.g., to read and control the master area of a device which allows the user to configure heating week programs and more.

This is done by sending a message to the adapter, which contains the method as first parameter, followed by an object which has to contain the ID of the target device as well as optional the paramType, which specifies e.g. the MASTER area. Additional parameters have to be sent in the params object.

Examples:

Log all values of the MASTER area of a device:

sendTo('hm-rpc.0', 'getParamset', {ID: 'OEQ1861203', paramType: 'MASTER'}, res => {
    log(JSON.stringify(res));
});

Set an attribute of the MASTER area to a specific value:

sendTo('hm-rpc.0', 'putParamset', {ID: 'OEQ1861203', paramType: 'MASTER', params: {'ENDTIME_FRIDAY_1': 700}}, res => {
    log(JSON.stringify(res));
});

List all devices:

sendTo('hm-rpc.0', 'listDevices', {}, res => {
    log(JSON.stringify(res));
});

Set a value, like the adapter does on stateChange:

sendTo('hm-rpc.1', 'setValue', {ID: '000453D77B9EDF:1', paramType: 'SET_POINT_TEMPERATURE', params: 15}, res => {
    log(JSON.stringify(res));
});

Get the paramsetDescription of a device's channel:

sendTo('hm-rpc.1', 'getParamsetDescription', {ID: '000453D77B9EDF:1', paramType: 'VALUES'}, res => {
    log(JSON.stringify(res));
});

Get firmware information of a device (in this case, we are logging the FW status):

sendTo('hm-rpc.1', 'getDeviceDescription', {ID: '0000S8179E3DBE', paramType: 'FIRMWARE'}, res => {
    if (!res.error) {
        log(`FW status: ${res.result.FIRMWARE_UPDATE_STATE}`)
    } else {
        log(res.error)
    }
});

Additional information

If you use HomeMatic switches or remotes, their button states will only be acknowledged by CCU and thus by ioBroker when you have a running 'dummy' program on the CCU which depends on the related switch or remote.

You can use a single dummy program for multiple buttons, by just adding all button states in the if-clause connected via or/and operator. The then-clause of the program can remain empty. Now your state should be updated on a button press.

Development

To update all available images execute npm run update-images

Changelog

1.17.0 (2024-03-18)

  • (klein0r) Fixed encrypted configuration

1.16.1 (2024-03-05)

  • (bluefox) Improved the configuration layout

1.16.0 (2023-12-25)

  • (JeyCee) Added support for the device manager
  • (bluefox) Added JSON config
  • (foxriver76) port to adapters internal setTimeout/setInterval methods

1.15.19 (2023-08-08)

  • (bluefox) Updated packages

1.15.18 (2023-05-08)

  • (foxriver76) no longer support EOL versions, please upgrade to node 16

Older entries

here

License

The MIT License (MIT)

Copyright (c) 2014-2024 bluefox [email protected]

Copyright (c) 2014 hobbyquaker

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

iobroker.hm-rpc's People

Contributors

angelnu avatar apollon77 avatar buzzy1337 avatar dependabot[bot] avatar foxriver76 avatar germanbluefox avatar hirsch-de avatar hobbyquaker avatar holuba avatar homoran avatar husky-koglhof avatar hypnos3 avatar jens-maus avatar jey-cee avatar johnnybyzhang avatar jomjol avatar klein0r avatar ldittmar81 avatar lgtm-migrator avatar marvingrieger avatar mcm1957 avatar meistertr avatar paul53 avatar strunzdesign avatar tmhbofh avatar tschombe avatar unclesamswiss avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

iobroker.hm-rpc's Issues

HB-UNI-Sen-WEA Unterstützung

Hallo wie bereits hier:

https://forum.iobroker.net/viewtopic.php?f=30&t=15124

beschrieben werden leider nich alle Datenpunkte in ioBroker angezeigt, anbei die xml ausgäbe des Gerätes aus der ccu

<device name="Wetterstation" ise_id="3761" unreach="false" sticky_unreach="false" config_pending="false"> <channel name="Wetterstation:0" ise_id="3762" visible="" operate=""> <datapoint name="BidCos-RF.JPWEA00002:0.UNREACH" type="UNREACH" ise_id="3782" value="false" valuetype="2" valueunit="" timestamp="1530351032" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:0.STICKY_UNREACH" type="STICKY_UNREACH" ise_id="3778" value="false" valuetype="2" valueunit="" timestamp="1530351032" operations="7"/> <datapoint name="BidCos-RF.JPWEA00002:0.CONFIG_PENDING" type="CONFIG_PENDING" ise_id="3763" value="false" valuetype="2" valueunit="" timestamp="1530351032" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:0.RSSI_DEVICE" type="RSSI_DEVICE" ise_id="3776" value="1" valuetype="8" valueunit="" timestamp="1530351032" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:0.RSSI_PEER" type="RSSI_PEER" ise_id="3777" value="185" valuetype="8" valueunit="" timestamp="1530351032" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:0.DEVICE_IN_BOOTLOADER" type="DEVICE_IN_BOOTLOADER" ise_id="3767" value="false" valuetype="2" valueunit="" timestamp="1530351032" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:0.UPDATE_PENDING" type="UPDATE_PENDING" ise_id="3786" value="false" valuetype="2" valueunit="" timestamp="1530351032" operations="5"/> </channel> <channel name="Wetterstation" ise_id="3790" visible="true" operate="true"> <datapoint name="BidCos-RF.JPWEA00002:1.TEMPERATURE" type="TEMPERATURE" ise_id="3798" value="26.100000" valuetype="4" valueunit="°C" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.AIR_PRESSURE" type="AIR_PRESSURE" ise_id="3791" value="1013.799999" valuetype="4" valueunit="hPa" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.HUMIDITY" type="HUMIDITY" ise_id="3793" value="44" valuetype="16" valueunit="%" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.LUX" type="LUX" ise_id="3796" value="2606.000000" valuetype="4" valueunit="Lux" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.RAIN_COUNTER" type="RAIN_COUNTER" ise_id="3797" value="0.000000" valuetype="4" valueunit="mm" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.WIND_SPEED" type="WIND_SPEED" ise_id="3802" value="0.000000" valuetype="4" valueunit="km/h" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.WIND_DIRECTION" type="WIND_DIRECTION" ise_id="3800" value="0" valuetype="16" valueunit="degree" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.WIND_DIRECTION_RANGE" type="WIND_DIRECTION_RANGE" ise_id="3801" value="0" valuetype="16" valueunit="degree" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.GUST_SPEED" type="GUST_SPEED" ise_id="3792" value="0.000000" valuetype="4" valueunit="km/h" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.UVINDEX" type="UVINDEX" ise_id="3799" value="11" valuetype="16" valueunit="" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.LIGHTNING_COUNTER" type="LIGHTNING_COUNTER" ise_id="3794" value="0" valuetype="16" valueunit="" timestamp="1530357335" operations="5"/> <datapoint name="BidCos-RF.JPWEA00002:1.LIGHTNING_DISTANCE" type="LIGHTNING_DISTANCE" ise_id="3795" value="0" valuetype="16" valueunit="km" timestamp="1530357335" operations="5"/> </channel> </device>

Conflict in server port and homematic rpc daemon port

Hi Bluefox,

in my ioBroker setup I run the rfd daemon in the same host as iobroker. With this setup I found that the hm-rpc tries to create an rpcServer in the same port as rfd (2001). Usually the rfd daemon is started before iobroker and then hm-rpc creates the rpcServer in the next available port (2002) and then it works fine but if for any reason the rfd does not start automaticall (for example because the LAN gateway adapter cannot be connected) then the hm-rpc gets port 2001 and I cannot longer activate the rpc daemon.

Another issue is that even in the good case (hm-rpc getting started after rpc) the hm-rega does not connect to the rpcServer but to the rfd daemon. This does not work: the hm-rega adapter remains in yellow state.

I can prepare a pul request to fix this issue but I would like your advice on the best way to go:

  • the most straigtforward way would be to create another setting "adapter port" in addition to the "homematic port" so that they can be configured with different addresses.
  • a more elegant way might be to use a random port for the rpcServer and write it to an adapter state so that the hm-rega adapter can read it and connect to it.

warn: hm-rpc.1 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-19.KEY.1"

2018-07-01 22:50:27.523 - warn: hm-rpc.1 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-19.KEY.1"

2018-07-01 22:50:27.524 - warn: hm-rpc.1 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"LEVEL":{"ID":"LEVEL","UNIT":"100%","TAB_ORDER":0,"OPERATIONS":7,"FLAGS":2,"TYPE":"FLOAT","MIN":0,"MAX":1,"DEFAULT":0},"OLD_LEVEL":{"ID":"OLD_LEVEL","UNIT":"","TAB_ORDER":1,"OPERATIONS":2,"FLAGS":2,"TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"STOP":{"ID":"STOP","UNIT":"","TAB_ORDER":2,"OPERATIONS":6,"FLAGS":2,"TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"STATE":{"ID":"STATE","UNIT":"","TAB_ORDER":3,"OPERATIONS":7,"FLAGS":2,"TYPE":"BOOL","MIN":false,"MAX":true,"DEFAULT":false},"PRESS_SHORT":{"ID":"PRESS_SHORT","UNIT":"","TAB_ORDER":4,"OPERATIONS":6,"FLAGS":1,"CONTROL":"BUTTON.SHORT","TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"PRESS_LONG":{"ID":"PRESS_LONG","UNIT":"","TAB_ORDER":5,"OPERATIONS":6,"FLAGS":1,"CONTROL":"BUTTON.LONG","TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"CMD_RUNS":{"ID":"CMD_RUNS","UNIT":"","TAB_ORDER":6,"OPERATIONS":2,"FLAGS":2,"TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"CMD_RUNL":{"ID":"CMD_RUNL","UNIT":"","TAB_ORDER":7,"OPERATIONS":2,"FLAGS":2,"TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"CMD_KILL":{"ID":"CMD_KILL","UNIT":"","TAB_ORDER":8,"OPERATIONS":2,"FLAGS":1,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"CMD_EXEC":{"ID":"CMD_EXEC","UNIT":"","TAB_ORDER":9,"OPERATIONS":2,"FLAGS":1,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"LOGIT":{"ID":"LOGIT","UNIT":"","TAB_ORDER":10,"OPERATIONS":2,"FLAGS":2,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"POSTIT":{"ID":"POSTIT","UNIT":"","TAB_ORDER":11,"OPERATIONS":2,"FLAGS":2,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"SYSLOG":{"ID":"SYSLOG","UNIT":"","TAB_ORDER":12,"OPERATIONS":2,"FLAGS":2,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"WRITE_FILE":{"ID":"WRITE_FILE","UNIT":"","TAB_ORDER":13,"OPERATIONS":2,"FLAGS":2,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"CMD_SETS":{"ID":"CMD_SETS","UNIT":"","TAB_ORDER":14,"OPERATIONS":7,"FLAGS":1,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"CMD_SETL":{"ID":"CMD_SETL","UNIT":"","TAB_ORDER":15,"OPERATIONS":7,"FLAGS":1,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"CMD_RETS":{"ID":"CMD_RETS","UNIT":"","TAB_ORDER":16,"OPERATIONS":5,"FLAGS":1,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"CMD_RETL":{"ID":"CMD_RETL","UNIT":"","TAB_ORDER":17,"OPERATIONS":5,"FLAGS":1,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"CMD_QUERY_RET":{"ID":"CMD_QUERY_RET","UNIT":"","TAB_ORDER":18,"OPERATIONS":2,"FLAGS":2,"TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false},"WORKING":{"ID":"WORKING","UNIT":"","TAB_ORDER":19,"OPERATIONS":5,"FLAGS":1,"TYPE":"BOOL","MIN":false,"MAX":true,"DEFAULT":false},"CONTROL":{"ID":"CONTROL","UNIT":"","TAB_ORDER":20,"OPERATIONS":1,"FLAGS":2,"TYPE":"INTEGER","MIN":0,"MAX":1,"DEFAULT":0},"SET_STATE":{"ID":"SET_STATE","UNIT":"","TAB_ORDER":21,"OPERATIONS":2,"FLAGS":2,"TYPE":"FLOAT","MIN":0,"MAX":1,"DEFAULT":0},"RAND":{"ID":"RAND","UNIT":"","TAB_ORDER":22,"OPERATIONS":3,"FLAGS":2,"TYPE":"STRING","MIN":"","MAX":"","DEFAULT":""},"INHIBIT":{"ID":"INHIBIT","UNIT":"","TAB_ORDER":23,"OPERATIONS":3,"FLAGS":1,"TYPE":"BOOL","MIN":false,"MAX":true,"DEFAULT":false},"INSTALL_TEST":{"ID":"INSTALL_TEST","UNIT":"","TAB_ORDER":24,"OPERATIONS":3,"FLAGS":3,"TYPE":"ACTION","MIN":false,"MAX":true,"DEFAULT":false}}}

Wrong State shown for HmIP Shutter Actuators

Hi,
HmIP Shutter Actuators show 99.5%, even if 100% up.
As there is also no pic for Shutter Actuators (HmIP-FROLL, BROLL, ...) I assume they are Not Suported yet? Can this be changed?

Thanks for a great Adapter!

HmIP-SPI Präsenzmelder - Send this info to developer

2018-04-25 20:03:19.952 - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SPI.PRESENCEDETECTOR_TRANSCEIVER.1"
2018-04-25 20:03:19.952 - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"PRESENCE_DETECTION_STATE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"PRESENCE_DETECTION_STATE","TYPE":"BOOL","DEFAULT":false,"CONTROL":"MOTIONDETECTOR_TRANSCEIVER.MOTION_DETECTION_STATE"},"ILLUMINATION":{"MIN":0,"OPERATIONS":5,"MAX":163830,"FLAGS":1,"ID":"ILLUMINATION","TYPE":"FLOAT","DEFAULT":0,"CONTROL":"MOTIONDETECTOR_TRANSCEIVER.ILLUMINATION"},"RESET_PRESENCE":{"MIN":false,"OPERATIONS":2,"MAX":true,"FLAGS":1,"ID":"RESET_PRESENCE","TYPE":"ACTION","DEFAULT":false,"CONTROL":"MOTIONDETECTOR_TRANSCEIVER.RESET_MOTION"},"CURRENT_ILLUMINATION":{"MIN":0,"OPERATIONS":5,"MAX":163830,"FLAGS":1,"ID":"CURRENT_ILLUMINATION","TYPE":"FLOAT","DEFAULT":0},"PRESENCE_DETECTION_ACTIVE":{"MIN":false,"OPERATIONS":7,"MAX":true,"FLAGS":1,"ID":"PRESENCE_DETECTION_ACTIVE","TYPE":"BOOL","DEFAULT":true,"CONTROL":"MOTIONDETECTOR_TRANSCEIVER.MOTION_DETECTION_ACTIVE"}}}

2018-04-25 20:03:19.833 - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SPI.MAINTENANCE.1"
2018-04-25 20:03:19.833 - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SABOTAGE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"SABOTAGE","TYPE":"BOOL","DEFAULT":false},"CONFIG_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"CONFIG_PENDING","TYPE":"BOOL","DEFAULT":false},"DUTY_CYCLE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"DUTY_CYCLE","TYPE":"BOOL","DEFAULT":false},"LOW_BAT":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"LOW_BAT","TYPE":"BOOL","DEFAULT":false},"UNREACH":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":25,"ID":"UNREACH","TYPE":"BOOL","DEFAULT":false},"RSSI_DEVICE":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_DEVICE","TYPE":"INTEGER","DEFAULT":0},"OPERATING_VOLTAGE":{"MIN":0,"OPERATIONS":5,"MAX":25.2,"FLAGS":1,"ID":"OPERATING_VOLTAGE","TYPE":"FLOAT","DEFAULT":0},"RSSI_PEER":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_PEER","TYPE":"INTEGER","DEFAULT":0},"ERROR_CODE":{"MIN":0,"OPERATIONS":5,"MAX":255,"FLAGS":9,"ID":"ERROR_CODE","TYPE":"INTEGER","DEFAULT":0},"UPDATE_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"UPDATE_PENDING","TYPE":"BOOL","DEFAULT":false}}}

XLM-RPC reconnects even if "PING ok" was received

hm-rpc to HM-IP on CCU2 via XLM-RPC

180s connection check set.
After 180s, Ping was send and answered correctly.
After next 180s window, reconnect initiated by hm-rpc adapter.

018-06-17 08:49:50.170 - info: hm-rpc.1 starting. Version 1.7.2 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v6.14.2
2018-06-17 08:49:50.605 - info: hm-rpc.1 xmlrpc server is trying to listen on 192.168.1.3:2010
2018-06-17 08:49:50.606 - info: hm-rpc.1 xmlrpc client is trying to connect to 192.168.1.4:2010 with ["http://192.168.1.3:2010","hm-rpc.1"]
2018-06-17 08:49:50.615 - debug: hm-rpc.1 Connect...
2018-06-17 08:49:50.618 - debug: hm-rpc.1 xmlrpc -> 192.168.1.4:2010 init ["http://192.168.1.3:2010","hm-rpc.1"]
2018-06-17 08:49:50.649 - debug: hm-rpc.1 start connecting interval
2018-06-17 08:49:50.748 - info: hm-rpc.1 Connected
2018-06-17 08:49:50.751 - debug: hm-rpc.1 clear connecting interval
2018-06-17 08:49:50.753 - debug: hm-rpc.1 start ping interval
2018-06-17 08:49:50.943 - info: hm-rpc.1 xmlrpc <- listDevices ["hm-rpc.1"]
2018-06-17 08:49:50.968 - info: hm-rpc.1 xmlrpc -> 0 devices
2018-06-17 08:49:51.446 - info: hm-rpc.1 xmlrpc <- newDevices 15
2018-06-17 08:49:51.470 - info: hm-rpc.1 new HmIP devices/channels after filter: 0
2018-06-17 08:51:20.759 - debug: hm-rpc.1 Send PING...
2018-06-17 08:51:20.846 - debug: hm-rpc.1 PING ok
2018-06-17 08:52:50.766 - debug: hm-rpc.1 Connect...
2018-06-17 08:52:50.767 - debug: hm-rpc.1 clear ping interval
2018-06-17 08:52:50.768 - debug: hm-rpc.1 start connecting interval
2018-06-17 08:53:20.771 - debug: hm-rpc.1 xmlrpc -> 192.168.1.4:2010 init ["http://192.168.1.3:2010","hm-rpc.1"]

Jun 17 08:49:50 de.eq3.cbcs.legacy.bidcos.rpc.internal.InterfaceInitializer INFO [vert.x-worker-thread-4] Added InterfaceId: hm-rpc.1
Jun 17 08:49:50 de.eq3.cbcs.legacy.bidcos.rpc.LegacyServiceHandler INFO [vert.x-worker-thread-3] init finished
Jun 17 08:49:51 de.eq3.cbcs.legacy.bidcos.rpc.internal.DeviceUtil INFO [vert.x-worker-thread-4] updateDevicesForClient hm-rpc.1 -> 15 device addresses will be added
Jun 17 08:53:20 de.eq3.cbcs.legacy.bidcos.rpc.LegacyServiceHandler INFO [vert.x-worker-thread-3] (un)registerCallback on LegacyServiceHandler called from url: http://192.168.1.3:2010

HmIP-SPDR Durchgangssensor - Send this info to developer

Channel 1 und 4 werden leer angelegt.
Channel 0,1 und 2 sind vorhanden und gefüllt.

2018-04-25 19:45:43.882 - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SPDR.MAINTENANCE.1"
2018-04-25 19:45:43.882 - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SABOTAGE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"SABOTAGE","TYPE":"BOOL","DEFAULT":false},"CONFIG_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"CONFIG_PENDING","TYPE":"BOOL","DEFAULT":false},"DUTY_CYCLE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"DUTY_CYCLE","TYPE":"BOOL","DEFAULT":false},"LOW_BAT":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"LOW_BAT","TYPE":"BOOL","DEFAULT":false},"UNREACH":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":25,"ID":"UNREACH","TYPE":"BOOL","DEFAULT":false},"RSSI_DEVICE":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_DEVICE","TYPE":"INTEGER","DEFAULT":0},"OPERATING_VOLTAGE":{"MIN":0,"OPERATIONS":5,"MAX":25.2,"FLAGS":1,"ID":"OPERATING_VOLTAGE","TYPE":"FLOAT","DEFAULT":0},"RSSI_PEER":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_PEER","TYPE":"INTEGER","DEFAULT":0},"ERROR_CODE":{"MIN":0,"OPERATIONS":5,"MAX":255,"FLAGS":9,"ID":"ERROR_CODE","TYPE":"INTEGER","DEFAULT":0},"UPDATE_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"UPDATE_PENDING","TYPE":"BOOL","DEFAULT":false}}}

2018-04-25 19:45:44.415 - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SPDR.PASSAGE_DETECTOR_DIRECTION_TRANSMITTER.1"
2018-04-25 19:45:44.415 - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"PASSAGE_COUNTER_VALUE":{"MIN":0,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"PASSAGE_COUNTER_VALUE","TYPE":"INTEGER","DEFAULT":0,"CONTROL":"PASSAGE_DETECTOR_DIRECTION_TRANSMITTER.PASSAGE_COUNTER_VALUE"},"PASSAGE_COUNTER_OVERFLOW":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"PASSAGE_COUNTER_OVERFLOW","TYPE":"BOOL","DEFAULT":false,"CONTROL":"PASSAGE_DETECTOR_DIRECTION_TRANSMITTER.PASSAGE_COUNTER_OVERFLOW"},"LAST_PASSAGE_DIRECTION":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"LAST_PASSAGE_DIRECTION","TYPE":"BOOL","DEFAULT":false,"CONTROL":"PASSAGE_DETECTOR_DIRECTION_TRANSMITTER.LAST_PASSAGE_DIRECTION"},"CURRENT_PASSAGE_DIRECTION":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"CURRENT_PASSAGE_DIRECTION","TYPE":"BOOL","DEFAULT":false,"CONTROL":"PASSAGE_DETECTOR_DIRECTION_TRANSMITTER.CURRENT_PASSAGE_DIRECTION"}}}

Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-O-3.MOTION_DETECTOR.12"

HM-Sen-MDIR-O-3 is not known by RPC 1.7.2:


2018-06-28 10:09:18.842  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["PEQ0390697:0","VALUES"]
2018-06-28 10:09:18.864  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-O-3.MAINTENANCE.12"
2018-06-28 10:09:18.864  - �[33mwarn�[39m: hm-rpc.0 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":""},"ENTER_BOOTLOADER":{"DEFAULT":false,"FLAGS":3,"ID":"ENTER_BOOTLOADER","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":9,"TYPE":"ACTION","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":""}}}
2018-06-28 10:09:18.881  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["PEQ0390697:1","VALUES"]
2018-06-28 10:09:18.890  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-O-3.MOTION_DETECTOR.12"
2018-06-28 10:09:18.891  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BRIGHTNESS":{"DEFAULT":0,"FLAGS":1,"ID":"BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"MOTION":{"DEFAULT":false,"FLAGS":1,"ID":"MOTION","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""}}}

Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-TX-WM.POWERMETER_IGL.1"

Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-TX-WM.POWERMETER_IGL.1"

Send this info to developer: {'type':'meta','meta':{'adapter':'hm-rpc','type':'paramsetDescription'},'common':{},'native':{'BOOT':{'CONTROL':'POWERMETER_IGL.BOOT','DEFAULT':false,'FLAGS':3,'ID':'BOOT','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':4,'TYPE':'BOOL','UNIT':''},'ENERGY_COUNTER':{'CONTROL':'POWERMETER_IGL.ENERGY_COUNTER','DEFAULT':0,'FLAGS':1,'ID':'ENERGY_COUNTER','MAX':838860.699219,'MIN':0,'OPERATIONS':5,'TAB_ORDER':2,'TYPE':'FLOAT','UNIT':'Wh'},'GAS_ENERGY_COUNTER':{'CONTROL':'POWERMETER_IGL.GAS_ENERGY_COUNTER','DEFAULT':0,'FLAGS':1,'ID':'GAS_ENERGY_COUNTER','MAX':2147483.644531,'MIN':0,'OPERATIONS':5,'TAB_ORDER':0,'TYPE':'FLOAT','UNIT':'m3'},'GAS_POWER':{'CONTROL':'POWERMETER_IGL.GAS_POWER','DEFAULT':0,'FLAGS':1,'ID':'GAS_POWER','MAX':16777.214996,'MIN':0,'OPERATIONS':5,'TAB_ORDER':1,'TYPE':'FLOAT','UNIT':'m3'},'POWER':{'CONTROL':'POWERMETER_IGL.POWER','DEFAULT':0,'FLAGS':1,'ID':'POWER','MAX':167772.149902,'MIN':0,'OPERATIONS':5,'TAB_ORDER':3,'TYPE':'FLOAT','UNIT':'W'}}}

Week programm get/set not available

Hi,
I would like to read the actual used week program of my Homematic wall thermostat (HM-TC-IT-WM-W-EU) and also choose another week program. At the moment I use a direct XMP-RPC communication for that purpose, but it would be good to see the selected week program in ioBroker and also have the possibility to set another program.

These requests I use to communicate over XML-RPC with the CCU2:

To get the week program a POST request to the CCU2 XML-RPC port with this data:

<methodCall><methodName>getParamset</methodName><params><param><value><string>NEQ0935035</string></value></param><param><value><string>MASTER</string></value></param></params></methodCall>

Then I have to get the value from WEEK_PROGRAM_POINTER.

To select another configured week program I use this data in the POST request:

<methodCall><methodName>putParamset</methodName><params><param><value><string>NEQ0935035</string></value></param><param><value><string>MASTER</string></value></param><param><value><struct><member><name>WEEK_PROGRAM_POINTER</name><value><i4>2</i4></value></member></struct></value></param></params></methodCall>

The Homematic wall thermostat has 3 buildin week programs. The internal count goes from 0-2.
So to select the second week program the <i4> field must contain the '1'.

BR,
Stephan

A lot of "send this Info to developer"

2018-07-17 18:31:51.322  - �[33mwarn�[39m: hm-rpc.0 No image for "ZEL STG RM FDK" found.
2018-07-17 18:31:51.323  - �[33mwarn�[39m: hm-rpc.0 No image for "ZEL STG RM FDK" found.
2018-07-17 18:31:51.323  - �[33mwarn�[39m: hm-rpc.0 No image for "ZEL STG RM FDK" found.
2018-07-17 18:31:51.323  - �[33mwarn�[39m: hm-rpc.0 No image for "ZEL STG RM FDK" found.

ZEL STG RM FDK is the Rotomatic Variant of the Homematic RHS

2018-07-17 18:31:55.954  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["GEQ0013764:0","VALUES"]
2018-07-17 18:31:55.991  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Sec3-B.MAINTENANCE.11"
2018-07-17 18:31:55.991  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:31:56.030  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["GEQ0013764:1","VALUES"]
2018-07-17 18:31:56.054  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Sec3-B.KEY.11"
2018-07-17 18:31:56.055  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:31:56.128  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["HEQ0105937:0","VALUES"]
2018-07-17 18:31:56.159  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-TiS.MAINTENANCE.8"
2018-07-17 18:31:56.159  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:31:56.196  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["HEQ0105937:1","VALUES"]
2018-07-17 18:31:56.211  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-TiS.TILT_SENSOR.8"
2018-07-17 18:31:56.211  - �[33mwarn�[39m: hm-rpc.0 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":""},"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"STATE":{"CONTROL":"DOOR_SENSOR.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:56.234  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["IEQ0086197:0","VALUES"]
2018-07-17 18:31:56.261  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Sec3.MAINTENANCE.11"
2018-07-17 18:31:56.261  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:31:56.312  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["IEQ0086197:1","VALUES"]
2018-07-17 18:31:56.333  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Sec3.KEY.11"
2018-07-17 18:31:56.333  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:31:56.620  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["IEQ0544901:0","VALUES"]
2018-07-17 18:31:56.655  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.MAINTENANCE.13"
2018-07-17 18:31:56.655  - �[33mwarn�[39m: hm-rpc.0 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":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","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":""}}}
2018-07-17 18:31:56.698  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["IEQ0544901:1","VALUES"]
2018-07-17 18:31:56.761  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.DIMMER.13"
2018-07-17 18:31:56.762  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":10,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NONE","UP","DOWN","UNDEFINED"]},"ERROR_OVERHEAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":9,"ID":"ERROR_OVERHEAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":9,"TYPE":"BOOL","UNIT":""},"ERROR_OVERLOAD":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":9,"ID":"ERROR_OVERLOAD","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":8,"TYPE":"BOOL","UNIT":""},"ERROR_REDUCED":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":9,"ID":"ERROR_REDUCED","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":7,"TYPE":"BOOL","UNIT":""},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":6,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":11,"TYPE":"ACTION","UNIT":""},"LEVEL":{"CONTROL":"DIMMER.LEVEL","DEFAULT":0,"FLAGS":1,"ID":"LEVEL","MAX":1,"MIN":0,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"100%"},"LEVEL_REAL":{"CONTROL":"DIMMER.LEVEL_REAL","DEFAULT":0,"FLAGS":1,"ID":"LEVEL_REAL","MAX":1,"MIN":0,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"100%"},"OLD_LEVEL":{"CONTROL":"DIMMER.OLD_LEVEL","DEFAULT":false,"FLAGS":1,"ID":"OLD_LEVEL","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"FLOAT","UNIT":"s"},"RAMP_STOP":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"RAMP_STOP","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":5,"TYPE":"ACTION","UNIT":""},"RAMP_TIME":{"CONTROL":"NONE","DEFAULT":0.5,"FLAGS":1,"ID":"RAMP_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"FLOAT","UNIT":"s"},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":12,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:56.971  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["IEQ0544901:2","VALUES"]
2018-07-17 18:31:57.021  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.VIRTUAL_DIMMER.13"
2018-07-17 18:31:57.022  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":10,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NONE","UP","DOWN","UNDEFINED"]},"ERROR_OVERHEAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":9,"ID":"ERROR_OVERHEAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":9,"TYPE":"BOOL","UNIT":""},"ERROR_OVERLOAD":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":9,"ID":"ERROR_OVERLOAD","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":8,"TYPE":"BOOL","UNIT":""},"ERROR_REDUCED":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":9,"ID":"ERROR_REDUCED","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":7,"TYPE":"BOOL","UNIT":""},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":6,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":11,"TYPE":"ACTION","UNIT":""},"LEVEL":{"CONTROL":"DIMMER.LEVEL","DEFAULT":0,"FLAGS":1,"ID":"LEVEL","MAX":1,"MIN":0,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"100%"},"LEVEL_REAL":{"CONTROL":"DIMMER.LEVEL_REAL","DEFAULT":0,"FLAGS":1,"ID":"LEVEL_REAL","MAX":1,"MIN":0,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"100%"},"OLD_LEVEL":{"CONTROL":"DIMMER.OLD_LEVEL","DEFAULT":false,"FLAGS":1,"ID":"OLD_LEVEL","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"FLOAT","UNIT":"s"},"RAMP_STOP":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"RAMP_STOP","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":5,"TYPE":"ACTION","UNIT":""},"RAMP_TIME":{"CONTROL":"NONE","DEFAULT":0.5,"FLAGS":1,"ID":"RAMP_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"FLOAT","UNIT":"s"},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":12,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:57.145  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0033356:0","VALUES"]
2018-07-17 18:31:57.208  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1PBU-FM.MAINTENANCE.9"
2018-07-17 18:31:57.209  - �[33mwarn�[39m: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:57.261  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0033356:1","VALUES"]
2018-07-17 18:31:57.283  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1PBU-FM.SWITCH.9"
2018-07-17 18:31:57.284  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:57.437  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0090871:0","VALUES"]
2018-07-17 18:31:57.466  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-2-WM55.MAINTENANCE.8"
2018-07-17 18:31:57.467  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:31:57.510  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0090871:1","VALUES"]
2018-07-17 18:31:57.529  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-2-WM55.KEY.8"
2018-07-17 18:31:57.529  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:31:57.861  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0110516:0","VALUES"]
2018-07-17 18:31:57.896  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Bl1PBU-FM.MAINTENANCE.8"
2018-07-17 18:31:57.896  - �[33mwarn�[39m: hm-rpc.0 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":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","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":""}}}
2018-07-17 18:31:57.944  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0110516:1","VALUES"]
2018-07-17 18:31:57.969  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Bl1PBU-FM.BLIND.8"
2018-07-17 18:31:57.970  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NONE","UP","DOWN","UNDEFINED"]},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"LEVEL":{"CONTROL":"BLIND.LEVEL","DEFAULT":0,"FLAGS":1,"ID":"LEVEL","MAX":1,"MIN":0,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"100%"},"STOP":{"CONTROL":"BLIND.STOP","DEFAULT":false,"FLAGS":1,"ID":"STOP","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:58.540  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0140901:0","VALUES"]
2018-07-17 18:31:58.576  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS100-C6-O.MAINTENANCE.10"
2018-07-17 18:31:58.577  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"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":""}}}
2018-07-17 18:31:58.615  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0140901:1","VALUES"]
2018-07-17 18:31:58.658  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS100-C6-O.WEATHER.10"
2018-07-17 18:31:58.659  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BRIGHTNESS":{"DEFAULT":0,"FLAGS":1,"ID":"BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":8,"TYPE":"INTEGER","UNIT":""},"HUMIDITY":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"HUMIDITY","MAX":99,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"INTEGER","UNIT":"%"},"RAINING":{"DEFAULT":false,"FLAGS":1,"ID":"RAINING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"RAIN_COUNTER":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"RAIN_COUNTER","MAX":9666.264999,"MIN":0,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"FLOAT","UNIT":"mm"},"SUNSHINEDURATION":{"DEFAULT":0,"FLAGS":1,"ID":"SUNSHINEDURATION","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":7,"TYPE":"INTEGER","UNIT":""},"TEMPERATURE":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"TEMPERATURE","MAX":80,"MIN":-40,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"�C"},"WIND_DIRECTION":{"DEFAULT":0,"FLAGS":1,"ID":"WIND_DIRECTION","MAX":355,"MIN":0,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"INTEGER","UNIT":"degree"},"WIND_DIRECTION_RANGE":{"DEFAULT":0,"FLAGS":1,"ID":"WIND_DIRECTION_RANGE","MAX":67,"MIN":0,"OPERATIONS":5,"TAB_ORDER":6,"TYPE":"INTEGER","UNIT":"degree"},"WIND_SPEED":{"DEFAULT":0,"FLAGS":1,"ID":"WIND_SPEED","MAX":1638.299999,"MIN":0,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"FLOAT","UNIT":"km/h"}}}
2018-07-17 18:31:59.358  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0267518:0","VALUES"]
2018-07-17 18:31:59.383  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS10-TH-O.MAINTENANCE.5"
2018-07-17 18:31:59.384  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:31:59.426  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0267518:1","VALUES"]
2018-07-17 18:31:59.438  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS10-TH-O.WEATHER.5"
2018-07-17 18:31:59.439  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"HUMIDITY":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"HUMIDITY","MAX":99,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"INTEGER","UNIT":"%"},"TEMPERATURE":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"TEMPERATURE","MAX":80,"MIN":-40,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"�C"}}}
2018-07-17 18:31:59.459  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0459186:0","VALUES"]
2018-07-17 18:31:59.490  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-SM.MAINTENANCE.8"
2018-07-17 18:31:59.491  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"ENTER_BOOTLOADER":{"DEFAULT":false,"FLAGS":3,"ID":"ENTER_BOOTLOADER","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":7,"TYPE":"ACTION","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":""}}}
2018-07-17 18:31:59.530  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0459186:1","VALUES"]
2018-07-17 18:31:59.544  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-SM.MOTION_DETECTOR.8"
2018-07-17 18:31:59.545  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BRIGHTNESS":{"DEFAULT":0,"FLAGS":1,"ID":"BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"MOTION":{"DEFAULT":false,"FLAGS":1,"ID":"MOTION","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:59.666  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0466320:0","VALUES"]
2018-07-17 18:31:59.714  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-Key.MAINTENANCE.7"
2018-07-17 18:31:59.715  - �[33mwarn�[39m: hm-rpc.0 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":7,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":""}}}
2018-07-17 18:31:59.750  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0466320:1","VALUES"]
2018-07-17 18:31:59.786  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-Key.KEYMATIC.7"
2018-07-17 18:31:59.787  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":6,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NONE","UP","DOWN","UNDEFINED"]},"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":2,"MIN":0,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NO_ERROR","CLUTCH_FAILURE","MOTOR_ABORTED"]},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":7,"TYPE":"ACTION","UNIT":""},"OPEN":{"CONTROL":"LOCK.OPEN","DEFAULT":false,"FLAGS":1,"ID":"OPEN","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"RELOCK_DELAY":{"CONTROL":"NONE","DEFAULT":111600,"FLAGS":1,"ID":"RELOCK_DELAY","MAX":65535,"MIN":0,"OPERATIONS":2,"SPECIAL":[{"ID":"NOT_USED","VALUE":111600}],"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"LOCK.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"STATE_UNCERTAIN":{"CONTROL":"LOCK.UNCERTAIN","DEFAULT":true,"FLAGS":1,"ID":"STATE_UNCERTAIN","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:31:59.824  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0466609:0","VALUES"]
2018-07-17 18:31:59.849  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Key3-B.MAINTENANCE.11"
2018-07-17 18:31:59.850  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:31:59.884  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0466609:1","VALUES"]
2018-07-17 18:31:59.903  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Key3-B.KEY.11"
2018-07-17 18:31:59.904  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:31:59.979  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0499736:0","VALUES"]
2018-07-17 18:32:00.006  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-Pl-2.MAINTENANCE.1"
2018-07-17 18:32:00.007  - �[33mwarn�[39m: hm-rpc.0 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":7,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":""}}}
2018-07-17 18:32:00.043  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0499736:1","VALUES"]
2018-07-17 18:32:00.064  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-Pl-2.SWITCH.1"
2018-07-17 18:32:00.065  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:00.095  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0646431:0","VALUES"]
2018-07-17 18:32:00.124  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw4-DR.MAINTENANCE.1"
2018-07-17 18:32:00.124  - �[33mwarn�[39m: hm-rpc.0 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":7,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":""}}}
2018-07-17 18:32:00.171  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JEQ0646431:1","VALUES"]
2018-07-17 18:32:00.229  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw4-DR.SWITCH.1"
2018-07-17 18:32:00.229  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:00.313  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JRT0001400:0","VALUES"]
2018-07-17 18:32:00.340  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.ZEL STG RM FDK.MAINTENANCE.14"
2018-07-17 18:32:00.341  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:32:00.377  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["JRT0001400:1","VALUES"]
2018-07-17 18:32:00.409  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.ZEL STG RM FDK.ROTARY_HANDLE_SENSOR.14"
2018-07-17 18:32:00.410  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NO_ERROR","","","","","","","SABOTAGE"]},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"STATE":{"CONTROL":"RHS.STATE","DEFAULT":0,"FLAGS":1,"ID":"STATE","MAX":2,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["CLOSED","TILTED","OPEN"]}}}
2018-07-17 18:32:00.634  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0068246:0","VALUES"]
2018-07-17 18:32:00.660  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-RHS.MAINTENANCE.14"
2018-07-17 18:32:00.660  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:32:00.698  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0068246:1","VALUES"]
2018-07-17 18:32:00.718  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-RHS.ROTARY_HANDLE_SENSOR.14"
2018-07-17 18:32:00.719  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NO_ERROR","","","","","","","SABOTAGE"]},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"STATE":{"CONTROL":"RHS.STATE","DEFAULT":0,"FLAGS":1,"ID":"STATE","MAX":2,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["CLOSED","TILTED","OPEN"]}}}
2018-07-17 18:32:00.746  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0120652:0","VALUES"]
2018-07-17 18:32:00.814  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-6-WM55.MAINTENANCE.7"
2018-07-17 18:32:00.815  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:00.942  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0120652:1","VALUES"]
2018-07-17 18:32:00.966  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-6-WM55.KEY.7"
2018-07-17 18:32:00.967  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:01.228  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0543528:0","VALUES"]
2018-07-17 18:32:01.274  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS30-OT2-SM.MAINTENANCE.5"
2018-07-17 18:32:01.274  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"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":{"CONTROL":"NONE","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":""}}}
2018-07-17 18:32:01.326  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0543528:1","VALUES"]
2018-07-17 18:32:01.339  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS30-OT2-SM.WEATHER.5"
2018-07-17 18:32:01.340  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"TEMPERATURE":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"TEMPERATURE","MAX":150,"MIN":-150,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"�C"}}}
2018-07-17 18:32:02.150  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:0","VALUES"]
2018-07-17 18:32:02.184  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.MAINTENANCE.16"
2018-07-17 18:32:02.185  - �[33mwarn�[39m: hm-rpc.0 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":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","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":""}}}
2018-07-17 18:32:02.228  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:1","VALUES"]
2018-07-17 18:32:02.253  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.SWITCH.16"
2018-07-17 18:32:02.254  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:02.280  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:2","VALUES"]
2018-07-17 18:32:02.305  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.POWERMETER.16"
2018-07-17 18:32:02.306  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""},"CURRENT":{"CONTROL":"POWERMETER.CURRENT","DEFAULT":0,"FLAGS":1,"ID":"CURRENT","MAX":65535,"MIN":0,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"mA"},"ENERGY_COUNTER":{"CONTROL":"POWERMETER.ENERGY_COUNTER","DEFAULT":0,"FLAGS":1,"ID":"ENERGY_COUNTER","MAX":838860.699219,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"Wh"},"FREQUENCY":{"CONTROL":"POWERMETER.FREQUENCY","DEFAULT":0,"FLAGS":1,"ID":"FREQUENCY","MAX":51.27,"MIN":48.72,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"FLOAT","UNIT":"Hz"},"POWER":{"CONTROL":"POWERMETER.POWER","DEFAULT":0,"FLAGS":1,"ID":"POWER","MAX":167772.149902,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"W"},"VOLTAGE":{"CONTROL":"POWERMETER.VOLTAGE","DEFAULT":0,"FLAGS":1,"ID":"VOLTAGE","MAX":6553.5,"MIN":0,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"FLOAT","UNIT":"V"}}}
2018-07-17 18:32:02.349  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:3","VALUES"]
2018-07-17 18:32:02.357  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_POWER.16"
2018-07-17 18:32:02.358  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2018-07-17 18:32:02.373  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:4","VALUES"]
2018-07-17 18:32:02.381  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_CURRENT.16"
2018-07-17 18:32:02.382  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2018-07-17 18:32:02.395  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:5","VALUES"]
2018-07-17 18:32:02.402  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_VOLTAGE.16"
2018-07-17 18:32:02.402  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2018-07-17 18:32:02.415  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ0966548:6","VALUES"]
2018-07-17 18:32:02.422  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_FREQUENCY.16"
2018-07-17 18:32:02.423  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2018-07-17 18:32:02.560  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ1022589:0","VALUES"]
2018-07-17 18:32:02.608  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-RD-O.MAINTENANCE.21"
2018-07-17 18:32:02.609  - �[33mwarn�[39m: hm-rpc.0 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":7,"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":5,"TYPE":"BOOL","UNIT":""},"RSSI_DEVICE":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_DEVICE","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":4,"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":6,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:02.646  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ1022589:1","VALUES"]
2018-07-17 18:32:02.657  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-RD-O.RAINDETECTOR.21"
2018-07-17 18:32:02.657  - �[33mwarn�[39m: hm-rpc.0 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":1,"TYPE":"ACTION","UNIT":""},"STATE":{"DEFAULT":0,"FLAGS":1,"ID":"STATE","MAX":1,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["DRY","RAIN"]}}}
2018-07-17 18:32:02.676  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ1022589:2","VALUES"]
2018-07-17 18:32:02.697  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-RD-O.RAINDETECTOR_HEAT.21"
2018-07-17 18:32:02.698  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:02.725  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ1070107:0","VALUES"]
2018-07-17 18:32:02.759  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-O.MAINTENANCE.12"
2018-07-17 18:32:02.759  - �[33mwarn�[39m: hm-rpc.0 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":""},"ENTER_BOOTLOADER":{"DEFAULT":false,"FLAGS":3,"ID":"ENTER_BOOTLOADER","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":9,"TYPE":"ACTION","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":""}}}
2018-07-17 18:32:02.799  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["KEQ1070107:1","VALUES"]
2018-07-17 18:32:02.812  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-O.MOTION_DETECTOR.12"
2018-07-17 18:32:02.813  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BRIGHTNESS":{"DEFAULT":0,"FLAGS":1,"ID":"BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"MOTION":{"DEFAULT":false,"FLAGS":1,"ID":"MOTION","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:02.834  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["LEQ0073262:0","VALUES"]
2018-07-17 18:32:02.869  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-OU-CM-PCB.MAINTENANCE.4"
2018-07-17 18:32:02.870  - �[33mwarn�[39m: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:02.913  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["LEQ0073262:1","VALUES"]
2018-07-17 18:32:02.936  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-OU-CM-PCB.SIGNAL_CHIME.4"
2018-07-17 18:32:02.937  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"SUBMIT":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"SUBMIT","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":3,"TYPE":"STRING","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:03.078  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["LEQ0080851:3","VALUES"]
2018-07-17 18:32:03.088  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["LEQ0080851:6","VALUES"]
2018-07-17 18:32:03.423  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["LEQ0397071:0","VALUES"]
2018-07-17 18:32:03.457  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-2-FM.MAINTENANCE.4"
2018-07-17 18:32:03.458  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:03.504  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["LEQ0397071:1","VALUES"]
2018-07-17 18:32:03.522  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-2-FM.KEY.4"
2018-07-17 18:32:03.523  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:05.105  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ0082816:0","VALUES"]
2018-07-17 18:32:05.161  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-2-PBU-FM.MAINTENANCE.2"
2018-07-17 18:32:05.161  - �[33mwarn�[39m: hm-rpc.0 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":7,"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":5,"TYPE":"BOOL","UNIT":""},"RSSI_DEVICE":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_DEVICE","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":4,"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":6,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:05.268  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ0082816:1","VALUES"]
2018-07-17 18:32:05.295  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-2-PBU-FM.KEY.2"
2018-07-17 18:32:05.295  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:05.958  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1097293:0","VALUES"]
2018-07-17 18:32:06.001  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-RGBW-WM.MAINTENANCE.41"
2018-07-17 18:32:06.002  - �[33mwarn�[39m: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:06.040  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1097293:1","VALUES"]
2018-07-17 18:32:06.076  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-RGBW-WM.DIMMER.41"
2018-07-17 18:32:06.077  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":6,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NONE","UP","DOWN","UNDEFINED"]},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":7,"TYPE":"ACTION","UNIT":""},"LEVEL":{"CONTROL":"DIMMER.LEVEL","DEFAULT":0,"FLAGS":1,"ID":"LEVEL","MAX":1,"MIN":0,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"100%"},"OLD_LEVEL":{"CONTROL":"DIMMER.OLD_LEVEL","DEFAULT":false,"FLAGS":1,"ID":"OLD_LEVEL","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"FLOAT","UNIT":"s"},"RAMP_STOP":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"RAMP_STOP","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"RAMP_TIME":{"CONTROL":"NONE","DEFAULT":0.5,"FLAGS":1,"ID":"RAMP_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"s"},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:06.114  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1097293:2","VALUES"]
2018-07-17 18:32:06.157  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-RGBW-WM.RGBW_COLOR.41"
2018-07-17 18:32:06.157  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACT_BRIGHTNESS":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"INTEGER","UNIT":""},"ACT_BRIGHTNESS_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_BRIGHTNESS_STORE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":5,"TYPE":"INTEGER","UNIT":""},"ACT_HSV_COLOR_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_HSV_COLOR_VALUE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":6,"TYPE":"INTEGER","UNIT":""},"ACT_HSV_COLOR_VALUE_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_HSV_COLOR_VALUE_STORE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":7,"TYPE":"INTEGER","UNIT":""},"COLOR":{"CONTROL":"RGBW_COLOR.COLOR","DEFAULT":0,"FLAGS":1,"ID":"COLOR","MAX":255,"MIN":0,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":3,"TYPE":"BOOL","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"ON_TIME_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ON_TIME_STORE","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":8,"TYPE":"FLOAT","UNIT":"s"},"RAMP_TIME":{"CONTROL":"NONE","DEFAULT":0.5,"FLAGS":1,"ID":"RAMP_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"s"},"RAMP_TIME_STORE":{"CONTROL":"NONE","DEFAULT":0.5,"FLAGS":3,"ID":"RAMP_TIME_STORE","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":9,"TYPE":"FLOAT","UNIT":"s"},"USER_COLOR":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"USER_COLOR","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":0,"TYPE":"STRING","UNIT":""}}}
2018-07-17 18:32:06.207  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1097293:3","VALUES"]
2018-07-17 18:32:06.284  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-RGBW-WM.RGBW_AUTOMATIC.41"
2018-07-17 18:32:06.285  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACT_BRIGHTNESS":{"CONTROL":"RGBW_AUTOMATIC.BRIGHTNESS","DEFAULT":0,"FLAGS":3,"ID":"ACT_BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":3,"TAB_ORDER":4,"TYPE":"INTEGER","UNIT":""},"ACT_BRIGHTNESS_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_BRIGHTNESS_STORE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":5,"TYPE":"INTEGER","UNIT":""},"ACT_COLOR_PROGRAM_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_COLOR_PROGRAM_STORE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":6,"TYPE":"INTEGER","UNIT":""},"ACT_MAX_BOARDER":{"CONTROL":"RGBW_AUTOMATIC.MAX_BOARDER","DEFAULT":0,"FLAGS":3,"ID":"ACT_MAX_BOARDER","MAX":255,"MIN":0,"OPERATIONS":3,"TAB_ORDER":7,"TYPE":"INTEGER","UNIT":""},"ACT_MAX_BORDER_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_MAX_BORDER_STORE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":8,"TYPE":"INTEGER","UNIT":""},"ACT_MIN_BOARDER":{"CONTROL":"RGBW_AUTOMATIC.MIN_BOARDER","DEFAULT":0,"FLAGS":3,"ID":"ACT_MIN_BOARDER","MAX":255,"MIN":0,"OPERATIONS":3,"TAB_ORDER":9,"TYPE":"INTEGER","UNIT":""},"ACT_MIN_BORDER_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ACT_MIN_BORDER_STORE","MAX":255,"MIN":0,"OPERATIONS":2,"TAB_ORDER":10,"TYPE":"INTEGER","UNIT":""},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":3,"TYPE":"BOOL","UNIT":""},"ON_TIME":{"CONTROL":"RGBW_AUTOMATIC.ON_TIME","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":3,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"ON_TIME_STORE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":3,"ID":"ON_TIME_STORE","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":11,"TYPE":"FLOAT","UNIT":"s"},"PROGRAM":{"CONTROL":"RGBW_AUTOMATIC.PROGRAM","DEFAULT":0,"FLAGS":1,"ID":"PROGRAM","MAX":255,"MIN":0,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""},"RAMP_TIME":{"CONTROL":"RGBW_AUTOMATIC.RAMP_TIME","DEFAULT":0.5,"FLAGS":1,"ID":"RAMP_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":3,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"s"},"RAMP_TIME_STORE":{"CONTROL":"NONE","DEFAULT":0.5,"FLAGS":3,"ID":"RAMP_TIME_STORE","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":12,"TYPE":"FLOAT","UNIT":"s"},"USER_PROGRAM":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"USER_PROGRAM","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":0,"TYPE":"STRING","UNIT":""}}}
2018-07-17 18:32:06.416  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1848733:0","VALUES"]
2018-07-17 18:32:06.447  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-WM55.MAINTENANCE.5"
2018-07-17 18:32:06.447  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:06.483  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1848733:1","VALUES"]
2018-07-17 18:32:06.502  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-WM55.KEY.5"
2018-07-17 18:32:06.502  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:06.546  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["MEQ1848733:3","VALUES"]
2018-07-17 18:32:06.560  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-WM55.MOTION_DETECTOR.5"
2018-07-17 18:32:06.560  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BRIGHTNESS":{"DEFAULT":0,"FLAGS":1,"ID":"BRIGHTNESS","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"MOTION":{"DEFAULT":false,"FLAGS":1,"ID":"MOTION","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:06.580  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0018682:0","VALUES"]
2018-07-17 18:32:06.616  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-OU-CFM-TW.MAINTENANCE.4"
2018-07-17 18:32:06.616  - �[33mwarn�[39m: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:06.654  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0018682:1","VALUES"]
2018-07-17 18:32:06.676  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-OU-CFM-TW.SIGNAL_LED.4"
2018-07-17 18:32:06.677  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"SUBMIT":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"SUBMIT","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":3,"TYPE":"STRING","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:06.706  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0018682:2","VALUES"]
2018-07-17 18:32:06.728  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-OU-CFM-TW.SIGNAL_CHIME.4"
2018-07-17 18:32:06.728  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":4,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"SUBMIT":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"SUBMIT","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":3,"TYPE":"STRING","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:07.164  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0289713:0","VALUES"]
2018-07-17 18:32:07.201  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD.MAINTENANCE.10"
2018-07-17 18:32:07.202  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:07.247  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0289713:1","VALUES"]
2018-07-17 18:32:07.256  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD.SMOKE_DETECTOR.10"
2018-07-17 18:32:07.256  - �[33mwarn�[39m: hm-rpc.0 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":1,"TYPE":"ACTION","UNIT":""},"STATE":{"CONTROL":"DANGER.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:07.959  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0711824:1","VALUES"]
2018-07-17 18:32:07.983  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Dis-EP-WM55.KEY.11"
2018-07-17 18:32:07.984  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:08.183  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0995469:0","VALUES"]
2018-07-17 18:32:08.213  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-WDS-2.MAINTENANCE.6"
2018-07-17 18:32:08.214  - �[33mwarn�[39m: hm-rpc.0 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":6,"TYPE":"INTEGER","UNIT":""},"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"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":""}}}
2018-07-17 18:32:08.249  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ0995469:1","VALUES"]
2018-07-17 18:32:08.266  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-WDS-2.WATERDETECTIONSENSOR.6"
2018-07-17 18:32:08.267  - �[33mwarn�[39m: hm-rpc.0 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":""},"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"STATE":{"DEFAULT":0,"FLAGS":1,"ID":"STATE","MAX":2,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["DRY","WET","WATER"]}}}
2018-07-17 18:32:08.291  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ1547414:0","VALUES"]
2018-07-17 18:32:08.326  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-EM-8Bit.MAINTENANCE.10"
2018-07-17 18:32:08.327  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:08.363  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ1547414:1","VALUES"]
2018-07-17 18:32:08.383  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-EM-8Bit.KEY.10"
2018-07-17 18:32:08.384  - �[33mwarn�[39m: hm-rpc.0 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":""}}}
2018-07-17 18:32:08.429  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ1547414:3","VALUES"]
2018-07-17 18:32:08.443  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-EM-8Bit.MOD_EM8BIT_TRANSMITTER.10"
2018-07-17 18:32:08.443  - �[33mwarn�[39m: hm-rpc.0 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":""},"LOWBAT":{"CONTROL":"BATTERIE.LOWBAT","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"STATE":{"CONTROL":"DIGITAL_STATE.STATE","DEFAULT":0,"FLAGS":1,"ID":"STATE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2018-07-17 18:32:08.462  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ1631480:0","VALUES"]
2018-07-17 18:32:08.499  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-PCB.MAINTENANCE.8"
2018-07-17 18:32:08.500  - �[33mwarn�[39m: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2018-07-17 18:32:08.536  - �[32minfo�[39m: hm-rpc.0 binrpc -> getParamsetDescription ["NEQ1631480:1","VALUES"]
2018-07-17 18:32:08.556  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-PCB.SWITCH.8"
2018-07-17 18:32:08.557  - �[33mwarn�[39m: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}

Send this to developer....

hm-rpc.0 2018-01-03 13:13:03.784 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.0 2018-01-03 13:13:03.784 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD-2-Team.SMOKE_DETECTOR_TEAM_V2.3"
hm-rpc.0 2018-01-03 13:13:03.709 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:13:03.709 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_FREQUENCY.16"
hm-rpc.0 2018-01-03 13:13:03.701 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:13:03.701 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_VOLTAGE.16"
hm-rpc.0 2018-01-03 13:13:03.694 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:13:03.694 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_CURRENT.16"
hm-rpc.0 2018-01-03 13:13:03.686 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:13:03.685 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_POWER.16"
hm-rpc.0 2018-01-03 13:13:03.672 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","MA
hm-rpc.0 2018-01-03 13:13:03.672 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.POWERMETER.16"
hm-rpc.0 2018-01-03 13:13:03.636 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2018-01-03 13:13:03.635 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.SWITCH.16"
hm-rpc.0 2018-01-03 13:13:03.611 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.0 2018-01-03 13:13:03.611 warn Send this info to developer: id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.MAINTENANCE.16"
hm-rpc.0 2018-01-03 13:13:03.309 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR_ALARM_TEST":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR_ALARM

hm-rpc.0 2018-01-03 13:13:03.309 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD-2.SMOKE_DETECTOR.5"
hm-rpc.0 2018-01-03 13:13:03.285 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.0 2018-01-03 13:13:03.285 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD-2.MAINTENANCE.5"
hm-rpc.0 2018-01-03 13:13:02.914 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.0 2018-01-03 13:13:02.914 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-4-3.KEY.7"
hm-rpc.0 2018-01-03 13:13:02.891 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.0 2018-01-03 13:13:02.890 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-4-3.MAINTENANCE.7"
hm-rpc.0 2018-01-03 13:13:02.577 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2018-01-03 13:13:02.576 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1PBU-FM.SWITCH.9"
hm-rpc.0 2018-01-03 13:13:02.556 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.0 2018-01-03 13:13:02.556 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1PBU-FM.MAINTENANCE.9"
hm-rpc.0 2018-01-03 13:13:02.233 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN"
hm-rpc.0 2018-01-03 13:13:02.233 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.SWITCH_TRANSMIT.22"
hm-rpc.0 2018-01-03 13:13:02.192 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACTUAL_HUMIDITY":{"CONTROL":"THERMAL_CONTROL.HUMIDITY","DEFAULT":0,"FLAGS":1
hm-rpc.0 2018-01-03 13:13:02.192 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.THERMALCONTROL_TRANSMIT.22"
hm-rpc.0 2018-01-03 13:13:01.852 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"HUMIDITY":{"AutoconfRoles":"WEATHER","CONTROL":"NONE","DEFAULT":0,"FLAGS":1,
hm-rpc.0 2018-01-03 13:13:01.852 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.WEATHER_TRANSMIT.22"
hm-rpc.0 2018-01-03 13:13:01.815 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.0 2018-01-03 13:13:01.814 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.MAINTENANCE.22"
hm-rpc.0 2018-01-03 13:13:01.448 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2018-01-03 13:13:01.448 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.VIRTUAL_DIMMER.13"
hm-rpc.0 2018-01-03 13:13:01.105 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2018-01-03 13:13:01.104 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.DIMMER.13"
hm-rpc.0 2018-01-03 13:13:00.769 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.0 2018-01-03 13:13:00.767 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.MAINTENANCE.13"
hm-rpc.0 2018-01-03 13:13:00.391 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2018-01-03 13:13:00.391 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-FM.SWITCH.26"
hm-rpc.0 2018-01-03 13:13:00.363 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.0 2018-01-03 13:13:00.363 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-FM.MAINTENANCE.26"
hm-rpc.0 2018-01-03 13:13:00.021 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.0 2018-01-03 13:13:00.021 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Key4-2.KEY.4"
hm-rpc.0 2018-01-03 13:13:00.002 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.0 2018-01-03 13:13:00.002 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Key4-2.MAINTENANCE.4"
hm-rpc.0 2018-01-03 13:12:59.663 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2018-01-03 13:12:59.662 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-Key.KEYMATIC.7"
hm-rpc.0 2018-01-03 13:12:59.303 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.0 2018-01-03 13:12:59.302 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-Key.MAINTENANCE.7"
hm-rpc.0 2018-01-03 13:12:58.866 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2018-01-03 13:12:58.866 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-Re-8.SWITCH.6"
hm-rpc.0 2018-01-03 13:12:58.832 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.0 2018-01-03 13:12:58.832 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-Re-8.MAINTENANCE.6"
hm-rpc.0 2018-01-03 13:12:58.400 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true
hm-rpc.0 2018-01-03 13:12:58.400 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS30-OT2-SM.WEATHER.5"
hm-rpc.0 2018-01-03 13:12:58.380 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,
hm-rpc.0 2018-01-03 13:12:58.380 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS30-OT2-SM.MAINTENANCE.5"
hm-rpc.0 2018-01-03 13:12:58.122 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0,
hm-rpc.0 2018-01-03 13:12:58.121 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SCo.SHUTTER_CONTACT.3"
hm-rpc.0 2018-01-03 13:12:58.095 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.0 2018-01-03 13:12:58.094 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SCo.MAINTENANCE.3"
hm-rpc.0 2018-01-03 13:12:57.816 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0,
hm-rpc.0 2018-01-03 13:12:57.816 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-RHS.ROTARY_HANDLE_SENSOR.14"
hm-rpc.0 2018-01-03 13:12:57.681 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.0 2018-01-03 13:12:57.681 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-RHS.MAINTENANCE.14"
hm-rpc.0 2018-01-03 13:12:56.629 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACTUAL_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.TEMPERATURE","DEFAULT":0,"FL
hm-rpc.0 2018-01-03 13:12:56.628 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-CC-RT-DN.CLIMATECONTROL_RT_TRANSCEIVER.29"
hm-rpc.0 2018-01-03 13:12:56.251 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.0 2018-01-03 13:12:56.251 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-CC-RT-DN.MAINTENANCE.29"
hm-rpc.0 2018-01-03 13:12:56.030 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"HUMIDITY":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"HUMIDITY","
hm-rpc.0 2018-01-03 13:12:56.030 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS10-TH-O.WEATHER.5"
hm-rpc.0 2018-01-03 13:12:55.999 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,
hm-rpc.0 2018-01-03 13:12:55.998 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS10-TH-O.MAINTENANCE.5"
hm-rpc.0 2018-01-03 13:12:55.957 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:12:55.957 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_FREQUENCY.16"
hm-rpc.0 2018-01-03 13:12:55.950 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:12:55.949 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_VOLTAGE.16"
hm-rpc.0 2018-01-03 13:12:55.924 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:12:55.924 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_CURRENT.16"
hm-rpc.0 2018-01-03 13:12:55.912 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2018-01-03 13:12:55.912 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_POWER.16"
hm-rpc.0 2018-01-03 13:12:55.894 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","MA
hm-rpc.0 2018-01-03 13:12:55.893 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.POWERMETER.16"
hm-rpc.0 2018-01-03 13:12:55.861 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2018-01-03 13:12:55.861 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.SWITCH.16"
hm-rpc.0 2018-01-03 13:12:55.833 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.0 2018-01-03 13:12:55.575 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2018-01-03 13:12:55.545 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.0 2018-01-03 13:12:55.544 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Bl1PBU-FM.MAINTENANCE.8"

Ping error: Error: XML-RPC fault

Hallo ich nutze HOMEGEAR und den HM-CFG-USB2 Funktioniert auch ganz gut. Leider bekomme ich immer wieder einträge im log :

Ping error: Error: XML-RPC fault: : Requested method not found.

und der Adapter disconectet verbindet sich aber neu.

Eingestellt im Adapter ist im moment XML-RPC . Stelle ich um auf BIN-RPC stürzt der Adapter ab und wird neu gestartet:

Logeinträge:

Restart adapter system.adapter.hm-rpc.0 because enabled
error instance system.adapter.hm-rpc.0 terminated with code 6 (uncaught exception)
info binrpc -> 192.168.0.99:2001 init ["xmlrpc_bin://192.168.0.99:3000",""]
info binrpc -> 192.168.0.99:2001 init ["xmlrpc_bin://192.168.0.99:3000",""]
TypeError: 2016-07-20 23:38:44.970 error at TCP.onread (net.js:536:20)
TypeError: 2016-07-20 23:38:44.970 error at Socket.Readable.push (_stream_readable.js:111:10)
TypeError: 2016-07-20 23:38:44.970 error at readableAddChunk (_stream_readable.js:153:18)
TypeError: 2016-07-20 23:38:44.970 error at Socket.emit (events.js:169:7)
TypeError: 2016-07-20 23:38:44.970 error at emitOne (events.js:77:13)
TypeError: 2016-07-20 23:38:44.970 error at Socket. (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/server.js:50:38)
TypeError: 2016-07-20 23:38:44.970 error at Object.Protocol.decodeRequest (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:476:32)
TypeError: 2016-07-20 23:38:44.970 error at Object.Protocol.decodeStrangeRequest (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:441:9)
TypeError: 2016-07-20 23:38:44.970 error at rec (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:432:32)
TypeError: 2016-07-20 23:38:44.970 error at Object.Protocol.decodeData (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:371:81)
TypeError: 2016-07-20 23:38:44.970 error Cannot read property 'toString' of null
uncaught 2016-07-20 23:38:44.956 error exception: Cannot read property 'toString' of null
info Connected
info binrpc client is trying to connect to 192.168.0.99:2001 with ["xmlrpc_bin://192.168.0.99:3000","hm-rpc.0"]
info binrpc server is trying to listen on 192.168.0.99:3000
info starting. Version 1.3.1 in /opt/iobroker/node_modules/iobroker.hm-rpc

"Send this info to the developer" log-Details

Heute erschienen beim Einsatz von Adapterversion 1.5.0 die folgenden Einträge in meinem Log:

2017-12-18 15:59:01.461 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-CC-RT-DN.MAINTENANCE.29"
2017-12-18 15:59:01.461 - warn: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"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":8,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.505 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-CC-RT-DN.CLIMATECONTROL_RT_TRANSCEIVER.29"
2017-12-18 15:59:01.505 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACTUAL_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.TEMPERATURE","DEFAULT":0,"FLAGS":1,"ID":"ACTUAL_TEMPERATURE","MAX":56,"MIN":-10,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"FLOAT","UNIT":"�C"},"AUTO_MODE":{"CONTROL":"HEATING_CONTROL.AUTO","DEFAULT":false,"FLAGS":1,"ID":"AUTO_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":7,"TYPE":"ACTION","UNIT":""},"BATTERY_STATE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"BATTERY_STATE","MAX":4.6,"MIN":1.5,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"V"},"BOOST_MODE":{"CONTROL":"HEATING_CONTROL.BOOST","DEFAULT":false,"FLAGS":1,"ID":"BOOST_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":9,"TYPE":"ACTION","UNIT":""},"BOOST_STATE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"BOOST_STATE","MAX":30,"MIN":0,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"INTEGER","UNIT":"min"},"COMFORT_MODE":{"CONTROL":"HEATING_CONTROL.COMFORT","DEFAULT":false,"FLAGS":1,"ID":"COMFORT_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":10,"TYPE":"ACTION","UNIT":""},"CONTROL_MODE":{"CONTROL":"HEATING_CONTROL.CONTROL_MODE","DEFAULT":0,"FLAGS":1,"ID":"CONTROL_MODE","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["AUTO-MODE","MANU-MODE","PARTY-MODE","BOOST-MODE"]},"FAULT_REPORTING":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"FAULT_REPORTING","MAX":7,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NO_FAULT","VALVE_TIGHT","ADJUSTING_RANGE_TOO_LARGE","ADJUSTING_RANGE_TOO_SMALL","COMMUNICATION_ERROR","","LOWBAT","VALVE_ERROR_POSITION"]},"LOWERING_MODE":{"CONTROL":"HEATING_CONTROL.LOWERING","DEFAULT":false,"FLAGS":1,"ID":"LOWERING_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":11,"TYPE":"ACTION","UNIT":""},"MANU_MODE":{"CONTROL":"HEATING_CONTROL.MANU","DEFAULT":20,"FLAGS":1,"ID":"MANU_MODE","MAX":30.5,"MIN":4.5,"OPERATIONS":2,"TAB_ORDER":8,"TYPE":"FLOAT","UNIT":"�C"},"PARTY_MODE_SUBMIT":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"PARTY_MODE_SUBMIT","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":12,"TYPE":"STRING","UNIT":""},"PARTY_START_DAY":{"CONTROL":"HEATING_CONTROL.PARTY_START_DAY","DEFAULT":1,"FLAGS":1,"ID":"PARTY_START_DAY","MAX":31,"MIN":1,"OPERATIONS":3,"TAB_ORDER":15,"TYPE":"INTEGER","UNIT":"day"},"PARTY_START_MONTH":{"CONTROL":"HEATING_CONTROL.PARTY_START_MONTH","DEFAULT":1,"FLAGS":1,"ID":"PARTY_START_MONTH","MAX":12,"MIN":1,"OPERATIONS":3,"TAB_ORDER":16,"TYPE":"INTEGER","UNIT":"month"},"PARTY_START_TIME":{"CONTROL":"HEATING_CONTROL.PARTY_START_TIME","DEFAULT":0,"FLAGS":1,"ID":"PARTY_START_TIME","MAX":1410,"MIN":0,"OPERATIONS":3,"TAB_ORDER":14,"TYPE":"INTEGER","UNIT":"minutes"},"PARTY_START_YEAR":{"CONTROL":"HEATING_CONTROL.PARTY_START_YEAR","DEFAULT":12,"FLAGS":1,"ID":"PARTY_START_YEAR","MAX":99,"MIN":0,"OPERATIONS":3,"TAB_ORDER":17,"TYPE":"INTEGER","UNIT":"year"},"PARTY_STOP_DAY":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_DAY","DEFAULT":1,"FLAGS":1,"ID":"PARTY_STOP_DAY","MAX":31,"MIN":1,"OPERATIONS":3,"TAB_ORDER":19,"TYPE":"INTEGER","UNIT":"day"},"PARTY_STOP_MONTH":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_MONTH","DEFAULT":1,"FLAGS":1,"ID":"PARTY_STOP_MONTH","MAX":12,"MIN":1,"OPERATIONS":3,"TAB_ORDER":20,"TYPE":"INTEGER","UNIT":"month"},"PARTY_STOP_TIME":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_TIME","DEFAULT":0,"FLAGS":1,"ID":"PARTY_STOP_TIME","MAX":1410,"MIN":0,"OPERATIONS":3,"TAB_ORDER":18,"TYPE":"INTEGER","UNIT":"minutes"},"PARTY_STOP_YEAR":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_YEAR","DEFAULT":12,"FLAGS":1,"ID":"PARTY_STOP_YEAR","MAX":99,"MIN":0,"OPERATIONS":3,"TAB_ORDER":21,"TYPE":"INTEGER","UNIT":"year"},"PARTY_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.PARTY_TEMP","DEFAULT":20,"FLAGS":1,"ID":"PARTY_TEMPERATURE","MAX":30,"MIN":5,"OPERATIONS":3,"TAB_ORDER":13,"TYPE":"FLOAT","UNIT":"�C"},"SET_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.SETPOINT","DEFAULT":20,"FLAGS":1,"ID":"SET_TEMPERATURE","MAX":30.5,"MIN":4.5,"OPERATIONS":7,"TAB_ORDER":6,"TYPE":"FLOAT","UNIT":"�C"},"VALVE_STATE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"VALVE_STATE","MAX":99,"MIN":0,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"INTEGER","UNIT":"%"}}}
2017-12-18 15:59:01.549 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SCo.MAINTENANCE.3"
2017-12-18 15:59:01.549 - warn: hm-rpc.0 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":""}}}
2017-12-18 15:59:01.557 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SCo.SHUTTER_CONTACT.3"
2017-12-18 15:59:01.557 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["NO_ERROR","","","","","","","SABOTAGE"]},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":4,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"STATE":{"CONTROL":"DOOR_SENSOR.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.592 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.MAINTENANCE.16"
2017-12-18 15:59:01.593 - warn: hm-rpc.0 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":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","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":""}}}
2017-12-18 15:59:01.601 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.SWITCH.16"
2017-12-18 15:59:01.602 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.612 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.POWERMETER.16"
2017-12-18 15:59:01.612 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"BOOL","UNIT":""},"CURRENT":{"CONTROL":"POWERMETER.CURRENT","DEFAULT":0,"FLAGS":1,"ID":"CURRENT","MAX":65535,"MIN":0,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"FLOAT","UNIT":"mA"},"ENERGY_COUNTER":{"CONTROL":"POWERMETER.ENERGY_COUNTER","DEFAULT":0,"FLAGS":1,"ID":"ENERGY_COUNTER","MAX":838860.699219,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"Wh"},"FREQUENCY":{"CONTROL":"POWERMETER.FREQUENCY","DEFAULT":0,"FLAGS":1,"ID":"FREQUENCY","MAX":51.27,"MIN":48.72,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"FLOAT","UNIT":"Hz"},"POWER":{"CONTROL":"POWERMETER.POWER","DEFAULT":0,"FLAGS":1,"ID":"POWER","MAX":167772.149902,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"W"},"VOLTAGE":{"CONTROL":"POWERMETER.VOLTAGE","DEFAULT":0,"FLAGS":1,"ID":"VOLTAGE","MAX":6553.5,"MIN":0,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"FLOAT","UNIT":"V"}}}
2017-12-18 15:59:01.628 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_POWER.16"
2017-12-18 15:59:01.628 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2017-12-18 15:59:01.633 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_CURRENT.16"
2017-12-18 15:59:01.633 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2017-12-18 15:59:01.639 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_VOLTAGE.16"
2017-12-18 15:59:01.639 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2017-12-18 15:59:01.643 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_FREQUENCY.16"
2017-12-18 15:59:01.643 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}
2017-12-18 15:59:01.654 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-Pl-DN-R1.MAINTENANCE.8"
2017-12-18 15:59:01.654 - warn: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"DUTYCYCLE":{"DEFAULT":false,"FLAGS":9,"ID":"DUTYCYCLE","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"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":5,"TYPE":"INTEGER","UNIT":""},"RSSI_PEER":{"DEFAULT":0,"FLAGS":1,"ID":"RSSI_PEER","MAX":2147483647,"MIN":-2147483648,"OPERATIONS":5,"TAB_ORDER":6,"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":8,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.664 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-Pl-DN-R1.SWITCH.8"
2017-12-18 15:59:01.664 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"INSTALL_TEST":{"DEFAULT":false,"FLAGS":3,"ID":"INSTALL_TEST","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":3,"TYPE":"ACTION","UNIT":""},"ON_TIME":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"ON_TIME","MAX":85825945.5,"MIN":0,"OPERATIONS":2,"TAB_ORDER":1,"TYPE":"FLOAT","UNIT":"s"},"STATE":{"CONTROL":"SWITCH.STATE","DEFAULT":false,"FLAGS":1,"ID":"STATE","MAX":true,"MIN":false,"OPERATIONS":7,"TAB_ORDER":0,"TYPE":"BOOL","UNIT":""},"WORKING":{"DEFAULT":false,"FLAGS":3,"ID":"WORKING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.683 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.MAINTENANCE.22"
2017-12-18 15:59:01.683 - warn: hm-rpc.0 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":9,"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":7,"TYPE":"BOOL","UNIT":""},"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":true,"MIN":false,"OPERATIONS":7,"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":8,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.692 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.WEATHER_TRANSMIT.22"
2017-12-18 15:59:01.692 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"HUMIDITY":{"AutoconfRoles":"WEATHER","CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"HUMIDITY","MAX":99,"MIN":0,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"INTEGER","UNIT":"%"},"TEMPERATURE":{"AutoconfRoles":"WEATHER","CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"TEMPERATURE","MAX":50,"MIN":-10,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"FLOAT","UNIT":"�C"}}}
2017-12-18 15:59:01.731 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.THERMALCONTROL_TRANSMIT.22"
2017-12-18 15:59:01.731 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACTUAL_HUMIDITY":{"CONTROL":"THERMAL_CONTROL.HUMIDITY","DEFAULT":0,"FLAGS":1,"ID":"ACTUAL_HUMIDITY","MAX":99,"MIN":0,"OPERATIONS":5,"TAB_ORDER":7,"TYPE":"FLOAT","UNIT":"%"},"ACTUAL_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.TEMPERATURE","DEFAULT":0,"FLAGS":1,"ID":"ACTUAL_TEMPERATURE","MAX":50,"MIN":-10,"OPERATIONS":5,"TAB_ORDER":6,"TYPE":"FLOAT","UNIT":"�C"},"AUTO_MODE":{"CONTROL":"HEATING_CONTROL.AUTO","DEFAULT":false,"FLAGS":1,"ID":"AUTO_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":9,"TYPE":"ACTION","UNIT":""},"BATTERY_STATE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"BATTERY_STATE","MAX":4.6,"MIN":1.5,"OPERATIONS":5,"TAB_ORDER":4,"TYPE":"FLOAT","UNIT":"V"},"BOOST_MODE":{"CONTROL":"HEATING_CONTROL.BOOST","DEFAULT":false,"FLAGS":1,"ID":"BOOST_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":11,"TYPE":"ACTION","UNIT":""},"BOOST_STATE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"BOOST_STATE","MAX":30,"MIN":0,"OPERATIONS":5,"TAB_ORDER":5,"TYPE":"INTEGER","UNIT":"min"},"COMFORT_MODE":{"CONTROL":"HEATING_CONTROL.COMFORT","DEFAULT":false,"FLAGS":1,"ID":"COMFORT_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":12,"TYPE":"ACTION","UNIT":""},"COMMUNICATION_REPORTING":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"COMMUNICATION_REPORTING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":2,"TYPE":"BOOL","UNIT":""},"CONTROL_MODE":{"CONTROL":"HEATING_CONTROL.CONTROL_MODE","DEFAULT":0,"FLAGS":1,"ID":"CONTROL_MODE","MAX":3,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"ENUM","UNIT":"","VALUE_LIST":["AUTO-MODE","MANU-MODE","PARTY-MODE","BOOST-MODE"]},"LOWBAT_REPORTING":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT_REPORTING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":1,"TYPE":"BOOL","UNIT":""},"LOWERING_MODE":{"CONTROL":"HEATING_CONTROL.LOWERING","DEFAULT":false,"FLAGS":1,"ID":"LOWERING_MODE","MAX":true,"MIN":false,"OPERATIONS":2,"TAB_ORDER":13,"TYPE":"ACTION","UNIT":""},"MANU_MODE":{"CONTROL":"HEATING_CONTROL.MANU","DEFAULT":20,"FLAGS":1,"ID":"MANU_MODE","MAX":30.5,"MIN":4.5,"OPERATIONS":2,"TAB_ORDER":10,"TYPE":"FLOAT","UNIT":"�C"},"PARTY_MODE_SUBMIT":{"CONTROL":"NONE","DEFAULT":"","FLAGS":1,"ID":"PARTY_MODE_SUBMIT","MAX":"","MIN":"","OPERATIONS":2,"TAB_ORDER":14,"TYPE":"STRING","UNIT":""},"PARTY_START_DAY":{"CONTROL":"HEATING_CONTROL.PARTY_START_DAY","DEFAULT":1,"FLAGS":1,"ID":"PARTY_START_DAY","MAX":31,"MIN":1,"OPERATIONS":3,"TAB_ORDER":17,"TYPE":"INTEGER","UNIT":"day"},"PARTY_START_MONTH":{"CONTROL":"HEATING_CONTROL.PARTY_START_MONTH","DEFAULT":1,"FLAGS":1,"ID":"PARTY_START_MONTH","MAX":12,"MIN":1,"OPERATIONS":3,"TAB_ORDER":18,"TYPE":"INTEGER","UNIT":"month"},"PARTY_START_TIME":{"CONTROL":"HEATING_CONTROL.PARTY_START_TIME","DEFAULT":0,"FLAGS":1,"ID":"PARTY_START_TIME","MAX":1410,"MIN":0,"OPERATIONS":3,"TAB_ORDER":16,"TYPE":"INTEGER","UNIT":"minutes"},"PARTY_START_YEAR":{"CONTROL":"HEATING_CONTROL.PARTY_START_YEAR","DEFAULT":12,"FLAGS":1,"ID":"PARTY_START_YEAR","MAX":99,"MIN":0,"OPERATIONS":3,"TAB_ORDER":19,"TYPE":"INTEGER","UNIT":"year"},"PARTY_STOP_DAY":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_DAY","DEFAULT":1,"FLAGS":1,"ID":"PARTY_STOP_DAY","MAX":31,"MIN":1,"OPERATIONS":3,"TAB_ORDER":21,"TYPE":"INTEGER","UNIT":"day"},"PARTY_STOP_MONTH":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_MONTH","DEFAULT":1,"FLAGS":1,"ID":"PARTY_STOP_MONTH","MAX":12,"MIN":1,"OPERATIONS":3,"TAB_ORDER":22,"TYPE":"INTEGER","UNIT":"month"},"PARTY_STOP_TIME":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_TIME","DEFAULT":0,"FLAGS":1,"ID":"PARTY_STOP_TIME","MAX":1410,"MIN":0,"OPERATIONS":3,"TAB_ORDER":20,"TYPE":"INTEGER","UNIT":"minutes"},"PARTY_STOP_YEAR":{"CONTROL":"HEATING_CONTROL.PARTY_STOP_YEAR","DEFAULT":12,"FLAGS":1,"ID":"PARTY_STOP_YEAR","MAX":99,"MIN":0,"OPERATIONS":3,"TAB_ORDER":23,"TYPE":"INTEGER","UNIT":"year"},"PARTY_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.PARTY_TEMP","DEFAULT":20,"FLAGS":1,"ID":"PARTY_TEMPERATURE","MAX":30,"MIN":5,"OPERATIONS":3,"TAB_ORDER":15,"TYPE":"FLOAT","UNIT":"�C"},"SET_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.SETPOINT","DEFAULT":20,"FLAGS":1,"ID":"SET_TEMPERATURE","MAX":30.5,"MIN":4.5,"OPERATIONS":7,"TAB_ORDER":8,"TYPE":"FLOAT","UNIT":"�C"},"WINDOW_OPEN_REPORTING":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"WINDOW_OPEN_REPORTING","MAX":true,"MIN":false,"OPERATIONS":5,"TAB_ORDER":3,"TYPE":"BOOL","UNIT":""}}}
2017-12-18 15:59:01.746 - warn: hm-rpc.0 Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.SWITCH_TRANSMIT.22"
2017-12-18 15:59:01.746 - warn: hm-rpc.0 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN":0,"OPERATIONS":5,"TAB_ORDER":0,"TYPE":"INTEGER","UNIT":""}}}

Gruß grimneko

HMW-IO-12-FM with wrong objects

Hi .. I´ve HMW-IO-4-FM and HMW-IO-12-FM wired interfaces but just the HMW-IO-4-FM is imported correctly. The HMW-IO-12-FM has only STATE as object but most of them are set as button input.

I tried to set them manually what works but I´ve to add nearly 240 Objects for PRESS_SHORT and PRESS_LONG .. is there a solution to import them with correct Objects?

In the "io-package.json" there is no section for the HMW-IO-12-FM and HMW-IO-4-FM.

Verbindungs-Check Interval

Das Interval in der Adapter Konfig ist dort mit "Verbindungs-Check Interval(sek)" beschrieben. Also in Sekunden. Im Code der Datei "hm-rpc.js" wird der Wert "checkInitInterval" aber unterschiedlich (Sekunden / Millisekunden) behandelt.
Z.B. bei "adapter.config.checkInitInterval * 1000"
und "adapter.config.checkInitInterval * 1000 / 2"

Bei mir seht z.B. 7200 in der Adapter Konfig, das logging in der CCU zeigt dann jede Stunde den "CENTRAL" Fehler.

Hoffe das reicht zum nachvollziehen.
Gruß AlGu

CUxD logs

Der hm-rpc-Adapter spamt mir das log ganz schön zu, da anscheinend ständig alle Datenpunkte neu angelegt werden.
Einstellung des Adapters:

Daemon: CUxD
Port: 8701
Protokoll: BIN-RPC
Verbindungs-Check Interval: 360

hm-rega logt gleichzeitig immer:

hm-rega-0   2015-08-06 11:25:49   info   Got unexpected ID: hm-rpc.1.updated

hm-rpc log von zwei Intervallen (11:07 Uhr und 11:16 Uhr):

hm-rpc-1   2015-08-06 11:16:55   info   object hm-rpc.1.CUX4000001.16.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:55   info   object hm-rpc.1.CUX4000001.16.CONTROL extended
hm-rpc-1   2015-08-06 11:16:55   info   object hm-rpc.1.CUX4000001.16.RCVL extended
hm-rpc-1   2015-08-06 11:16:55   info   object hm-rpc.1.CUX4000001.16.RCVS extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.MOTION extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.STATE extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.STOP extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.16.LEVEL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.CONTROL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.RCVL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.RCVS extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.MOTION extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.STATE extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.STOP extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.15.LEVEL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.CONTROL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.RCVL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.RCVS extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.MOTION extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.STATE extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.STOP extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.14.LEVEL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.CONTROL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.RCVL extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.RCVS extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.MOTION extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:54   info   object hm-rpc.1.CUX4000001.13.STATE extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.13.STOP extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.13.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.13.LEVEL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.CONTROL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.RCVL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.RCVS extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.MOTION extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.STATE extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.STOP extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.12.LEVEL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.11.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.11.CONTROL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.11.RCVL extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.11.RCVS extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.11.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:53   info   object hm-rpc.1.CUX4000001.11.MOTION extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.11.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.11.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.11.STATE extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.11.STOP extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.11.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.11.LEVEL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.CONTROL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.RCVL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.RCVS extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.MOTION extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.STATE extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.STOP extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.10.LEVEL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.9.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.9.CONTROL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.9.RCVL extended
hm-rpc-1   2015-08-06 11:16:52   info   object hm-rpc.1.CUX4000001.9.RCVS extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.MOTION extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.STATE extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.STOP extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.9.LEVEL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.CONTROL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.RCVL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.RCVS extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.MOTION extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.STATE extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.STOP extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.8.LEVEL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.CONTROL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.RCVL extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.RCVS extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.MOTION extended
hm-rpc-1   2015-08-06 11:16:51   info   object hm-rpc.1.CUX4000001.7.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.7.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.7.STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.7.STOP extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.7.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.7.LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.CONTROL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.RCVL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.RCVS extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.MOTION extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.STOP extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.6.LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.CONTROL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.RCVL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.RCVS extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.MOTION extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.STOP extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.5.LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.CONTROL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.RCVL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.RCVS extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.MOTION extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.STATE extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.STOP extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.4.LEVEL extended
hm-rpc-1   2015-08-06 11:16:50   info   object hm-rpc.1.CUX4000001.3.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.CONTROL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.RCVL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.RCVS extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.MOTION extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.STATE extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.STOP extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.3.LEVEL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.CONTROL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.RCVL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.RCVS extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.MOTION extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.STATE extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.STOP extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.2.LEVEL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.1.SET_STATE extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.1.CONTROL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.1.RCVL extended
hm-rpc-1   2015-08-06 11:16:49   info   object hm-rpc.1.CUX4000001.1.RCVS extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.SEND_CMD extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.MOTION extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.STATE extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.STOP extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1.LEVEL extended
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.0 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.1 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.2 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.3 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.4 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.5 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.6 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.7 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.8 created
hm-rpc-1   2015-08-06 11:16:48   info   object hm-rpc.1.CUX4000001.9 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.10 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.11 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.12 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.13 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.14 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.15 created
hm-rpc-1   2015-08-06 11:16:47   info   object hm-rpc.1.CUX4000001.16 created
hm-rpc-1   2015-08-06 11:16:47   info   binrpc -> listDevices 18
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.SET_STATE extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.CONTROL extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.RCVL extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.RCVS extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.SEND_CMD extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.MOTION extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.STATE extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.STOP extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.16.LEVEL extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.15.SET_STATE extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.15.CONTROL extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.15.RCVL extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.15.RCVS extended
hm-rpc-1   2015-08-06 11:07:52   info   object hm-rpc.1.CUX4000001.15.SEND_CMD extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.MOTION extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.STATE extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.STOP extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.15.LEVEL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.SET_STATE extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.CONTROL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.RCVL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.RCVS extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.SEND_CMD extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.MOTION extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.STATE extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.STOP extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.OLD_LEVEL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.14.LEVEL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.SET_STATE extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.CONTROL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.RCVL extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.RCVS extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.SEND_CMD extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.MOTION extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.PRESS_LONG extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.PRESS_SHORT extended
hm-rpc-1   2015-08-06 11:07:51   info   object hm-rpc.1.CUX4000001.13.STATE extended

Send this info to developer

hm-rpc.0 2017-11-26 17:26:46.081 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2017-11-26 17:26:46.080 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-FM.SWITCH.26"
hm-rpc.0 2017-11-26 17:26:46.056 info binrpc -> getParamsetDescription ["OEQ0654075:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:46.003 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.0 2017-11-26 17:26:46.003 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-FM.MAINTENANCE.26"
hm-rpc.0 2017-11-26 17:26:45.973 info binrpc -> getParamsetDescription ["OEQ0654075:0","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.862 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2017-11-26 17:26:45.862 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1T-FM.DIMMER.21"
hm-rpc.0 2017-11-26 17:26:45.736 info binrpc -> getParamsetDescription ["OEQ0570544:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.703 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,
hm-rpc.0 2017-11-26 17:26:45.702 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1T-FM.MAINTENANCE.21"
hm-rpc.0 2017-11-26 17:26:45.678 info binrpc -> getParamsetDescription ["OEQ0570544:0","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.540 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BRIGHTNESS":{"DEFAULT":0,"FLAGS":1,"ID":"BRIGHTNESS","MAX":255,"MIN":0,"OPER
hm-rpc.0 2017-11-26 17:26:45.540 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-WM55.MOTION_DETECTOR.5"
hm-rpc.0 2017-11-26 17:26:45.527 info binrpc -> getParamsetDescription ["OEQ0539060:3","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.466 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.0 2017-11-26 17:26:45.465 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-WM55.KEY.5"
hm-rpc.0 2017-11-26 17:26:45.437 info binrpc -> getParamsetDescription ["OEQ0539060:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.382 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.0 2017-11-26 17:26:45.382 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sen-MDIR-WM55.MAINTENANCE.5"
hm-rpc.0 2017-11-26 17:26:45.349 info binrpc -> getParamsetDescription ["OEQ0539060:0","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.114 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.0 2017-11-26 17:26:45.114 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-6-WM55.KEY.7"
hm-rpc.0 2017-11-26 17:26:45.093 info binrpc -> getParamsetDescription ["OEQ0283950:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:45.048 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.0 2017-11-26 17:26:45.048 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-PB-6-WM55.MAINTENANCE.7"
hm-rpc.0 2017-11-26 17:26:44.941 info binrpc -> getParamsetDescription ["OEQ0283950:0","VALUES"]
hm-rpc.0 2017-11-26 17:26:44.884 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.0 2017-11-26 17:26:44.883 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-SCI-3-FM.SHUTTER_CONTACT.10"
hm-rpc.0 2017-11-26 17:26:44.869 info binrpc -> getParamsetDescription ["OEQ0132046:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:44.830 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.0 2017-11-26 17:26:44.829 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-SCI-3-FM.MAINTENANCE.10"
hm-rpc.0 2017-11-26 17:26:44.803 info binrpc -> getParamsetDescription ["OEQ0132046:0","VALUES"]
hm-rpc.0 2017-11-26 17:26:44.677 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2017-11-26 17:26:44.677 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1T-Pl-3.VIRTUAL_DIMMER.17"
hm-rpc.0 2017-11-26 17:26:44.625 info binrpc -> getParamsetDescription ["MEQ1567118:2","VALUES"]
hm-rpc.0 2017-11-26 17:26:44.399 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2017-11-26 17:26:44.399 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1T-Pl-3.DIMMER.17"
hm-rpc.0 2017-11-26 17:26:44.332 info binrpc -> getParamsetDescription ["MEQ1567118:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:44.233 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.0 2017-11-26 17:26:44.233 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1T-Pl-3.MAINTENANCE.17"
hm-rpc.0 2017-11-26 17:26:44.067 info binrpc -> getParamsetDescription ["MEQ1567118:0","VALUES"]
hm-rpc.0 2017-11-26 17:26:44.058 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-11-26 17:26:44.053 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_FREQUENCY.16"
hm-rega.0 2017-11-26 17:26:44.044 info got state values
hm-rpc.0 2017-11-26 17:26:44.014 info binrpc -> getParamsetDescription ["LEQ0530627:6","VALUES"]
hm-rpc.0 2017-11-26 17:26:43.975 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-11-26 17:26:43.975 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_VOLTAGE.16"
hm-rpc.0 2017-11-26 17:26:43.933 info binrpc -> getParamsetDescription ["LEQ0530627:5","VALUES"]
hm-rpc.0 2017-11-26 17:26:43.888 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-11-26 17:26:43.888 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_CURRENT.16"
hm-rpc.0 2017-11-26 17:26:43.858 info binrpc -> getParamsetDescription ["LEQ0530627:4","VALUES"]
hm-rpc.0 2017-11-26 17:26:43.829 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-11-26 17:26:43.825 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_POWER.16"
hm-rpc.0 2017-11-26 17:26:43.800 info binrpc -> getParamsetDescription ["LEQ0530627:3","VALUES"]
hm-rpc.0 2017-11-26 17:26:43.719 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","MA
hm-rpc.0 2017-11-26 17:26:43.719 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.POWERMETER.16"
hm-rpc.0 2017-11-26 17:26:43.441 info binrpc -> getParamsetDescription ["LEQ0530627:2","VALUES"]
hm-rpc.0 2017-11-26 17:26:43.404 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2017-11-26 17:26:43.404 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.SWITCH.16"
hm-rpc.0 2017-11-26 17:26:43.218 info binrpc -> getParamsetDescription ["LEQ0530627:1","VALUES"]
hm-rpc.0 2017-11-26 17:26:43.166 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.0 2017-11-26 17:26:43.166 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.MAINTENANCE.16"

send it to developer....

habe dies im Log angezeigt bekommen, somit sende ich es zum Entwickler ;-)

hm-rpc.0 2017-09-02 21:28:34.915 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.0 2017-09-02 21:28:34.914 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD-2-Team.SMOKE_DETECTOR_TEAM_V2.3"
hm-rpc.0 2017-09-02 21:28:34.896 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-09-02 21:28:34.895 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_FREQUENCY.16"
hm-rpc.0 2017-09-02 21:28:34.884 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-09-02 21:28:34.884 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_VOLTAGE.16"
hm-rpc.0 2017-09-02 21:28:34.874 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-09-02 21:28:34.873 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_CURRENT.16"
hm-rpc.0 2017-09-02 21:28:34.857 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE
hm-rpc.0 2017-09-02 21:28:34.857 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.CONDITION_POWER.16"
hm-rpc.0 2017-09-02 21:28:34.831 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","MA
hm-rpc.0 2017-09-02 21:28:34.830 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.POWERMETER.16"
hm-rpc.0 2017-09-02 21:28:34.754 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2017-09-02 21:28:34.754 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.SWITCH.16"
hm-rpc.0 2017-09-02 21:28:34.679 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.0 2017-09-02 21:28:34.678 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl-DN-R1.MAINTENANCE.16"
hm-rpc.0 2017-09-02 21:28:34.522 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR_ALARM_TEST":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR_ALARM_
hm-rpc.0 2017-09-02 21:28:34.522 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD-2.SMOKE_DETECTOR.5"
hm-rpc.0 2017-09-02 21:28:34.457 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.0 2017-09-02 21:28:34.456 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SD-2.MAINTENANCE.5"
hm-rpc.0 2017-09-02 21:28:33.804 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.0 2017-09-02 21:28:33.804 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-4-3.KEY.7"
hm-rpc.0 2017-09-02 21:28:33.667 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.0 2017-09-02 21:28:33.666 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-4-3.MAINTENANCE.7"
hm-rpc.0 2017-09-02 21:28:33.365 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2017-09-02 21:28:33.363 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1PBU-FM.SWITCH.9"
hm-rpc.0 2017-09-02 21:28:33.312 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.0 2017-09-02 21:28:33.310 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1PBU-FM.MAINTENANCE.9"
hm-rpc.0 2017-09-02 21:28:33.007 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALUE","MAX":255,"MIN"
hm-rpc.0 2017-09-02 21:28:33.007 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.SWITCH_TRANSMIT.22"
hm-rpc.0 2017-09-02 21:28:32.914 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACTUAL_HUMIDITY":{"CONTROL":"THERMAL_CONTROL.HUMIDITY","DEFAULT":0,"FLAGS":1
hm-rpc.0 2017-09-02 21:28:32.912 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.THERMALCONTROL_TRANSMIT.22"
hm-rpc.0 2017-09-02 21:28:32.516 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"HUMIDITY":{"AutoconfRoles":"WEATHER","CONTROL":"NONE","DEFAULT":0,"FLAGS":1,
hm-rpc.0 2017-09-02 21:28:32.514 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.WEATHER_TRANSMIT.22"
hm-rpc.0 2017-09-02 21:28:32.476 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.0 2017-09-02 21:28:32.474 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-TC-IT-WM-W-EU.MAINTENANCE.22"
hm-rpc.0 2017-09-02 21:28:32.067 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2017-09-02 21:28:32.066 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.VIRTUAL_DIMMER.13"
hm-rpc.0 2017-09-02 21:28:31.898 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2017-09-02 21:28:31.896 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.DIMMER.13"
hm-rpc.0 2017-09-02 21:28:31.702 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.0 2017-09-02 21:28:31.702 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Dim1TPBU-FM.MAINTENANCE.13"
hm-rpc.0 2017-09-02 21:28:31.204 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2017-09-02 21:28:31.200 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-FM.SWITCH.26"
hm-rpc.0 2017-09-02 21:28:31.129 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.0 2017-09-02 21:28:31.127 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Sw1-FM.MAINTENANCE.26"
hm-rpc.0 2017-09-02 21:28:30.784 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.0 2017-09-02 21:28:30.784 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Key4-2.KEY.4"
hm-rpc.0 2017-09-02 21:28:30.728 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.0 2017-09-02 21:28:30.727 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-RC-Key4-2.MAINTENANCE.4"
hm-rpc.0 2017-09-02 21:28:30.391 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATIO
hm-rpc.0 2017-09-02 21:28:30.389 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-Key.KEYMATIC.7"
hm-rpc.0 2017-09-02 21:28:30.006 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.0 2017-09-02 21:28:30.004 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-Key.MAINTENANCE.7"
hm-rpc.0 2017-09-02 21:28:29.528 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":tr
hm-rpc.0 2017-09-02 21:28:29.528 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-Re-8.SWITCH.6"
hm-rpc.0 2017-09-02 21:28:29.262 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.0 2017-09-02 21:28:29.262 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-MOD-Re-8.MAINTENANCE.6"
admin.0 2017-09-02 21:28:29.210 info Unsubscribe from all states, except system's, because over 3 seconds the number of events is over 200 (in last second 0)
hm-rpc.0 2017-09-02 21:28:26.241 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"LOWBAT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"LOWBAT","MAX":true
hm-rpc.0 2017-09-02 21:28:26.239 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS30-OT2-SM.WEATHER.5"
hm-rpc.0 2017-09-02 21:28:26.186 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true,
hm-rpc.0 2017-09-02 21:28:26.186 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS30-OT2-SM.MAINTENANCE.5"
hm-rpc.0 2017-09-02 21:28:25.768 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0,
hm-rpc.0 2017-09-02 21:28:25.768 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SCo.SHUTTER_CONTACT.3"
hm-rpc.0 2017-09-02 21:28:25.709 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.0 2017-09-02 21:28:25.708 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-SCo.MAINTENANCE.3"
hm-rpc.0 2017-09-02 21:28:25.329 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ERROR":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":9,"ID":"ERROR","MAX":7,"MIN":0
hm-rpc.0 2017-09-02 21:28:25.326 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-RHS.ROTARY_HANDLE_SENSOR.14"
hm-rpc.0 2017-09-02 21:28:25.216 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,"OPERATION
hm-rpc.0 2017-09-02 21:28:25.213 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-Sec-RHS.MAINTENANCE.14"
hm-rpc.0 2017-09-02 21:28:24.829 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ACTUAL_TEMPERATURE":{"CONTROL":"HEATING_CONTROL.TEMPERATURE","DEFAULT":0,"F
hm-rpc.0 2017-09-02 21:28:24.820 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-CC-RT-DN.CLIMATECONTROL_RT_TRANSCEIVER.29"
hm-rpc.0 2017-09-02 21:28:24.351 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,"OPERATION
hm-rpc.0 2017-09-02 21:28:24.351 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-CC-RT-DN.MAINTENANCE.29"
hm-rpc.0 2017-09-02 21:28:23.935 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"HUMIDITY":{"AutoconfRoles":"WEATHER","DEFAULT":0,"FLAGS":1,"ID":"HUMIDITY",
hm-rpc.0 2017-09-02 21:28:23.935 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS10-TH-O.WEATHER.5"
hm-rpc.0 2017-09-02 21:28:23.890 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"DEFAULT":false,"FLAGS":9,"ID":"CONFIG_PENDING","MAX":true
hm-rpc.0 2017-09-02 21:28:23.887 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-WDS10-TH-O.MAINTENANCE.5"
hm-rpc.0 2017-09-02 21:28:23.857 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALU
hm-rpc.0 2017-09-02 21:28:23.857 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_FREQUENCY.16"
hm-rpc.0 2017-09-02 21:28:23.839 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALU
hm-rpc.0 2017-09-02 21:28:23.839 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_VOLTAGE.16"
hm-rpc.0 2017-09-02 21:28:23.813 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALU
hm-rpc.0 2017-09-02 21:28:23.813 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_CURRENT.16"
hm-rpc.0 2017-09-02 21:28:23.789 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DECISION_VALUE":{"CONTROL":"NONE","DEFAULT":0,"FLAGS":1,"ID":"DECISION_VALU
hm-rpc.0 2017-09-02 21:28:23.788 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.CONDITION_POWER.16"
hm-rpc.0 2017-09-02 21:28:23.688 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"BOOT":{"CONTROL":"POWERMETER.BOOT","DEFAULT":false,"FLAGS":3,"ID":"BOOT","M
hm-rpc.0 2017-09-02 21:28:23.681 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.POWERMETER.16"
hm-rpc.0 2017-09-02 21:28:23.646 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"INHIBIT":{"CONTROL":"NONE","DEFAULT":false,"FLAGS":1,"ID":"INHIBIT","MAX":t
hm-rpc.0 2017-09-02 21:28:23.646 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.SWITCH.16"
hm-rpc.0 2017-09-02 21:28:23.584 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,"OPERATION
hm-rpc.0 2017-09-02 21:28:23.582 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-ES-PMSw1-Pl.MAINTENANCE.16"
hm-rpc.0 2017-09-02 21:28:23.247 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"DIRECTION":{"DEFAULT":0,"FLAGS":3,"ID":"DIRECTION","MAX":3,"MIN":0,"OPERATI
hm-rpc.0 2017-09-02 21:28:23.246 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Bl1PBU-FM.BLIND.8"
hm-rpc.0 2017-09-02 21:28:23.188 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,"OPERATION
hm-rpc.0 2017-09-02 21:28:23.186 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HM-LC-Bl1PBU-FM.MAINTENANCE.8"

Exchecption bei Refresh der Geräte

2016-03-10 23:25:56.509 - error: uncaught exception: Cannot set property 'hm-rpc.0.BidCoS-RF.1.LEVEL' of null
2016-03-10 23:25:56.588 - error: TypeError: Cannot set property 'hm-rpc.0.BidCoS-RF.1.LEVEL' of null
at Socket. (/opt/iobroker/node_modules/iobroker.hm-rega/hm-rega.js:889:55)
at Socket.onack (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:305:9)
at Socket.onpacket (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:229:12)
at Manager. (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/node_modules/component-bind/index.js:21:15)
at Manager.Emitter.emit (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/node_modules/component-emitter/index.js:131:20)
at Manager.ondecoded (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/manager.js:333:8)
at Decoder. (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/node_modules/component-bind/index.js:21:15)
at Decoder.Emitter.emit (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/node_modules/socket.io-parser/node_modules/component-emitter/index.js:134:20)
at Decoder.add (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/node_modules/socket.io-parser/index.js:247:12)
at Manager.ondata (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/manager.js:323:16)
2016-03-10 23:25:57.019 - error: host.cubietruck instance system.adapter.hm-rega.0 terminated with code 6 (uncaught exception)

... an sich hab ich da nichts besonderes. In der CCU finde ich nichts mit einem LEVEL bei dem "Standarddatenpunkt" (ist ja die Zentrale selbst). Im parallel laufeden CCU.io wird als LEVEL der Wert "0" angezeigt

Include master area within adapter

Is there any reason why the master area datapoints of homematic components are not included within the adapter? - only value area....
It would be very useful to have read / write access to the master area of homematic adapters.
E.g. set switch time parameters or change valve parameters (valve offset, valve maximum position etc)

Add device icons for Homematic IP devices

Please add the icons for Homematic IP devices to avoid log warnings

  • HMIP-eTRV
  • HMIP-PSM
  • HMIP-BDT
  • HMIP-SMI
  • HMIP-WTH
  • HMIP-PSM
  • HMIP-WRC2
  • HMIP-SWDO
  • HMIP-SWSD
  • HMIP-ASIR
  • HMIP-SMO

EPAPER_TONE [object Object] _id is not defined

since last update I receive the following error messages if I want to change the value of the object "EPAPER_TONE" of the HM-Dis-EP-WM55

`

hm-rpc.0 2018-06-23 16:05:19.750 error at Decoder. (/opt/iobroker/node_modules/component-bind/index.js:21:15)
hm-rpc.0 2018-06-23 16:05:19.750 error at Manager.ondecoded (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/manager.js:345:8)
hm-rpc.0 2018-06-23 16:05:19.750 error at Manager.Emitter.emit (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/component-emitter/index.js:133:20)
hm-rpc.0 2018-06-23 16:05:19.750 error at Manager. (/opt/iobroker/node_modules/component-bind/index.js:21:15)
hm-rpc.0 2018-06-23 16:05:19.750 error at Socket.onpacket (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:236:12)
hm-rpc.0 2018-06-23 16:05:19.750 error at Socket.onevent (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:278:10)
hm-rpc.0 2018-06-23 16:05:19.750 error at Socket.Emitter.emit (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/component-emitter/index.js:133:20)
hm-rpc.0 2018-06-23 16:05:19.750 error at Socket. (/opt/iobroker/node_modules/iobroker.js-controller/lib/states/statesInMemClient.js:52:30)
hm-rpc.0 2018-06-23 16:05:19.750 error at Object.change (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:3425:37)
hm-rpc.0 2018-06-23 16:05:19.750 error at Object.stateChange (/opt/iobroker/node_modules/iobroker.hm-rpc/hm-rpc.js:404:30)
hm-rpc.0 2018-06-23 16:05:19.750 error ReferenceError: _id is not defined
hm-rpc.0 2018-06-23 16:05:19.750 error message hm-rpc.0.NEQ1463223.0.EPAPER_TONE [object Object] _id is not defined

`

You are sending too fast error with port 2001

Hi, for a while now I'm facing massive errors with my instance on port 2001. I got 2 other instances running without issues.
the flowing is basically my log the second I start the instance and it is just getting longer:
hm-rpc.0 2018-07-23 22:36:46.316 error Error: You are sending too fast
hm-rpc.0 2018-07-23 22:36:46.315 error binrpc -> setValue ["1","STATE",false] BOOL
hm-rpc.0 2018-07-23 22:36:46.311 error Error: You are sending too fast
hm-rpc.0 2018-07-23 22:36:46.311 error binrpc -> setValue ["1","STATE",false] BOOL
hm-rpc.0 2018-07-23 22:36:46.287 error Error: You are sending too fast
hm-rpc.0 2018-07-23 22:36:46.287 error binrpc -> setValue ["1","STATE",false] BOOL

Any thoughts on what is going wrong?

I have a ccu2 running with iobroker. Not sure what else I could provide.

Thanks

Zuordnung von gerät zu Rolle stimmt vereinzelt nicht

Hallo,
Das tab "Objekte" im iobroker admin für hm.rpc.0 irritiert mich sehr.
Für einige meiner Geräte (z.b optischer fensterkontakt) wird als Rolle "blind" auf dem device anstelle "sensor" angezeigt. Der Channel zeigt wiederum sensor. Analog gibt es auch "switch" auf dem device und "Sensor" auf dem Channel.

Ich habe auch wandthermostate die als Light.dimmer angezeigt werden.
Logs, Screenshots usw natürlich gerne. Ich habe recht viele Geräte und Typen angeschlossen, ggfls kommt da aufgrund der Menge oder des Typs durcheinander.

Grüße
Udo

PING verursacht CCU Error im Syslog

Hi, immer wenn der iobroker ein "ping "raussendet erscheint bei mr in der CCU2 mit aktueller Firmware ein Fehler (Typ Error):

Error: IseXmlRpc::GetObjectByHSSAddress: no exists device object with address= CENTRAL [../Platform/DOM/iseXmlRpc.cpp (2166)]

... mal ganz abgesehen davon das der Ping alle ca. 60 Sekunden (genauer: ca. die hälfte der eingestellten Check Communication" Zeit gesendet wird obwohl zwischenzeitlich Nachrichten reingekommen sind
Auszug Log kurz vor und mit so einem Ping:

2015-12-04 21:35:04.716 - debug: inMem message hm-rpc.0.* hm-rpc.0.KEQ0850562.1.TEMPERATURE val=19, ack=true, ts=1449261305, q=0, from=system.adapter.hm-rpc.0, lc=1449258911
2015-12-04 21:35:04.757 - debug: inMem message hm-rpc.0.* hm-rpc.0.KEQ0850562.1.HUMIDITY val=45, ack=true, ts=1449261305, q=0, from=system.adapter.hm-rpc.0, lc=1449253862
2015-12-04 21:35:12.453 - info: host.cubietruck object change system.adapter.hm-rpc.1
2015-12-04 21:35:12.563 - debug: inMem message .logging system.adapter.admin.0.logging val=true, ack=true, ts=1449261313, q=0, from=system.adapter.admin.0, lc=1449261122
2015-12-04 21:35:19.709 - debug: hm-rpc.0 Send PING...
2015-12-04 21:35:19.759 - debug: hm-rpc.0 no event recieved within keepalive-timeout, so PING sent
2015-12-04 21:35:19.812 - debug: hm-rpc.0 xml multicall : hm-rpc.0,CENTRAL,PONG,hm-rpc.0
2015-12-04 21:35:19.813 - debug: hm-rpc.0 xmlrpc <- event ["hm-rpc.0","CENTRAL","PONG","hm-rpc.0"]
2015-12-04 21:35:19.895 - debug: inMem message hm-rpc.0.
hm-rpc.0.CENTRAL.PONG val=hm-rpc.0, ack=true, ts=1449261320, q=0, from=system.adapter.hm-rpc.0, lc=1437391534

keine Warnung ""Send this info to the developer" im Log File

Hallo,

ich bastel gerade an den Homebrew Projekte rum und wollt mir auch eigene Devices mit Arduino erstellen.

Hier habe ich zu Testzwecken ein HBW-1W-T10 (https://github.com/jfische/HBW-1W-T10) erstellt, das in der CCU2 Zentrale auch angezeigt wird. Leider gibt es im IOBroker unter hm-rpc.0 keinen Eintrag zu dem Device. Die temperaturwerte sind in den Kanälen 1-10 hinterlegt.

Auch mein eigenes Device HBW-TER-MOD42 mit 4 binären Ausgängen und 2 binären Eingängen wird dort nicht angezeigt.

Leider bekomme ich auch keinen Eintrag im Log File "send this info to developer", so dass sich hier auch kein LOG posten könnte.

Kann mir jmd weiterhefen? Habe den neusten Adapter "HomeMatic RPC" mit Version 1.6.0 geladen.

Die Komponente HBW-1W-T10 ist ein etwa so wie die Komponente HB-UNI-Sen-TEMP-DS18B20. Leider konnte mir der Issue #63 nicht weiterhelfen.

objekte

hm-rpc im Docker-Container

Hallo,

wenn ich iobroker im Docker-Container laufen lasse, funktioniert der Callback der CCU nicht. Grund dafür ist, dass ich im Konfigurations-Dialog von hm-rpc lediglich die Netzwerk-Interfaces des Containers aufgelistet bekomme. Hierbei handelt es sich aber um ein Docker-internes Netzwerk, welches von aussen so nicht erreichbar ist.

Um den Container von aussen erreichbar zu machen, kann ich beim Start des Docker-Containers ein Port-Mapping (zum Bsp. für Port 2001) definieren. Der Dienst im Docker-Container ist dann über die IP des Docker-Hosts erreichbar. Ich müsste hier also in der Lage sein, die IP-Adresse für den HM-RPC-Callback frei setzen zu können. Dass allein reicht allerdings noch nicht, da die derzeitige Implementierung diese IP gleichtig verwendet, um den Socket entsprechend zu binden. Das geht natürlich nicht, da der Docker-Container mit der IP des Docker-Hosts nichts anfangen kann.

Es müsste also eigentlich 2 Eingabefelder für die IP geben:

  1. Die Bind-Adresse (Select; wäre im Docker-Szenario dann mit der IP des Containers - Bsp 172.17.0.1 vorbelegt)
  2. Die Callback-Adresse (Textfeld; vorbelegt mit der IP aus 1. - im Docker-Szenario wird diese dann manuell mit der IP des Docker-Hosts überschrieben)

Viele Grüße
Jan

listBidcosInterfaces Implementieren

Hallo,

ist es möglich die XMLRPC Methode "listBidcosInterfaces" einzubauen, dann könnte man daraus die DutyCycle-Werte auslesen und müsste keinen Code auf der CCU mehr ausführen. Oder gibt es schon eine Möglichkeit dies zu machen?

Vielen Dank und Gruß
AlGu

HMIP Send to to a developer (Wassersensor, Stromsteckdosen)

2018-07-20 23:08:22.898  - warn: hm-rpc.2 No image for "HmIP-SWD" found.
2018-07-20 23:08:23.032  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["0001D8A98EFD77:0","VALUES"]
2018-07-20 23:08:23.449  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PSM.MAINTENANCE.3"
2018-07-20 23:08:23.450  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"CONFIG_PENDING","TYPE":"BOOL","DEFAULT":false},"DUTY_CYCLE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"DUTY_CYCLE","TYPE":"BOOL","DEFAULT":false},"INSTALL_TEST":{"MIN":false,"OPERATIONS":3,"MAX":true,"FLAGS":2,"ID":"INSTALL_TEST","TYPE":"BOOL","DEFAULT":false},"ERROR_OVERHEAT":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"ERROR_OVERHEAT","TYPE":"BOOL","DEFAULT":false},"OPERATING_VOLTAGE_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"OVERFLOW","FLAGS":1,"ID":"OPERATING_VOLTAGE_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN","OVERFLOW"]},"ACTUAL_TEMPERATURE_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNDERFLOW","FLAGS":1,"ID":"ACTUAL_TEMPERATURE_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN","OVERFLOW","UNDERFLOW"]},"RSSI_PEER":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_PEER","TYPE":"INTEGER","DEFAULT":0},"ERROR_CODE":{"MIN":0,"OPERATIONS":5,"MAX":255,"FLAGS":9,"ID":"ERROR_CODE","TYPE":"INTEGER","DEFAULT":0},"UPDATE_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"UPDATE_PENDING","TYPE":"BOOL","DEFAULT":false},"UNREACH":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":25,"ID":"UNREACH","TYPE":"BOOL","DEFAULT":false},"RSSI_DEVICE":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_DEVICE","TYPE":"INTEGER","DEFAULT":0},"ACTUAL_TEMPERATURE":{"MIN":-3276.8,"OPERATIONS":5,"MAX":3276.7,"FLAGS":1,"ID":"ACTUAL_TEMPERATURE","TYPE":"FLOAT","DEFAULT":0},"OPERATING_VOLTAGE":{"MIN":0,"OPERATIONS":5,"MAX":25.2,"FLAGS":1,"ID":"OPERATING_VOLTAGE","TYPE":"FLOAT","DEFAULT":0}}}
2018-07-20 23:08:23.522  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["0001D8A98EFD77:1","VALUES"]
2018-07-20 23:08:23.605  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PSM.KEY_TRANSCEIVER.3"
2018-07-20 23:08:23.606  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"PRESS_SHORT":{"MIN":false,"OPERATIONS":4,"MAX":true,"FLAGS":1,"ID":"PRESS_SHORT","TYPE":"ACTION","DEFAULT":false,"CONTROL":"BUTTON_NO_FUNCTION.SHORT"},"PRESS_LONG":{"MIN":false,"OPERATIONS":4,"MAX":true,"FLAGS":1,"ID":"PRESS_LONG","TYPE":"ACTION","DEFAULT":false,"CONTROL":"BUTTON_NO_FUNCTION.LONG"}}}
2018-07-20 23:08:23.623  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["0001D8A98EFD77:2","VALUES"]
2018-07-20 23:08:23.915  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PSM.SWITCH_TRANSMITTER.3"
2018-07-20 23:08:23.916  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SECTION_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNKNOWN","FLAGS":1,"ID":"SECTION_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN"]},"PROCESS":{"MIN":"STABLE","OPERATIONS":5,"MAX":"NOT_STABLE","FLAGS":1,"ID":"PROCESS","TYPE":"ENUM","DEFAULT":"STABLE","VALUE_LIST":["STABLE","NOT_STABLE"]},"STATE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"STATE","TYPE":"BOOL","DEFAULT":false,"CONTROL":"SWITCH_TRANSMITTER.STATE"},"SECTION":{"MIN":0,"OPERATIONS":5,"MAX":15,"FLAGS":1,"ID":"SECTION","TYPE":"INTEGER","DEFAULT":0}}}
2018-07-20 23:08:23.946  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["0001D8A98EFD77:3","VALUES"]
2018-07-20 23:08:24.041  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PSM.SWITCH_VIRTUAL_RECEIVER.3"
2018-07-20 23:08:24.041  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SECTION_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNKNOWN","FLAGS":1,"ID":"SECTION_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN"]},"ON_TIME":{"MIN":0,"UNIT":"s","OPERATIONS":2,"MAX":8580000,"FLAGS":1,"ID":"ON_TIME","TYPE":"FLOAT","DEFAULT":0},"PROCESS":{"MIN":"STABLE","OPERATIONS":5,"MAX":"NOT_STABLE","FLAGS":1,"ID":"PROCESS","TYPE":"ENUM","DEFAULT":"STABLE","VALUE_LIST":["STABLE","NOT_STABLE"]},"STATE":{"MIN":false,"OPERATIONS":7,"MAX":true,"FLAGS":1,"ID":"STATE","TYPE":"BOOL","DEFAULT":false,"CONTROL":"SWITCH.STATE"},"SECTION":{"MIN":0,"OPERATIONS":5,"MAX":15,"FLAGS":1,"ID":"SECTION","TYPE":"INTEGER","DEFAULT":0}}}
2018-07-20 23:08:24.107  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["0001D8A98EFD77:6","VALUES"]
2018-07-20 23:08:24.490  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PSM.ENERGIE_METER_TRANSMITTER.3"
2018-07-20 23:08:24.491  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"VOLTAGE":{"MIN":0,"UNIT":"V","OPERATIONS":5,"MAX":409.5,"FLAGS":1,"ID":"VOLTAGE","TYPE":"FLOAT","DEFAULT":0,"CONTROL":"POWERMETER_PSM.VOLTAGE"},"POWER_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNDERFLOW","FLAGS":1,"ID":"POWER_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","OVERFLOW","UNDERFLOW"]},"ENERGY_COUNTER":{"MIN":0,"UNIT":"Wh","OPERATIONS":5,"MAX":838859.1,"FLAGS":1,"ID":"ENERGY_COUNTER","TYPE":"FLOAT","DEFAULT":0,"CONTROL":"POWERMETER_PSM.ENERGY_COUNTER"},"CURRENT_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNDERFLOW","FLAGS":1,"ID":"CURRENT_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","OVERFLOW","UNDERFLOW"]},"FREQUENCY":{"MIN":29.52,"UNIT":"Hz","OPERATIONS":5,"MAX":70.47,"FLAGS":1,"ID":"FREQUENCY","TYPE":"FLOAT","DEFAULT":50,"CONTROL":"POWERMETER_PSM.FREQUENCY"},"ENERGY_COUNTER_OVERFLOW":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"ENERGY_COUNTER_OVERFLOW","TYPE":"BOOL","DEFAULT":false,"CONTROL":"POWERMETER_PSM.ENERGY_COUNTER_OVERFLOW"},"POWER":{"MIN":0,"UNIT":"W","OPERATIONS":5,"MAX":163830,"FLAGS":1,"ID":"POWER","TYPE":"FLOAT","DEFAULT":0,"CONTROL":"POWERMETER_PSM.POWER"},"VOLTAGE_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNDERFLOW","FLAGS":1,"ID":"VOLTAGE_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","OVERFLOW","UNDERFLOW"]},"CURRENT":{"MIN":0,"UNIT":"mA","OPERATIONS":5,"MAX":65535,"FLAGS":1,"ID":"CURRENT","TYPE":"FLOAT","DEFAULT":0,"CONTROL":"POWERMETER_PSM.CURRENT"},"FREQUENCY_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"ERROR","FLAGS":1,"ID":"FREQUENCY_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN","OVERFLOW","UNDERFLOW","ERROR"]}}}
2018-07-20 23:08:24.539  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["0001D8A98EFD77:7","VALUES"]
2018-07-20 23:08:24.583  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["000218A98F0BE2:0","VALUES"]
2018-07-20 23:08:24.912  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PS.MAINTENANCE.4"
2018-07-20 23:08:24.913  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"CONFIG_PENDING","TYPE":"BOOL","DEFAULT":false},"DUTY_CYCLE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"DUTY_CYCLE","TYPE":"BOOL","DEFAULT":false},"INSTALL_TEST":{"MIN":false,"OPERATIONS":3,"MAX":true,"FLAGS":2,"ID":"INSTALL_TEST","TYPE":"BOOL","DEFAULT":false},"ERROR_OVERHEAT":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"ERROR_OVERHEAT","TYPE":"BOOL","DEFAULT":false},"OPERATING_VOLTAGE_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"OVERFLOW","FLAGS":1,"ID":"OPERATING_VOLTAGE_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN","OVERFLOW"]},"ACTUAL_TEMPERATURE_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNDERFLOW","FLAGS":1,"ID":"ACTUAL_TEMPERATURE_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN","OVERFLOW","UNDERFLOW"]},"RSSI_PEER":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_PEER","TYPE":"INTEGER","DEFAULT":0},"ERROR_CODE":{"MIN":0,"OPERATIONS":5,"MAX":255,"FLAGS":9,"ID":"ERROR_CODE","TYPE":"INTEGER","DEFAULT":0},"UPDATE_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"UPDATE_PENDING","TYPE":"BOOL","DEFAULT":false},"UNREACH":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":25,"ID":"UNREACH","TYPE":"BOOL","DEFAULT":false},"RSSI_DEVICE":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_DEVICE","TYPE":"INTEGER","DEFAULT":0},"ACTUAL_TEMPERATURE":{"MIN":-3276.8,"OPERATIONS":5,"MAX":3276.7,"FLAGS":1,"ID":"ACTUAL_TEMPERATURE","TYPE":"FLOAT","DEFAULT":0},"OPERATING_VOLTAGE":{"MIN":0,"OPERATIONS":5,"MAX":25.2,"FLAGS":1,"ID":"OPERATING_VOLTAGE","TYPE":"FLOAT","DEFAULT":0}}}
2018-07-20 23:08:24.965  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["000218A98F0BE2:1","VALUES"]
2018-07-20 23:08:25.153  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PS.KEY_TRANSCEIVER.4"
2018-07-20 23:08:25.154  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"PRESS_SHORT":{"MIN":false,"OPERATIONS":4,"MAX":true,"FLAGS":1,"ID":"PRESS_SHORT","TYPE":"ACTION","DEFAULT":false,"CONTROL":"BUTTON_NO_FUNCTION.SHORT"},"PRESS_LONG":{"MIN":false,"OPERATIONS":4,"MAX":true,"FLAGS":1,"ID":"PRESS_LONG","TYPE":"ACTION","DEFAULT":false,"CONTROL":"BUTTON_NO_FUNCTION.LONG"}}}
2018-07-20 23:08:25.175  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["000218A98F0BE2:2","VALUES"]
2018-07-20 23:08:25.535  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PS.SWITCH_TRANSMITTER.4"
2018-07-20 23:08:25.535  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SECTION_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNKNOWN","FLAGS":1,"ID":"SECTION_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN"]},"PROCESS":{"MIN":"STABLE","OPERATIONS":5,"MAX":"NOT_STABLE","FLAGS":1,"ID":"PROCESS","TYPE":"ENUM","DEFAULT":"STABLE","VALUE_LIST":["STABLE","NOT_STABLE"]},"STATE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"STATE","TYPE":"BOOL","DEFAULT":false,"CONTROL":"SWITCH_TRANSMITTER.STATE"},"SECTION":{"MIN":0,"OPERATIONS":5,"MAX":15,"FLAGS":1,"ID":"SECTION","TYPE":"INTEGER","DEFAULT":0}}}
2018-07-20 23:08:25.562  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["000218A98F0BE2:3","VALUES"]
2018-07-20 23:08:25.861  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PS.SWITCH_VIRTUAL_RECEIVER.4"
2018-07-20 23:08:25.861  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SECTION_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"UNKNOWN","FLAGS":1,"ID":"SECTION_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN"]},"ON_TIME":{"MIN":0,"UNIT":"s","OPERATIONS":2,"MAX":8580000,"FLAGS":1,"ID":"ON_TIME","TYPE":"FLOAT","DEFAULT":0},"PROCESS":{"MIN":"STABLE","OPERATIONS":5,"MAX":"NOT_STABLE","FLAGS":1,"ID":"PROCESS","TYPE":"ENUM","DEFAULT":"STABLE","VALUE_LIST":["STABLE","NOT_STABLE"]},"STATE":{"MIN":false,"OPERATIONS":7,"MAX":true,"FLAGS":1,"ID":"STATE","TYPE":"BOOL","DEFAULT":false,"CONTROL":"SWITCH.STATE"},"SECTION":{"MIN":0,"OPERATIONS":5,"MAX":15,"FLAGS":1,"ID":"SECTION","TYPE":"INTEGER","DEFAULT":0}}}
2018-07-20 23:08:25.928  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["000218A98F0BE2:6","VALUES"]
2018-07-20 23:08:26.031  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HMIP-PS.SWITCH_WEEK_PROFILE.4"
2018-07-20 23:08:26.031  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"WEEK_PROGRAM_TARGET_CHANNEL_LOCK":{"MIN":"MANU_MODE","OPERATIONS":2,"MAX":"AUTO_MODE_WITHOUT_RESET","FLAGS":1,"ID":"WEEK_PROGRAM_TARGET_CHANNEL_LOCK","TYPE":"ENUM","DEFAULT":"MANU_MODE","VALUE_LIST":["MANU_MODE","AUTO_MODE_WITH_RESET","AUTO_MODE_WITHOUT_RESET"],"CONTROL":"WEEK_PROFILE.TARGET_CHANNEL_LOCK"},"WEEK_PROGRAM_TARGET_CHANNEL_LOCKS":{"MIN":0,"OPERATIONS":2,"MAX":16777215,"FLAGS":1,"ID":"WEEK_PROGRAM_TARGET_CHANNEL_LOCKS","TYPE":"INTEGER","DEFAULT":0,"CONTROL":"WEEK_PROFILE.TARGET_CHANNEL_LOCKS"},"WEEK_PROGRAM_CHANNEL_LOCKS":{"MIN":0,"OPERATIONS":5,"MAX":16777215,"FLAGS":1,"ID":"WEEK_PROGRAM_CHANNEL_LOCKS","TYPE":"INTEGER","DEFAULT":0,"CONTROL":"WEEK_PROFILE.CHANNEL_LOCKS"}}}
2018-07-20 23:08:26.417  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["001898A992629D:0","VALUES"]
2018-07-20 23:08:26.729  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SWD.MAINTENANCE.1"
2018-07-20 23:08:26.729  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"CONFIG_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"CONFIG_PENDING","TYPE":"BOOL","DEFAULT":false},"DUTY_CYCLE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"DUTY_CYCLE","TYPE":"BOOL","DEFAULT":false},"LOW_BAT":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"LOW_BAT","TYPE":"BOOL","DEFAULT":false},"INSTALL_TEST":{"MIN":false,"OPERATIONS":3,"MAX":true,"FLAGS":2,"ID":"INSTALL_TEST","TYPE":"BOOL","DEFAULT":false},"UNREACH":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":25,"ID":"UNREACH","TYPE":"BOOL","DEFAULT":false},"OPERATING_VOLTAGE_STATUS":{"MIN":"NORMAL","OPERATIONS":5,"MAX":"OVERFLOW","FLAGS":1,"ID":"OPERATING_VOLTAGE_STATUS","TYPE":"ENUM","DEFAULT":"NORMAL","VALUE_LIST":["NORMAL","UNKNOWN","OVERFLOW"]},"RSSI_DEVICE":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_DEVICE","TYPE":"INTEGER","DEFAULT":0},"ERROR_NON_FLAT_POSITIONING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"ERROR_NON_FLAT_POSITIONING","TYPE":"BOOL","DEFAULT":false},"OPERATING_VOLTAGE":{"MIN":0,"OPERATIONS":5,"MAX":25.2,"FLAGS":1,"ID":"OPERATING_VOLTAGE","TYPE":"FLOAT","DEFAULT":0},"RSSI_PEER":{"MIN":-128,"OPERATIONS":5,"MAX":127,"FLAGS":1,"ID":"RSSI_PEER","TYPE":"INTEGER","DEFAULT":0},"ERROR_CODE":{"MIN":0,"OPERATIONS":5,"MAX":255,"FLAGS":9,"ID":"ERROR_CODE","TYPE":"INTEGER","DEFAULT":0},"UPDATE_PENDING":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"UPDATE_PENDING","TYPE":"BOOL","DEFAULT":false}}}
2018-07-20 23:08:26.783  - info: hm-rpc.2 xmlrpc -> getParamsetDescription ["001898A992629D:1","VALUES"]
2018-07-20 23:08:26.918  - warn: hm-rpc.2 Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SWD.WATER_DETECTION_TRANSMITTER.1"
2018-07-20 23:08:26.918  - warn: hm-rpc.2 Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"ALARMSTATE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"ALARMSTATE","TYPE":"BOOL","DEFAULT":false,"CONTROL":"WATER_DETECTION_TRANSMITTER.ALARMSTATE"},"MOISTURE_DETECTED":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"MOISTURE_DETECTED","TYPE":"BOOL","DEFAULT":false,"CONTROL":"WATER_DETECTION_TRANSMITTER.MOISTURE_DETECTED"},"WATERLEVEL_DETECTED":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":1,"ID":"WATERLEVEL_DETECTED","TYPE":"BOOL","DEFAULT":false,"CONTROL":"WATER_DETECTION_TRANSMITTER.WATERLEVEL_DETECTED"}}}

Issue hm-rega Restart automatically after sync objects"

`Hey,

Nach einem resync der Objekte haben die alle ihre Seriennummern als Name. r wenn man dann hm-rega einmalig neu startet bekommen SIe die "leserlichen" Namen. Wäre es da nicht sinnvoll nach einem neustart eines hm-rpc auch den hm-rega neu zu starten?
Man sollte zusätzlich schauen falls es mehrere hm-rpc gibt das die alle laufen ...

Absturz beim Schaltaktor mit Leistungsmessung

Beim Schaltaktor mit Leistungsmessung treten reguläre Abstürze auf, wenn man über das binäre RPC-Format angeschlossen wird. Dann wird der Adapter nicht mehr zugreifbar - siehe log. Man sieht auch die letzten Werte, die bei mir bei der kumulierten Leistungsaufnahme viele Nachkommastellen an Stelle einer bim XLM angezeigt hatten.

Immer wieder Disconnected

Immer wieder Disconnected zum CUxD Server.
CCU-Firmware: 2.29.23
CUxD Version: 1.11a

hm-rpc.1 | 2017-11-23 20:20:50.373 | info | Disconnected

Fehler in ccu log: XmlRpc transport error

Ich habe unter iobroker die Version 1.61 installiert. Fehler trat aber auch schon bei 1.60 auf.

Apr 1 08:22:25 homematic-ccu2 user.err rfd: XmlRpcClient error calling event({[methodName:"event",params:{"hm-rpc.0","LEQ1316331:2","BOOT",true}],[methodName:"event",params:{"hm-rpc.0","LEQ1316331:2","ENERGY_COUNTER",12102.100000}],[methodName:"event",params:{"hm-rpc.0","LE
Apr 1 08:22:25 homematic-ccu2 user.err rfd: XmlRpc transport error
Apr 1 08:22:25 homematic-ccu2 user.err rfd: XmlRpcClient error calling event({[methodName:"event",params:{"hm-rpc.0","LEQ1316331:2","VOLTAGE",237.100000}]}) on binary://192.168.178.43:2001/RPC2:
Apr 1 08:22:25 homematic-ccu2 user.err rfd: XmlRpc transport error
Apr 1 08:22:25 homematic-ccu2 user.err rfd: XmlRpcClient error calling event({[methodName:"event",params:{"hm-rpc.0","LEQ1316331:2","FREQUENCY",49.980000}]}) on binary://192.168.178.43:2001/RPC2:
Apr 1 08:22:25 homematic-ccu2 user.err rfd: XmlRpc transport error

Das Gerät ist ein Zwischenstecker mit Messfunktion HM-ES-PMSw1-PI

Die IP ist vom Raspi wo iobroker alleine drauf läuft.

Was soll mir der Fehler sagen? Ich habe noch min 6 weitere von den Zwischensteckern. Dort habe ich allerdings nichts im log.

IP-Geräte funktionieren nicht

RPC ist laut Anleitung eingerichtet, die Geräte werden auch unter "Objekte" angezeigt. Beí den normalen HM-Geräten passt alles, sprich Status (z. B. bei Tastern) wird sauber unter Objekte angezeigt.
IP-Geräte sind alle sichtbar, mit allen "Funktionen". Der Status wird allerdings nicht angezeigt...und über Scripte funktionieren die IP-Geräte auch nicht. Ich habe das gefunden, allerdings komme ich damit nicht weiter:


Configuration

native.adapterAddress has to be the ip under which the host that is running the adapter itself is reachable. This address is used by the CCU to connect to the adapter.

native.homematicAddress is the IP of the HomeMatic CCU respectively the Host that is running the BidCos-Service(s)


Kann mir jemand helfen?

ansicht_objekte
rega
rpc

Send this info to developer: _id: 'hm-rpc.meta.VALUES.HM-ES-TX-WM.POWERMETER_IGL

http://forum.iobroker.net/viewtopic.php?f=22&t=8394

Drücke Strg+A und danach Strg+C, um den Inhalt in die Zwischenablage zu kopieren. Klicke irgendwo, um das Fenster zu schliessen.
hm-rpc.1 2017-10-08 15:59:06.270 warn Send this info to developer: {'type':'meta','meta':{'adapter':'hm-rpc','type':'paramsetDescription'},'common':{},'native':{'ERROR_ALARM_TEST':{'CONTROL':'NONE','DEFAULT':0,'FLAGS':9,'ID':'ERROR_ALARM_TEST','MAX':1,'MIN':0,'OPERATIONS':5,'TAB_ORDER':0,'TYPE':'ENUM','UNIT':'','VALUE_LIST':['NO_ERROR','ALARM_TEST_FAILED']},'ERROR_SMOKE_CHAMBER':{'CONTROL':'NONE','DEFAULT':0,'FLAGS':9,'ID':'ERROR_SMOKE_CHAMBER','MAX':1,'MIN':0,'OPERATIONS':5,'TAB_ORDER':1,'TYPE':'ENUM','UNIT':'','VALUE_LIST':['NO_ERROR','DEGRADED_SMOKE_CHAMBER']},'INSTALL_TEST':{'DEFAULT':false,'FLAGS':3,'ID':'INSTALL_TEST','MAX':true,'MIN':false,'OPERATIONS':4,'TAB_ORDER':4,'TYPE':'ACTION','UNIT':''},'LOWBAT':{'CONTROL':'NONE','DEFAULT':false,'FLAGS':1,'ID':'LOWBAT','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':3,'TYPE':'BOOL','UNIT':''},'STATE':{'CONTROL':'DANGER.STATE','DEFAULT':false,'FLAGS':1,'ID':'STATE','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':2,'TYPE':'BOOL','UNIT':''}}}
hm-rpc.1 2017-10-08 15:59:06.269 warn Send this info to developer: _id: 'hm-rpc.meta.VALUES.HM-Sec-SD-2.SMOKE_DETECTOR.5'
hm-rpc.1 2017-10-08 15:59:06.147 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':false,'OPERATIONS':4,'TAB_ORDER':1,'TYPE':'ACTION','UNIT':''},'STATE':{'CONTROL':'DANGER.STATE','DEFAULT':false,'FLAGS':1,'ID':'STATE','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':0,'TYPE':'BOOL','UNIT':''}}}
hm-rpc.1 2017-10-08 15:59:06.146 warn Send this info to developer: _id: 'hm-rpc.meta.VALUES.HM-Sec-SD-2-Team.SMOKE_DETECTOR_TEAM_V2.3'
hm-rpc.1 2017-10-08 15:59:05.980 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':1,'TAB_ORDER':7,'TYPE':'INTEGER','UNIT':''},'CONFIG_PENDING':{'DEFAULT':false,'FLAGS':9,'ID':'CONFIG_PENDING','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':2,'TYPE':'BOOL','UNIT':''},'DUTYCYCLE':{'DEFAULT':false,'FLAGS':9,'ID':'DUTYCYCLE','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':4,'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':5,'TYPE':'INTEGER','UNIT':''},'RSSI_PEER':{'DEFAULT':0,'FLAGS':1,'ID':'RSSI_PEER','MAX':2147483647,'MIN':-2147483648,'OPERATIONS':5,'TAB_ORDER':6,'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':''}}}
hm-rpc.1 2017-10-08 15:59:05.979 warn Send this info to developer: _id: 'hm-rpc.meta.VALUES.HM-Sec-SD-2.MAINTENANCE.5'
hm-rpc.1 2017-10-08 15:56:15.303 warn Send this info to developer: {'type':'meta','meta':{'adapter':'hm-rpc','type':'paramsetDescription'},'common':{},'native':{'BOOT':{'CONTROL':'POWERMETER_IGL.BOOT','DEFAULT':false,'FLAGS':3,'ID':'BOOT','MAX':true,'MIN':false,'OPERATIONS':5,'TAB_ORDER':4,'TYPE':'BOOL','UNIT':''},'ENERGY_COUNTER':{'CONTROL':'POWERMETER_IGL.ENERGY_COUNTER','DEFAULT':0,'FLAGS':1,'ID':'ENERGY_COUNTER','MAX':838860.699219,'MIN':0,'OPERATIONS':5,'TAB_ORDER':2,'TYPE':'FLOAT','UNIT':'Wh'},'GAS_ENERGY_COUNTER':{'CONTROL':'POWERMETER_IGL.GAS_ENERGY_COUNTER','DEFAULT':0,'FLAGS':1,'ID':'GAS_ENERGY_COUNTER','MAX':2147483.644531,'MIN':0,'OPERATIONS':5,'TAB_ORDER':0,'TYPE':'FLOAT','UNIT':'m3'},'GAS_POWER':{'CONTROL':'POWERMETER_IGL.GAS_POWER','DEFAULT':0,'FLAGS':1,'ID':'GAS_POWER','MAX':16777.214996,'MIN':0,'OPERATIONS':5,'TAB_ORDER':1,'TYPE':'FLOAT','UNIT':'m3'},'POWER':{'CONTROL':'POWERMETER_IGL.POWER','DEFAULT':0,'FLAGS':1,'ID':'POWER','MAX':167772.149902,'MIN':0,'OPERATIONS':5,'TAB_ORDER':3,'TYPE':'FLOAT','UNIT':'W'}}}
hm-rpc.1 2017-10-08 15:56:15.300 warn Send this info to developer: _id: 'hm-rpc.meta.VALUES.HM-ES-TX-WM.POWERMETER_IGL.1'

HomeMatic IP type hm-rpc always deletes all devices upon startup

For some reasons I couldn't yet identify why a "HomeMatic IP" type hm-rpc always deletes all devices upon startup or reconnection, as can be seen here:

hm-rpc.2	2017-01-15 16:41:48.418	info	hm-rpc.2 Delete channel hm-rpc.2.XXXX.0
hm-rpc.2	2017-01-15 16:41:48.417	info	hm-rpc.2 Delete channel hm-rpc.2.XXXX.1
hm-rpc.2	2017-01-15 16:41:47.339	info	hm-rpc.2 xmlrpc <- newDevices 19
hm-rpc.2	2017-01-15 16:41:47.216	info	hm-rpc.2 device XXXX deleted
hm-rpc.2	2017-01-15 16:41:47.216	info	hm-rpc.2 Delete channel hm-rpc.2.XXXX.0
[...]
hm-rpc.2	2017-01-15 16:41:47.211	info	hm-rpc.2 xmlrpc <- deleteDevices 18
hm-rpc.2	2017-01-15 16:41:47.144	info	hm-rpc.2 xmlrpc -> 18 devices
hm-rpc.2	2017-01-15 16:41:47.119	info	hm-rpc.2 xmlrpc <- listDevices ["hm-rpc.2"]
hm-rpc.2	2017-01-15 16:41:47.081	info	hm-rpc.2 Connected
hm-rpc.2	2017-01-15 16:41:47.058	info	hm-rpc.2 xmlrpc client is trying to connect to ccupi.fritz.box:2010 with ["http://192.168.5.2:2012","hm-rpc.2"]
hm-rpc.2	2017-01-15 16:41:47.058	info	hm-rpc.2 xmlrpc server is trying to listen on 192.168.5.2:2012
hm-rpc.2	2017-01-15 16:41:46.777	info	hm-rpc.2 starting. Version 1.3.4 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v4.7.2

Therefore all devices are unfortunately cleared out and then afterwards regenerated which also deletes/removes all names hm-rega is placing/renaming.

Looking at what a normal BidCos-RF (rfd) hm-rpc instance does, it seems there are some differences in the way the rpc server receives changes from the connected CCU:

hm-rpc.0	2017-01-15 16:39:41.624	info	hm-rpc.0 Connected
hm-rpc.0	2017-01-15 16:39:41.463	info	hm-rpc.0 xmlrpc -> 658 devices
hm-rpc.0	2017-01-15 16:39:41.302	info	hm-rpc.0 xmlrpc <- listDevices ["hm-rpc.0"]
hm-rpc.0	2017-01-15 16:39:41.297	info	hm-rpc.0 xmlrpc <- system.listMethods ["hm-rpc.0"]
hm-rpc.0	2017-01-15 16:39:41.280	info	hm-rpc.0 xmlrpc client is trying to connect to ccupi.fritz.box:2001 with ["http://192.168.5.2:2001","hm-rpc.0"]
hm-rpc.0	2017-01-15 16:39:41.279	info	hm-rpc.0 xmlrpc server is trying to listen on 192.168.5.2:2001
hm-rpc.0	2017-01-15 16:39:41.051	info	hm-rpc.0 starting. Version 1.3.4 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v4.7.2

So the question is, what to do here and how to debug this situation any further so that we can change hm-rpc that it doesn't delete all HmIP-type device upon restart or reconnection of hm-rpc?!?

Is Homegear supported only in XML mode?

I installed a default install of ioBroker and homegear on a fresh Ubuntu 16.04 install.
XML mode works, but switching to BIN-RPC causes the following:


2018-02-03 23:45:20.068 - info: host.ip-172-31-3-34 instance system.adapter.hm-rpc.0 started with pid 24397
--
2018-02-03 23:45:20.396 - info: hm-rpc.0 starting. Version 1.5.1 in /opt/iobroker/node_modules/iobroker.hm-rpc, node: v8.9.4
2018-02-03 23:45:20.736 - info: hm-rpc.0 binrpc server is trying to listen on 127.0.0.1:2004
2018-02-03 23:45:20.736 - info: hm-rpc.0 binrpc client is trying to connect to 127.0.0.1:2001 with ["xmlrpc_bin://127.0.0.1:2004","hm-rpc.0"]
2018-02-03 23:45:20.945 - info: hm-rpc.0 Connected
2018-02-03 23:45:21.444 - error: hm-rpc.0 uncaught exception: Cannot read property 'toString' of null
2018-02-03 23:45:21.445 - error: hm-rpc.0 TypeError: Cannot read property 'toString' of null
at Object.decodeData (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:371:82)
at rec (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:432:32)
at Object.decodeStrangeRequest (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:441:9)
at Object.decodeRequest (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:476:32)
at Socket. (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/server.js:50:38)
at emitOne (events.js:116:13)
at Socket.emit (events.js:211:7)
at addChunk (_stream_readable.js:263:12)
at readableAddChunk (_stream_readable.js:250:11)
at Socket.Readable.push (_stream_readable.js:208:10)
2018-02-03 23:45:21.445 - info: hm-rpc.0 binrpc -> 127.0.0.1:2001 init ["xmlrpc_bin://127.0.0.1:2004",""]
2018-02-03 23:45:22.446 - info: hm-rpc.0 binrpc -> 127.0.0.1:2001 init ["xmlrpc_bin://127.0.0.1:2004",""]
2018-02-03 23:45:22.450 - error: Caught by controller[0]: TypeError: Cannot read property 'toString' of null
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at Object.decodeData (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:371:82)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at rec (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:432:32)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at Object.decodeStrangeRequest (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:441:9)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at Object.decodeRequest (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/protocol.js:476:32)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at Socket. (/opt/iobroker/node_modules/iobroker.hm-rpc/node_modules/binrpc/lib/server.js:50:38)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at emitOne (events.js:116:13)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at Socket.emit (events.js:211:7)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at addChunk (_stream_readable.js:263:12)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at readableAddChunk (_stream_readable.js:250:11)
2018-02-03 23:45:22.451 - error: Caught by controller[0]: at Socket.Readable.push (_stream_readable.js:208:10)
2018-02-03 23:45:22.451 - error: host.ip-172-31-3-34 instance system.adapter.hm-rpc.0 terminated with code 6 (uncaught exception)
2018-02-03 23:45:22.451 - info: host.ip-172-31-3-34 Restart adapter system.adapter.hm-rpc.0 because enabled

Send this info to developer : hm-rpc.meta.VALUES.HmIP-SWDO-I.SHUTTER_CONTACT

http://forum.iobroker.net/viewtopic.php?t=8714

host.lemaker 2017-10-27 15:32:24.363 info object change system.adapter.hm-rpc.2
hm-rpc.2 2017-10-27 15:32:24.219 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"STATE":{"MIN":"CLOSED","UNIT":"""","OPERATIONS":5,"MAX":"OPEN","FLAGS":1,
hm-rpc.2 2017-10-27 15:32:24.215 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SWDO-I.SHUTTER_CONTACT.1"
hm-rpc.2 2017-10-27 15:32:24.126 info xmlrpc -> getParamsetDescription ["xxxxxxxxxxxxxxxxx:1","VALUES"]
hm-rpc.2 2017-10-27 15:32:23.470 warn Send this info to developer: {"type":"meta","meta":{"adapter":"hm-rpc","type":"paramsetDescription"},"common":{},"native":{"SABOTAGE":{"MIN":false,"OPERATIONS":5,"MAX":true,"FLAGS":9,"ID":"SABOTAGE",
hm-rpc.2 2017-10-27 15:32:23.468 warn Send this info to developer: _id: "hm-rpc.meta.VALUES.HmIP-SWDO-I.MAINTENANCE.1"
hm-rpc.2 2017-10-27 15:32:23.260 info xmlrpc -> getParamsetDescription ["00109709xxxxxx:0","VALUES"]
hm-rpc.2 2017-10-27 15:32:23.144 warn No image for "HmIP-SWDO-I" found.

Unterstützung von HM-Dis-EP-WM55

Das E-Paper Display von Homematic wird falsch dagestellt, sodass es i.v.m iobroker nicht zu verwenden ist. es wäre super wenn dieses mit eingebunden werden kann...

Adapter hm-rpc verliert Konfig bei Update

Nach jeden Update des Adapters hm-rpc verliert diese sene "Ziel-Konfig" (rfd oder cuxd).

Vor dem Update zeigt hm-rpc.0 auf rfd und hm-rpc.1 auf cuxd.
Nach dem Update zeigen beide Instanzen auf cuxd.

Der Adapter hm-rega hat dann natürlich auch Probleme und holt quasi nichts mehr ab.

On CCU Reboot the hm-rpc no longer gets CUxD Events

On CCU Reboot the hm-rpc no longer gets CUxD Events. Need hm-rpc restart after CCU reboot to get events (e.g. value changes) again.

I have not encountered problems with HM-RF, HM Wired or HMIP. Only CUxD.

Version 1.6.2, but Problem also exists with 1.6.1. (Maybe the problem occurs with disabeling the ping for CUxD in 1.6.1?).

hm-rpc kommt nach Ausfall des Netzwerkes nicht mehr hoch

Folgende Netzwerk Konstellation:
Homematic ist direkt am Internetrouter angeschlossen, IObroker hängt an einem separaten Switch im Keller.
Fällt nun die Netzwerk Verbindung zur HM aus z.B. durch einen Neustart des Internet Gateways verbleibt hm-rpc im Status: Verbunden mit hm-rpc: falsch, Die restlichen Stadien sind OK (alive = OK, connected = OK

Wenn nun die Verbindung wieder steht macht hm-rpc keinen Connect mehr, siehe Logfile.
Ich habe die V1.6.0, 1.6.1 und jetzt aktuell die V1.6.2 direkt von GitHub getestet, mit allen Versionen das gleiches Ergebnis.

grafik

grafik

siehe auch: Forum

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.