Bticino N4640B (IR sensor). Integration in openhab

Hi, I’m trying to integrate the IR sensor N4640B on openhab. The goal is to turn on a light when the sensor detects someone’s presence.
I have configured the binding with the BUS of the automation system (OpenWebNet Binding (beta9-1)).
Below is the default.items file

Switch 		Luce_Soggiorno_colonna 		"Luce led colonna" 		 <lightbulb> 		{channel="openwebnet:bus_on_off_switch:89f9d7f7:47:switch"}
Rollershutter	Tapparella_Soggiorno		"Tapparella soggiorno"		 <rollershutter>	{channel="openwebnet:bus_automation:89f9d7f7:22:shutter"}
Switch          sensore_IR_INGRESSO     	"Living Room IR sensor"  	 <motion>               {channel="openwebnet:bus_dry_contact_ir:7f095c6d:sensor" }

Below is the default.rules file:

rule "accendi_luce_colonna_se_presente"
when
 Item sensore_IR_INGRESSO changed from OFF to ON
then
Luce_Soggiorno_colonna.sendCommand(ON)
end

But the light can not be accessed even if you step in front of the sensor. Can someone help me? Thank you

What do you see in the logs?

In console:

18:12:14.391 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:48
18:12:14.394 [INFO ] [smarthome.event.ItemStateChangedEvent] - openwebnet_bus_on_off_switch_89f9d7f7_48_switch changed from OFF to ON
18:12:15.284 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 11*#6##
18:12:15.291 [DEBUG] [ebnet.handler.OpenWebNetBridgeHandler] - ==OWN== ownId=6 has NO THING associated, ignoring it
18:12:15.475 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 1047##
18:12:15.478 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:47
18:12:15.479 [INFO ] [smarthome.event.ItemStateChangedEvent] - openwebnet_bus_on_off_switch_89f9d7f7_47_switch changed from ON to OFF
18:12:15.481 [INFO ] [smarthome.event.ItemStateChangedEvent] - Luce_Soggiorno_colonna changed from ON to OFF
18:12:15.528 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 10
48##
18:12:15.530 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:48
18:12:15.532 [INFO ] [smarthome.event.ItemStateChangedEvent] - openwebnet_bus_on_off_switch_89f9d7f7_48_switch changed from ON to OFF
18:12:15.915 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 11*#5##
18:12:15.920 [DEBUG] [ebnet.handler.OpenWebNetBridgeHandler] - ==OWN== ownId=5 has NO THING associated, ignoring it
18:12:15.964 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 1145##
18:12:15.965 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 11
46##
18:12:15.967 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:45
18:12:15.967 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:46
18:12:15.969 [INFO ] [smarthome.event.ItemStateChangedEvent] - openwebnet_bus_on_off_switch_89f9d7f7_45_switch changed from OFF to ON
18:12:15.971 [INFO ] [smarthome.event.ItemStateChangedEvent] - openwebnet_bus_on_off_switch_89f9d7f7_46_switch changed from OFF to ON
18:12:16.203 [INFO ] [smarthome.event.ItemStateChangedEvent] - network_pingdevice_ea7e90a8_latency changed from 228.0 to 531.0
18:12:16.207 [INFO ] [smarthome.event.ItemStateChangedEvent] - network_pingdevice_ea7e90a8_lastseen changed from 2019-01-17T18:12:13.433+0100 to 2019-01-17T18:12:16.200+0100
18:12:16.421 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 10*#6##
18:12:16.424 [DEBUG] [ebnet.handler.OpenWebNetBridgeHandler] - ==OWN== ownId=6 has NO THING associated, ignoring it
18:12:16.606 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 11000#039##
18:12:16.606 [DEBUG] [openwebnet.message.OpenMessageFactory] - #openwebnet## COMMAND TRANSLATION, WHAT=OFF
18:12:16.609 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:39
18:12:16.610 [INFO ] [smarthome.event.ItemStateChangedEvent] - openwebnet_bus_on_off_switch_89f9d7f7_39_switch changed from ON to OFF
18:12:16.657 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 10
39##
18:12:16.658 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:39

Do you have a things file for the items?

Also try changing the sensor from a Switch item to a Contact item. Note your rule will need to be modified to work with Closed/Open.

Item

Contact          sensore_IR_INGRESSO     	"Living Room IR sensor"  	 <motion>               {channel="openwebnet:bus_dry_contact_ir:7f095c6d:sensor" }

Rule

rule "accendi_luce_colonna_se_presente"
when
 Item sensore_IR_INGRESSO changed from OPEN to CLOSED
then
Luce_Soggiorno_colonna.sendCommand(ON)
end


EDIT What little info I could find indicates that a Contact item is not supported. If I’m looking at the correct info.:roll_eyes: Could you post a link to the documentation used for your config.

I only have one configuration file for the items and a configuration file for the rules. How do I know ownId=6 which device it refers to?

Here my configuration. Thank you
CONFING

Good question.

Do you have a link to the documentation for this binding?

Here

https://drive.google.com/drive/folders/1X-fvDR1Ir2heIAkess6VKhQCz-Op6QoS

I loaded the configuration files in the folder

userdata/jsondb

Need anything else?

Try adding 312 to the item channel like below.

Switch          sensore_IR_INGRESSO     	"Living Room IR sensor"  	 <motion>               {channel="openwebnet:bus_dry_contact_ir:7f095c6d:312:sensor"}

The light does not light up. But there are errors in the log:

> 17:04:54.361 [WARN ] [t.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*27*10*10*100*001*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:27, ignoring it.
>     17:04:54.398 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*48##
>     17:04:54.401 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:48
>     17:04:54.470 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *2*0*27##
>     17:04:54.477 [DEBUG] [t.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 27 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
>     17:04:54.586 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *#2*28*10*10*100*001*0##
>     17:04:54.589 [WARN ] [t.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*28*10*10*100*001*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:28, ignoring it.
>     17:04:54.631 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*39##
>     17:04:54.632 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*49##
>     17:04:54.635 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:39
>     17:04:54.641 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:49
>     17:04:54.679 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *2*0*28##
>     17:04:54.685 [DEBUG] [t.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 28 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
>     17:04:54.743 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*0310##
>     17:04:54.751 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0310
>     17:04:54.791 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*0410##
>     17:04:54.794 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0410
>     17:04:54.839 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*0311##
>     17:04:54.840 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *1*0*0312##
>     17:04:54.843 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0311
>     17:04:54.848 [DEBUG] [net.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0312
>     17:04:56.286 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*1*##
>     17:04:56.287 [ERROR] [openwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*1*##
>     17:04:56.289 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*1*##
>     17:04:56.332 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*5*##
>     17:04:56.333 [ERROR] [openwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*5*##
>     17:04:56.336 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*5*##
>     17:04:56.342 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*7*##
>     17:04:56.345 [ERROR] [openwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*7*##
>     17:04:56.345 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*7*##
>     17:04:56.377 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*9*##
>     17:04:56.378 [ERROR] [openwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*9*##
>     17:04:56.381 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*9*##
>     17:04:56.383 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*11*#1##
>     17:04:56.390 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*11*#1##
>     17:04:56.397 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*11*#1##
>     17:04:56.401 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#2##
>     17:04:56.403 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#2##
>     17:04:56.404 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#2##
>     17:04:56.452 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#3##
>     17:04:56.453 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#3##
>     17:04:56.461 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#3##
>     17:04:56.498 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#4##
>     17:04:56.498 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#4##
>     17:04:56.501 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#4##
>     17:04:56.506 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#5##
>     17:04:56.508 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#5##
>     17:04:56.511 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#5##
>     17:04:56.544 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#6##
>     17:04:56.544 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#6##
>     17:04:56.553 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#6##
>     17:04:56.554 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#7##
>     17:04:56.555 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#7##
>     17:04:56.557 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#7##
>     17:04:56.558 [INFO ] [org.openwebnet.OpenGatewayBus$a      ] - MON RECEIVED  <<<<<<<<<<< *5*18*#8##
>     17:04:56.564 [DEBUG] [openwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#8##
>     17:04:56.568 [DEBUG] [org.openwebnet.OpenGatewayBus        ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#8##[quote="H102, post:8, topic:64572, full:true"]

Were you able to switch the light on via BasicUI or PaperUI before?

I haven’t found much info on the OpenWebNet binding so I’m not sure how to read the error’s. Have you attempted to use the Bticino binding?

Yes. From the BasicUI if I turn the IR sensor ON, the light turns on.

No. Can I use the two bindings (Bticino and OpenWebNet Binding (beta9-1)) together?

The light responds and works with OH, good.

Not sure, I was asking b/c there is file config examples in the doc’s for Bticino binding.

You will need to find the correct channel config for the motion sensor and I have found nothing so far that might help.:expressionless:

The only thing I can suggest is maybe try to change the Thing.json file but make sure you have a backup then stop OH service before making a change. If you make a change I would attempt to add the “Where” 312 number for the sensor to make it look similar to the Switch config. like below. I have no idea if this will work so be prepared to remove the changes made if the binding breaks.

"openwebnet:bus_dry_contact_ir:7f095c6d:312": {
    "class": "org.eclipse.smarthome.core.thing.internal.ThingImpl",
    "value": {
      "label": "Dry Contact/IR Sensor (WHERE\u003d312)",
      "bridgeUID": {
        "segments": [
          "openwebnet",
          "bus_gateway",
          "89f9d7f7"
        ]
      },
      "channels": [
        {
          "acceptedItemType": "Switch",
          "kind": "STATE",
          "uid": {
            "segments": [
              "openwebnet",
              "bus_dry_contact_ir",
              "7f095c6d",
              "312",
              "sensor"
            ]
          },
          "channelTypeUID": {
            "segments": [
              "openwebnet",
              "dryContactIR"
            ]
          },
          "label": "Sensor",
          "description": "Indicates if a Dry Contact interface is ON or a IR Sensor has detected movement",
          "configuration": {
            "properties": {}
          },
          "properties": {},
          "defaultTags": []
        }
      ],
      "configuration": {
        "properties": {
          "where": "312"
        }
      },
      "properties": {
        "vendor": "BTicino/Legrand",
        "model": "BTI-3477/F428/IR 4610-4611-4640 etc.",
        "ownDeviceType": "2510"
      },
      "uid": {
        "segments": [
          "openwebnet",
          "bus_dry_contact_ir",
          "7f095c6d",
          "312"
        ]
      },
      "thingTypeUID": {
        "segments": [
          "openwebnet",
          "bus_dry_contact_ir"
        ]
      }
    }
  },
  "openwebnet:bus_on_off_switch:89f9d7f7:49": {
    "class": "org.eclipse.smarthome.core.thing.internal.ThingImpl",
    "value": {
      "label": "Switch (WHERE\u003d49)",
      "bridgeUID": {
        "segments": [
          "openwebnet",
          "bus_gateway",
          "89f9d7f7"
        ]
      },
      "channels": [
        {
          "acceptedItemType": "Switch",
          "kind": "STATE",
          "uid": {
            "segments": [
              "openwebnet",
              "bus_on_off_switch",
              "89f9d7f7",
              "49",
              "switch"
            ]
          },
          "channelTypeUID": {
            "segments": [
              "openwebnet",
              "switch"
            ]
          },
          "label": "Switch",
          "description": "Switch the power ON and OFF",
          "configuration": {
            "properties": {}
          },
          "properties": {},
          "defaultTags": [
            "Lighting"
          ]
        }
      ],
      "configuration": {
        "properties": {
          "where": "49"
        }
      },
      "properties": {
        "vendor": "BTicino/Legrand",
        "model": "BTI-xxxx/yyyy/etc.",
        "ownDeviceType": "261"
      },
      "uid": {
        "segments": [
          "openwebnet",
          "bus_on_off_switch",
          "89f9d7f7",
          "49"
        ]
      },
      "thingTypeUID": {
        "segments": [
          "openwebnet",
          "bus_on_off_switch"
        ]
      }
    }
  },

If changing the file is something your not comfortable with then I would file an issue on github.

@zar1978 You might also want to try a different binding version.

Here’s a 2.3.0 snapshot if your interested.
https://openhab.jfrog.io/openhab/libs-pullrequest-local/org/openhab/binding/org.openhab.binding.openwebnet/

Hallo,
info on the OpenWebNet binding are here:
README.
You said you have used an .items file but Things were added using PaperUI (not using a .things file).
Then can you post here an image of your bus_dry_contact_ir Thing ? you should find it under: PaperUI > Configuration > Things then click on the IR thing, then click Edit (pencil).
bye
M

I have made the changes you suggested to me. Unfortunately it does not work. The switch on PaperUI does not work either.

I add that if I send the following command (
Virtual ON / IR Detection) via OpenWebNet client:

*25*31*312#1##

The light turns on.

Also in the LOG file I found this

2019-01-19 02:01:33.542 [INFO ] [org.openwebnet.OpenGatewayBus$a ] - MON RECEIVED <<<<<<<<<<< 2531#1312##
2019-01-19 02:01:33.543 [DEBUG] [et.handler.OpenWebNetScenarioHandler] - ==OWN:ScenarioHandler== handleMessage() for thing: openwebnet:bus_dry_contact_ir:7f095c6d
2019-01-19 02:01:33.543 [DEBUG] [et.handler.OpenWebNetScenarioHandler] - ==OWN:ScenarioHandler== updateDryContactIRState() for thing: openwebnet:bus_dry_contact_ir:7f095c6d
2019-01-19 02:01:33.549 [DEBUG] [ebnet.handler.OpenWebNetThingHandler] - ==OWN:ThingHandler== handleCommand() (command=ON - channel=openwebnet:bus_on_off_switch:89f9d7f7:47:switch)
2019-01-19 02:01:33.550 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== handleSwitchCommand() (command=ON - channel=openwebnet:bus_on_off_switch:89f9d7f7:47:switch)
2019-01-19 02:01:33.550 [INFO ] [g.openwebnet.bus.MyHomeJavaConnector] - COM SENDING ============>>>>>>>>>>>> 11
47##
2019-01-19 02:01:33.551 [DEBUG] [g.openwebnet.bus.MyHomeSocketFactory] - ##gw-openwebnet-socket## CANNOT read from socket: read returned -1
2019-01-19 02:01:33.552 [DEBUG] [g.openwebnet.bus.MyHomeJavaConnector] - ##gw-openwebnet-connector## read returned -1
2019-01-19 02:01:33.553 [DEBUG] [g.openwebnet.bus.MyHomeJavaConnector] - ##gw-openwebnet-connector## let’s try with a NEW SESSION…
2019-01-19 02:01:33.553 [INFO ] [g.openwebnet.bus.MyHomeSocketFactory] - ##gw-openwebnet-socket## Trying openCommandSession() socket… (192.168.1.35:20000)
2019-01-19 02:01:33.561 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - ##gw-openwebnet-conn## … starting HANDSHAKE …

Thanks

What is in you BTcino plant the WHERE address of your N4640B device? (You should know it from MyHome Virtual configurator).

You should re-post some log like the one before but using code-fences otherwise is difficult to read OWN messages.

Finally I do not suggest you to change json files because they are not supposed to be changed by hands, so your setting can now be damaged.

I suggest you delete and discover again your IR device Thing from Inbox.

Massi

WHERE address is 312

I deleted the item. I tried to add it with the automatic search function but without success. I added it with the ADD MANUALLY function. But it did not help the sensor continues not to turn on the light when we step in front of it

Can you post again the log correctly formatted ?

I tried to restart openhab. After the restart, the ITEM connected to the sensor is offline:


I try to launch this command:

The item returns ONLINE

2019-01-20 15:47:28.442 [DEBUG] [g.openwebnet.bus.MyHomeJavaConnector] - ##gw-openwebnet-connector## readMonitoring() SocketTimeoutException: Read timed out
2019-01-20 15:47:28.442 [DEBUG] [org.openwebnet.OpenGatewayBus$a     ] - ##gw-openwebnet-BusReceiveThread## SocketTimeoutException on readMonitoring: Read timed out
2019-01-20 15:47:28.443 [DEBUG] [org.openwebnet.OpenGatewayBus$a     ] - ##gw-openwebnet-BusReceiveThread## ^^^ sending CMD message to see if gw is still reachable...
2019-01-20 15:47:28.443 [INFO ] [g.openwebnet.bus.MyHomeJavaConnector] - COM SENDING   ============>>>>>>>>>>>> *#13**15##
2019-01-20 15:47:28.445 [DEBUG] [g.openwebnet.bus.MyHomeSocketFactory] - ##gw-openwebnet-socket## CANNOT read from socket: read returned -1
2019-01-20 15:47:28.445 [DEBUG] [g.openwebnet.bus.MyHomeJavaConnector] - ##gw-openwebnet-connector## read returned -1
2019-01-20 15:47:28.446 [DEBUG] [g.openwebnet.bus.MyHomeJavaConnector] - ##gw-openwebnet-connector## let's try with a NEW SESSION...
2019-01-20 15:47:28.446 [INFO ] [g.openwebnet.bus.MyHomeSocketFactory] - ##gw-openwebnet-socket## Trying openCommandSession() socket....  (192.168.1.35:20000)
2019-01-20 15:47:28.458 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - ##gw-openwebnet-conn## ... starting HANDSHAKE ... 
2019-01-20 15:47:28.467 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - COM RECEIVED   <<<<<<====== *#*1##
2019-01-20 15:47:28.467 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - COM SENDING    ======>>>>>> *99*0##
2019-01-20 15:47:28.474 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - COM RECEIVED   <<<<<<====== *#435290751##
2019-01-20 15:47:28.474 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - COM SENDING    ======>>>>>> *#3611292799##
2019-01-20 15:47:28.479 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - COM RECEIVED   <<<<<<====== *#*1##
2019-01-20 15:47:28.480 [INFO ] [g.openwebnet.bus.MyHomeSocketFactory] - ##gw-openwebnet-socket## ... CONNECTED command session 192.168.1.35:20000
2019-01-20 15:47:28.480 [INFO ] [g.openwebnet.bus.MyHomeJavaConnector] - COM SENDING   ============>>>>>>>>>>>> *#13**15##
2019-01-20 15:47:28.584 [INFO ] [g.openwebnet.bus.MyHomeSocketFactory] - COM RECEIVED  <<<<<<<<<<<<============ *#13**15*200##
2019-01-20 15:47:28.629 [INFO ] [g.openwebnet.bus.MyHomeSocketFactory] - COM RECEIVED  <<<<<<<<<<<<============ *#*1##
2019-01-20 15:47:28.929 [DEBUG] [org.openwebnet.OpenGatewayBus$a     ] - ##gw-openwebnet-BUSReceiveThread## ^^^ ... CMD was answered, gw is still reachable!
2019-01-20 15:47:28.929 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#13**15*200##
2019-01-20 15:47:28.929 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## server MODEL=MyHOMEServer1 / MH202 / F455
2019-01-20 15:47:28.930 [DEBUG] [bnet.handler.OpenWebNetBridgeHandler] - ==OWN==  GatewayManagement WHAT = null
2019-01-20 15:47:30.810 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - ##gw-openwebnet-conn## sending MON keepalive ACK
2019-01-20 15:47:30.810 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - MON SENDING    ======>>>>>> *#*1##
2019-01-20 15:47:31.105 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:47:32.920 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*21*10*10*100*000*0##
2019-01-20 15:47:32.925 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*21*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:21, ignoring it.
2019-01-20 15:47:32.984 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*31##
2019-01-20 15:47:32.985 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:31
2019-01-20 15:47:33.038 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*21##
2019-01-20 15:47:33.039 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 21 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:33.087 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*32##
2019-01-20 15:47:33.088 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*41##
2019-01-20 15:47:33.088 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:32
2019-01-20 15:47:33.088 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:41
2019-01-20 15:47:33.157 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*33##
2019-01-20 15:47:33.158 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:33
2019-01-20 15:47:33.204 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*1*42##
2019-01-20 15:47:33.205 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:42
2019-01-20 15:47:33.332 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*34##
2019-01-20 15:47:33.333 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*45##
2019-01-20 15:47:33.334 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*51##
2019-01-20 15:47:33.334 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:34
2019-01-20 15:47:33.334 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:45
2019-01-20 15:47:33.335 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:51
2019-01-20 15:47:33.474 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*1*44##
2019-01-20 15:47:33.475 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*22*10*10*100*001*0##
2019-01-20 15:47:33.475 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*52##
2019-01-20 15:47:33.475 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:44
2019-01-20 15:47:33.475 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*22##
2019-01-20 15:47:33.475 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*22*10*10*100*001*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:22, ignoring it.
2019-01-20 15:47:33.475 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:52
2019-01-20 15:47:33.476 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 22 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:33.618 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*23*10*10*100*000*0##
2019-01-20 15:47:33.618 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*23##
2019-01-20 15:47:33.618 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*24*10*10*80*000*0##
2019-01-20 15:47:33.618 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*24##
2019-01-20 15:47:33.618 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*23*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:23, ignoring it.
2019-01-20 15:47:33.619 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 23 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:33.619 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*24*10*10*80*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:24, ignoring it.
2019-01-20 15:47:33.619 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 24 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:33.744 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*25*10*10*100*000*0##
2019-01-20 15:47:33.744 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*35##
2019-01-20 15:47:33.745 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*25*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:25, ignoring it.
2019-01-20 15:47:33.745 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:35
2019-01-20 15:47:33.795 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*45##
2019-01-20 15:47:33.795 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:45
2019-01-20 15:47:33.940 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*25##
2019-01-20 15:47:33.940 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*35##
2019-01-20 15:47:33.940 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*36##
2019-01-20 15:47:33.941 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*46##
2019-01-20 15:47:33.941 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 25 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:33.941 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:35
2019-01-20 15:47:33.941 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:36
2019-01-20 15:47:33.941 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:46
2019-01-20 15:47:34.075 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*37##
2019-01-20 15:47:34.075 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*38##
2019-01-20 15:47:34.076 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*26*10*10*100*000*0##
2019-01-20 15:47:34.076 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:37
2019-01-20 15:47:34.076 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:38
2019-01-20 15:47:34.076 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*26*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:26, ignoring it.
2019-01-20 15:47:34.126 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*26##
2019-01-20 15:47:34.126 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 26 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:34.252 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*27*10*10*100*001*0##
2019-01-20 15:47:34.252 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*27##
2019-01-20 15:47:34.253 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*27*10*10*100*001*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:27, ignoring it.
2019-01-20 15:47:34.253 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 27 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:34.361 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*28*10*10*100*000*0##
2019-01-20 15:47:34.361 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*47##
2019-01-20 15:47:34.362 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*28*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:28, ignoring it.
2019-01-20 15:47:34.362 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:47
2019-01-20 15:47:34.411 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*28##
2019-01-20 15:47:34.411 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*48##
2019-01-20 15:47:34.411 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 28 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:34.411 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:48
2019-01-20 15:47:34.457 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*39##
2019-01-20 15:47:34.458 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:39
2019-01-20 15:47:34.504 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*1*49##
2019-01-20 15:47:34.505 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:49
2019-01-20 15:47:34.553 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0310##
2019-01-20 15:47:34.554 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0310
2019-01-20 15:47:34.597 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0410##
2019-01-20 15:47:34.598 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0311##
2019-01-20 15:47:34.598 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0410
2019-01-20 15:47:34.599 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0311
2019-01-20 15:47:34.645 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0312##
2019-01-20 15:47:34.645 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0312
2019-01-20 15:47:36.114 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*21*10*10*100*000*0##
2019-01-20 15:47:36.115 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*21*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:21, ignoring it.
2019-01-20 15:47:36.160 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*31##
2019-01-20 15:47:36.161 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:31
2019-01-20 15:47:36.235 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*21##
2019-01-20 15:47:36.236 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 21 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:36.281 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*32##
2019-01-20 15:47:36.281 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*41##
2019-01-20 15:47:36.281 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:32
2019-01-20 15:47:36.282 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:41
2019-01-20 15:47:36.344 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*33##
2019-01-20 15:47:36.344 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:33
2019-01-20 15:47:36.391 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*1*42##
2019-01-20 15:47:36.392 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:42
2019-01-20 15:47:36.438 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*34##
2019-01-20 15:47:36.439 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:34
2019-01-20 15:47:36.486 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*45##
2019-01-20 15:47:36.487 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:45
2019-01-20 15:47:36.544 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*51##
2019-01-20 15:47:36.544 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*1*44##
2019-01-20 15:47:36.545 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:51
2019-01-20 15:47:36.545 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:44
2019-01-20 15:47:36.690 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*52##
2019-01-20 15:47:36.690 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:52
2019-01-20 15:47:36.812 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*22*10*10*100*001*0##
2019-01-20 15:47:36.813 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*22##
2019-01-20 15:47:36.814 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*23*10*10*100*000*0##
2019-01-20 15:47:36.814 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*22*10*10*100*001*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:22, ignoring it.
2019-01-20 15:47:36.814 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 22 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:36.815 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*23*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:23, ignoring it.
2019-01-20 15:47:36.858 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*23##
2019-01-20 15:47:36.858 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*24*10*10*80*000*0##
2019-01-20 15:47:36.859 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*24##
2019-01-20 15:47:36.859 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 23 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:36.859 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*24*10*10*80*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:24, ignoring it.
2019-01-20 15:47:36.859 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 24 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:37.139 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*25*10*10*100*000*0##
2019-01-20 15:47:37.140 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*25*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:25, ignoring it.
2019-01-20 15:47:37.451 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*35##
2019-01-20 15:47:37.452 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*45##
2019-01-20 15:47:37.453 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*25##
2019-01-20 15:47:37.453 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:35
2019-01-20 15:47:37.454 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*36##
2019-01-20 15:47:37.454 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:45
2019-01-20 15:47:37.455 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*46##
2019-01-20 15:47:37.456 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*37##
2019-01-20 15:47:37.455 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 25 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:37.457 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*38##
2019-01-20 15:47:37.456 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:36
2019-01-20 15:47:37.458 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:46
2019-01-20 15:47:37.467 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:37
2019-01-20 15:47:37.467 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:38
2019-01-20 15:47:37.496 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*26*10*10*100*000*0##
2019-01-20 15:47:37.497 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*26##
2019-01-20 15:47:37.497 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*27*10*10*100*001*0##
2019-01-20 15:47:37.497 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*26*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:26, ignoring it.
2019-01-20 15:47:37.497 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*27##
2019-01-20 15:47:37.497 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 26 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:37.498 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*47##
2019-01-20 15:47:37.498 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*27*10*10*100*001*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:27, ignoring it.
2019-01-20 15:47:37.498 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*27##
2019-01-20 15:47:37.498 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 27 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:37.498 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*48##
2019-01-20 15:47:37.498 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:47
2019-01-20 15:47:37.498 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 27 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:37.498 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:48
2019-01-20 15:47:37.617 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *#2*28*10*10*100*000*0##
2019-01-20 15:47:37.619 [WARN ] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== updateAutomationState() FRAME <*#2*28*10*10*100*000*0##> NOT SUPPORTED for thing openwebnet:bus_automation:89f9d7f7:28, ignoring it.
2019-01-20 15:47:38.713 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *2*0*28##
2019-01-20 15:47:38.713 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*39##
2019-01-20 15:47:38.713 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*1*49##
2019-01-20 15:47:38.713 [DEBUG] [.handler.OpenWebNetAutomationHandler] - ==OWN:AutomationHandler== # 28 # [[[ internalState=0 positionEst=-1 - calibrating=-1 shutterRun=-1 ]]]
2019-01-20 15:47:38.714 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:39
2019-01-20 15:47:38.714 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:49
2019-01-20 15:47:39.002 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0310##
2019-01-20 15:47:39.002 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0410##
2019-01-20 15:47:39.003 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0311##
2019-01-20 15:47:39.002 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0310
2019-01-20 15:47:39.003 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *1*0*0312##
2019-01-20 15:47:39.003 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0410
2019-01-20 15:47:39.003 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0311
2019-01-20 15:47:39.003 [DEBUG] [et.handler.OpenWebNetLightingHandler] - ==OWN:LightingHandler== updateLightState() for thing: openwebnet:bus_on_off_switch:89f9d7f7:0312
2019-01-20 15:47:40.194 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*1*##
2019-01-20 15:47:40.194 [ERROR] [penwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*1*##
2019-01-20 15:47:40.195 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*1*##
2019-01-20 15:47:40.242 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*5*##
2019-01-20 15:47:40.243 [ERROR] [penwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*5*##
2019-01-20 15:47:40.243 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*5*##
2019-01-20 15:47:40.243 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*7*##
2019-01-20 15:47:40.243 [ERROR] [penwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*7*##
2019-01-20 15:47:40.243 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*7*##
2019-01-20 15:47:40.243 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*9*##
2019-01-20 15:47:40.243 [ERROR] [penwebnet.message.OpenMessageFactory] - ##openwebnet## INVALID FRAME: *5*9*##
2019-01-20 15:47:40.243 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*9*##
2019-01-20 15:47:40.390 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*11*#1##
2019-01-20 15:47:40.391 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*11*#1##
2019-01-20 15:47:40.391 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*11*#1##
2019-01-20 15:47:40.391 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#2##
2019-01-20 15:47:40.391 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#2##
2019-01-20 15:47:40.391 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#2##
2019-01-20 15:47:40.391 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#3##
2019-01-20 15:47:40.391 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#3##
2019-01-20 15:47:40.392 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#3##
2019-01-20 15:47:40.392 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#4##
2019-01-20 15:47:40.392 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#4##
2019-01-20 15:47:40.392 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#4##
2019-01-20 15:47:40.392 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#5##
2019-01-20 15:47:40.392 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#5##
2019-01-20 15:47:40.392 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#5##
2019-01-20 15:47:40.393 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#6##
2019-01-20 15:47:40.393 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#6##
2019-01-20 15:47:40.393 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#6##
2019-01-20 15:47:40.393 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#7##
2019-01-20 15:47:40.393 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#7##
2019-01-20 15:47:40.393 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#7##
2019-01-20 15:47:40.393 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *5*18*#8##
2019-01-20 15:47:40.393 [DEBUG] [penwebnet.message.OpenMessageFactory] - ##openwebnet## WHO=BURGLAR_ALARM NOT SUPPORTED, frame=*5*18*#8##
2019-01-20 15:47:40.393 [DEBUG] [org.openwebnet.OpenGatewayBus       ] - ##gw-openwebnet-BUS## Malformed/Unsupported OpenMessage: *5*18*#8##
2019-01-20 15:48:01.068 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:48:26.392 [WARN ] [sciani.connector.MyHomeJavaConnector] - Monitor connection problem. Attempting retry 1.
2019-01-20 15:48:32.123 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:49:00.811 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - ##gw-openwebnet-conn## sending MON keepalive ACK
2019-01-20 15:49:00.811 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - MON SENDING    ======>>>>>> *#*1##
2019-01-20 15:49:01.180 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:49:06.696 [INFO ] [org.openwebnet.OpenGatewayBus$a     ] - MON RECEIVED  <<<<<<<<<<< *25*31#1*312##
2019-01-20 15:49:06.702 [DEBUG] [et.handler.OpenWebNetScenarioHandler] - ==OWN:ScenarioHandler== handleMessage() for thing: openwebnet:bus_dry_contact_ir:f9279af5
2019-01-20 15:49:06.703 [DEBUG] [et.handler.OpenWebNetScenarioHandler] - ==OWN:ScenarioHandler== updateDryContactIRState() for thing: openwebnet:bus_dry_contact_ir:f9279af5
2019-01-20 15:49:31.279 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:49:52.707 [WARN ] [sciani.connector.MyHomeJavaConnector] - Monitor connection problem. Attempting retry 1.
2019-01-20 15:49:53.253 [INFO ] [overy.BusGatewayDiscoveryParticipant] - ================================================
2019-01-20 15:49:53.254 [INFO ] [overy.BusGatewayDiscoveryParticipant] - ==OWN:UPnP== DISCOVERED DEVICE: (RemoteDevice) Identity: (RemoteDeviceIdentity) UDN: uuid:pnp-webserver-2_0-00:03:50:9F:21:7C, Descriptor: http://192.168.1.35:49152/, Root: true
2019-01-20 15:49:53.254 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =FRIENDLY NAME: F454
2019-01-20 15:49:53.254 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =BASE URL     : null
2019-01-20 15:49:53.254 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =SERIAL #     : 00:03:50:9F:21:7C
2019-01-20 15:49:53.255 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =UPC          : null
2019-01-20 15:49:53.255 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =ID.DESC URL  : http://192.168.1.35:49152/
2019-01-20 15:49:53.255 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =ID.MAX AGE   : 500
2019-01-20 15:49:53.255 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =MANUFACTURER : BTicino S.p.A.
2019-01-20 15:49:53.256 [INFO ] [overy.BusGatewayDiscoveryParticipant] - =MODEL        : F454 | Web Server AV | 2.0
2019-01-20 15:50:01.061 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:50:30.811 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - ##gw-openwebnet-conn## sending MON keepalive ACK
2019-01-20 15:50:30.811 [DEBUG] [org.openwebnet.bus.MyHomeConnection ] - MON SENDING    ======>>>>>> *#*1##
2019-01-20 15:50:31.075 [WARN ] [.sony.internal.bravia.BraviaProtocol] - Unparsable channel response: 00000001.0000000
2019-01-20 15:50:38.737 [WARN ] [sciani.connector.MyHomeJavaConnector] - Monitor connection problem. Attempting retry 2.

No idea?