openhab / openhab1-addons

Add-ons for openHAB 1.x
Eclipse Public License 2.0
3.43k stars 1.7k forks source link

Zwave - unsupported command class MULTI_CMD #1417

Closed Thomas38 closed 9 years ago

Thomas38 commented 10 years ago

Hello,

from what I have read the command class MULTI_CMD was implemented a long time ago, right ? In this case I don't know what the problem is. The Item is defined as follows: Number Thermo "Thermostat [%.1f C]" { zwave="13:command=thermostat_setpoint, respond_to_basic=true" } I'm running a snapshow verison of OpenHAB 1.6.0-724.

Error message is: 11:31:15.580 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_CMD (0x8f) 11:31:15.588 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class MULTI_CMD (0x8f)

I can sent new setpoints to the Danfoss LC13, but updates sent from the device after wakeup leads to the message above.

Any ideas what is going wrong ?

Regards, Thomas

jspuij commented 10 years ago

Unfortunately MULTI_CMD is not supported right now, simply because we never came across a device that supported it to test.

Thomas38 commented 10 years ago

I'm confused now, because I run OpenHAB (same version and same HW) on another location which gets the MULTI_CMD command managed... The only issue is that the command CLIMATE_CONTROL_SCHEDULE is not understand (I don't need this information right now), all other ist fine: battery, clock and setpoint ! How could it be ?

jspuij commented 10 years ago

I'm pretty sure that it is not:

If you look at this file line 407:

https://github.com/openhab/openhab/blob/525d12cc93f4b484cdd61d762ea6398c7040b1ee/bundles/binding/org.openhab.binding.zwave/src/main/java/org/openhab/binding/zwave/internal/protocol/commandclass/ZWaveCommandClass.java#L407

There is a null at the end of the line, indicating that multi_CMD is not handled yet. So probably the other device is configured differently and does not group commands using multi_CMD.

Thomas38 commented 10 years ago

I will take a close look at the devices this night, maybe the firmware is different. I believe not. I remember that I have seen multi_cmd commands with ozwcp or another zwave configuration tool.

Thomas38 commented 10 years ago

You are right ! These two Danfoss LC13 were acting different. One sends multi cmd, the other not. After a while playing with ozwcp I found out that writing a parameter with this tool changes the behaviour of the Danfoss, and it stopps sending multi cmd. I Remember now that I changed the wake up time at one of these at the very beginning.

Unfortunately there is no detailed documentation available so it is unclear to me what else happens by writing a single parameter. Nevertheless, I'm happy for the moment that I can use these devices and I hope I can configure the next as well !

Thomas38 commented 10 years ago

Now I came across another problem: If I set the item to a new value, this value seems to be overwritten with the current value of the zwave device during the next wakeup. Then the new value is written to the zwave device, the item still keeps the old value just received before the new one is written. On the next wakeup the correct value is written to the item.

Therefore I need 2 wakeup cycles to get the actuel value. I'm doing something wrong ?

jspuij commented 10 years ago

This is probably because the device wakes up and immediately sends the current value of the thermostat. We process the incoming messages before we transmit the queued messages to the device. By the time the incoming messages are processed and the queue is emptied, the device goes back to sleep. Maybe the device can be configured to only send the wake-up call. It could also be that you've enabled polling on the device. This is a problem because the wake-up queue then always has one "poll" message in the queue. SET messages have priority over GET messages, so in theory it should first receive the set and then the get. Try disabling polling if you've enabled it and otherwise send a full log of the communication with the node.

Thomas38 commented 10 years ago

It's true, the device wakes up and sends the current value of the thermostat and it remains wake for a few seconds. It seems that the new value is set but not read again.

To get the correct value just after writing to the device I set up a refresh_interval (time is less than the device weak up). I expected that the refresh is queued for query after/during the next weak up. During the last tests it works as expected and I can get a more convenient view for the front end users.

cdjackson commented 10 years ago

Can you look at what is actually sent by looking in the log?

The device should stay awake for 2 seconds at least - unless the device decides to go to sleep itself, but the binding shouldn’t send it to sleep until all messages have been sent. A log would be very interesting.

Thomas38 commented 10 years ago

What log you are talking about ?

cdjackson commented 10 years ago

The zwave log file. If you don’t have it enabled, the wiki says how to enable it.=

Thomas38 commented 10 years ago

Here is the log, I removed the refresh_interval, the node in question is 13 and the wakeup cycle is 300 sec. After the first report of the device changed the setpoint from 19.0 to 21.0 (several updates at 2014-09-19 18:46:42.169). The third wakeup deliveres the value which was set during the second wakeup.

2014-09-19 18:44:21.028 DEBUG o.o.b.z.i.ZWaveActivator[:36]- Z-Wave binding has been started. 2014-09-19 18:45:01.403 INFO o.o.b.z.i.ZWaveActiveBinding[:301]- Update config, port = /dev/ttyAMA0 2014-09-19 18:45:01.451 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 18:45:02.407 INFO o.o.b.z.i.p.ZWaveController[:136]- Starting Z-Wave controller 2014-09-19 18:45:02.436 INFO o.o.b.z.i.p.ZWaveController[:141]- Z-Wave timeout is set to 5000ms. 2014-09-19 18:45:02.445 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-19 18:45:03.998 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-19 18:45:04.077 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-19 18:45:04.082 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-19 18:45:06.481 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 18:45:06.567 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetVersion (0x15), type = Request (0x00) 2014-09-19 18:45:06.584 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:45:06.588 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:45:06.635 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 15 E9 2014-09-19 18:45:06.644 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = MemoryGetId (0x20), type = Request (0x00) 2014-09-19 18:45:06.665 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:45:06.674 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 15 E9 2014-09-19 18:45:06.734 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetCapabilities (0x07), type = Request (0x00) 2014-09-19 18:45:06.747 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:45:06.765 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 10 01 15 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 93 2014-09-19 18:45:06.790 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:30]- Get SUC NodeID 2014-09-19 18:45:06.815 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetSucNodeId (0x56), type = Request (0x00) 2014-09-19 18:45:06.832 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:06.968 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetVersion (0x15), type = Response (0x01), payload = 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 2014-09-19 18:45:07.294 DEBUG o.o.b.z.i.p.s.GetVersionMessageClass[:39]- Got MessageGetVersion response. Version = Z-Wave 3.42, Library Type = 0x01 2014-09-19 18:45:07.312 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:07.331 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:07.372 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 680ms/680ms. 2014-09-19 18:45:07.380 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:07.408 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 20 DC 2014-09-19 18:45:07.433 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 20 DC 2014-09-19 18:45:07.464 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 01 20 CA 45 9E 37 01 F1 2014-09-19 18:45:07.554 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = MemoryGetId (0x20), type = Response (0x01), payload = CA 45 9E 37 01 2014-09-19 18:45:07.576 DEBUG o.o.b.z.i.p.s.MemoryGetIdMessageClass[:41]- Got MessageMemoryGetId response. Home id = 0xCA459E37, Controller Node id = 1 2014-09-19 18:45:07.588 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:07.600 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:07.649 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 205ms/680ms. 2014-09-19 18:45:07.659 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:45:07.706 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 07 FB 2014-09-19 18:45:07.764 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 07 FB 2014-09-19 18:45:08.044 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 2B 01 07 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 7C 2014-09-19 18:45:08.748 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetCapabilities (0x07), type = Response (0x01), payload = 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 2014-09-19 18:45:08.789 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:45]- API Version = 4.2 2014-09-19 18:45:08.813 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:46]- Manufacture ID = 0x147 2014-09-19 18:45:08.826 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:47]- Device Type = 0x2 2014-09-19 18:45:08.839 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:48]- Device ID = 0x3 2014-09-19 18:45:08.854 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetInitData 2014-09-19 18:45:08.866 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiApplicationNodeInfo 2014-09-19 18:45:08.878 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationCommandHandler 2014-09-19 18:45:08.894 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetControllerCapabilities 2014-09-19 18:45:08.905 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSetTimeouts 2014-09-19 18:45:08.916 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetCapabilities 2014-09-19 18:45:08.925 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSoftReset 2014-09-19 18:45:08.933 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendNodeInfo 2014-09-19 18:45:08.942 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendData 2014-09-19 18:45:08.952 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetVersion 2014-09-19 18:45:08.960 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: MemoryGetId 2014-09-19 18:45:08.968 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReadMemory 2014-09-19 18:45:08.977 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: WriteMemory 2014-09-19 18:45:08.985 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IdentifyNode 2014-09-19 18:45:08.994 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetDefault 2014-09-19 18:45:09.003 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignReturnRoute 2014-09-19 18:45:09.011 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteReturnRoute 2014-09-19 18:45:09.019 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeNeighborUpdate 2014-09-19 18:45:09.028 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationUpdate 2014-09-19 18:45:09.036 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AddNodeToNetwork 2014-09-19 18:45:09.045 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveNodeFromNetwork 2014-09-19 18:45:09.053 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ControllerChange 2014-09-19 18:45:09.062 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetLearnMode 2014-09-19 18:45:09.070 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignSucReturnRoute 2014-09-19 18:45:09.082 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNetworkUpdate 2014-09-19 18:45:09.090 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetSucNodeID 2014-09-19 18:45:09.099 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteSUCReturnRoute 2014-09-19 18:45:09.107 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetSucNodeId 2014-09-19 18:45:09.115 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendSucId 2014-09-19 18:45:09.124 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeInfo 2014-09-19 18:45:09.132 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveFailedNodeID 2014-09-19 18:45:09.141 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IsFailedNodeID 2014-09-19 18:45:09.150 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReplaceFailedNode 2014-09-19 18:45:09.161 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetRoutingInfo 2014-09-19 18:45:09.172 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xd2 2014-09-19 18:45:09.181 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf0 2014-09-19 18:45:09.192 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf1 2014-09-19 18:45:09.203 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf2 2014-09-19 18:45:09.214 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf3 2014-09-19 18:45:09.221 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:09.229 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:09.239 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1457ms/1457ms. 2014-09-19 18:45:09.247 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:45:09.265 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetInitData (0x02), type = Request (0x00) 2014-09-19 18:45:09.274 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 56 AA 2014-09-19 18:45:09.280 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:45:09.301 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 56 AA 2014-09-19 18:45:09.316 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 56 00 AC 2014-09-19 18:45:09.357 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetSucNodeId (0x56), type = Response (0x01), payload = 00 2014-09-19 18:45:09.362 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:41]- Got SUC NodeID response. 2014-09-19 18:45:09.367 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:47]- No SUC Node is set 2014-09-19 18:45:09.382 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:09.397 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:09.411 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 101ms/1457ms. 2014-09-19 18:45:09.414 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:45:09.442 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetControllerCapabilities (0x05), type = Request (0x00) 2014-09-19 18:45:09.449 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 02 FE 2014-09-19 18:45:09.460 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:45:09.485 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 02 FE 2014-09-19 18:45:09.625 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 25 01 02 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 9A 2014-09-19 18:45:09.870 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetInitData (0x02), type = Response (0x01), payload = 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 2014-09-19 18:45:09.894 DEBUG o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:39]- Got MessageSerialApiGetInitData response. 2014-09-19 18:45:09.918 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 1: Node found 2014-09-19 18:45:09.933 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 2: Node found 2014-09-19 18:45:09.950 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 3: Node found 2014-09-19 18:45:09.966 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 6: Node found 2014-09-19 18:45:09.979 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 7: Node found 2014-09-19 18:45:09.997 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 10: Node found 2014-09-19 18:45:10.014 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 11: Node found 2014-09-19 18:45:10.028 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 12: Node found 2014-09-19 18:45:10.044 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 13: Node found 2014-09-19 18:45:10.060 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 14: Node found 2014-09-19 18:45:10.080 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:65]- ZWave Controller using Controller API 2014-09-19 18:45:10.098 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:66]- ZWave Controller is Primary Controller 2014-09-19 18:45:10.112 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:67]- ------------Number of Nodes Found Registered to ZWave Controller------------ 2014-09-19 18:45:10.128 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:68]- # Nodes = 10 2014-09-19 18:45:10.145 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:69]- ---------------------------------------------------------------------------- 2014-09-19 18:45:10.161 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:10.178 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:10.194 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 703ms/1457ms. 2014-09-19 18:45:10.199 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:45:10.243 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-19 18:45:10.279 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-19 18:45:11.502 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 18:45:15.312 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 255: Timeout while sending message. Requeueing 2014-09-19 18:45:15.323 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:45:15.346 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:45:15.369 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-19 18:45:15.403 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-19 18:45:16.509 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 18:45:16.897 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:16.927 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 1: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:16.952 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:45:16.960 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:16.982 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:16.994 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:45:17.005 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.042 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.046 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:17.054 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 6: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.077 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 6: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.092 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:45:17.098 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.113 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.125 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 5 2014-09-19 18:45:17.134 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.172 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.182 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-19 18:45:17.206 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.215 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.234 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-19 18:45:17.252 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.275 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.286 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:17.300 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.326 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.341 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 18:45:17.352 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 18:45:17.361 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 18:45:17.375 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-19 18:45:17.397 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 18:45:17.428 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 18:45:17.442 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 18:45:17.451 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 18:45:17.471 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 18:45:17.475 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 18:45:17.483 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 18:45:17.497 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:17.518 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:17.524 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2103ms/2103ms. 2014-09-19 18:45:17.528 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-19 18:45:17.534 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 18:45:17.554 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 01 BB 2014-09-19 18:45:17.579 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 01 BB 2014-09-19 18:45:17.612 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 18:45:17.618 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 18:45:17.628 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 18:45:17.640 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 18:45:17.661 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 18:45:17.666 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 18:45:17.683 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 18:45:17.720 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 18:45:17.732 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 18:45:17.740 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 18:45:17.751 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 18:45:17.760 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 18:45:17.769 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 18:45:17.798 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 18:45:17.820 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 18:45:17.845 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 18:45:17.853 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 18:45:17.864 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 18:45:17.883 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 18:45:17.895 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 18:45:17.925 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 18:45:17.947 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 18:45:17.971 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 18:45:17.988 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 18:45:18.007 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 18:45:18.021 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 18:45:18.025 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 18:45:18.050 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 18:45:18.115 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 18:45:18.163 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 18:45:18.193 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 18:45:18.203 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 18:45:18.245 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 18:45:18.254 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 18:45:18.327 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 93 16 00 02 02 01 32 2014-09-19 18:45:18.506 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 93 16 00 02 02 01 2014-09-19 18:45:18.542 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 1: ProtocolInfo 2014-09-19 18:45:18.565 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 1: Listening = true 2014-09-19 18:45:18.590 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 1: Routing = false 2014-09-19 18:45:18.619 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 1: Version = 4 2014-09-19 18:45:18.635 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 1: fLIRS = false 2014-09-19 18:45:18.695 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 1: Basic = Static Controller 0x02 2014-09-19 18:45:18.731 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 1: Generic = Static Controller 0x02 2014-09-19 18:45:18.767 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 1: Specific = PC Controller 0x01 2014-09-19 18:45:18.805 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml 2014-09-19 18:45:18.823 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:127]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml failed, file does not exist. 2014-09-19 18:45:18.861 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-19 18:45:18.908 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:18.928 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-19 18:45:18.955 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:18.989 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:19.008 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:98]- NODE 1: Initialisation complete. 2014-09-19 18:45:19.028 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:19.040 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:19.052 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1440ms/2103ms. 2014-09-19 18:45:19.056 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 18:45:19.084 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 02 B8 2014-09-19 18:45:19.123 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 02 B8 2014-09-19 18:45:19.170 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-19 18:45:19.377 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-19 18:45:19.398 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 2: ProtocolInfo 2014-09-19 18:45:19.426 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 2: Listening = false 2014-09-19 18:45:19.436 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 2: Routing = true 2014-09-19 18:45:19.450 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 2: Version = 4 2014-09-19 18:45:19.467 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 2: fLIRS = false 2014-09-19 18:45:19.492 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 2: Basic = Routing Slave 0x04 2014-09-19 18:45:19.514 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 2: Generic = Binary Sensor 0x20 2014-09-19 18:45:19.532 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 2: Specific = Routing Binary Sensor 0x01 2014-09-19 18:45:19.550 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 2: Deserializing from file etc/zwave/1.6/node2.xml 2014-09-19 18:45:21.516 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 18:45:21.550 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Fri Sep 19 18:45:19 CEST 2014 2014-09-19 18:45:21.599 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Protocol Information since Fri Sep 19 18:45:16 CEST 2014 2014-09-19 18:45:21.639 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.672 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.704 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.744 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.778 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.810 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.852 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.920 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Protocol Information since Fri Sep 19 18:45:17 CEST 2014 2014-09-19 18:45:21.933 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:21.961 DEBUG o.o.b.z.i.ZWaveActiveBinding[:374]- ZWaveIncomingEvent Called, Network Event, Init Done. Setting ZWave Network Ready. 2014-09-19 18:45:22.006 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PostboxBat, command class name = battery, using 0 refresh interval. 2014-09-19 18:45:22.025 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BATTERY to the list of supported command classes. 2014-09-19 18:45:22.046 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PostboxBat, command class name = battery, using 0 refresh interval. 2014-09-19 18:45:22.057 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 18:45:22.082 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Garage, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 18:45:22.109 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Garage, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 18:45:22.089 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:22.135 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:45:22.136 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Thermo, command class name = thermostat_setpoint, using 0 refresh interval. 2014-09-19 18:45:22.178 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:22.179 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Thermo, command class name = thermostat_setpoint, using 0 refresh interval. 2014-09-19 18:45:22.209 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-19 18:45:22.214 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:22.236 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-19 18:45:22.243 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-19 18:45:22.259 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = EnergyZW1, command class name = meter, using 0 refresh interval. 2014-09-19 18:45:22.286 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = EnergyZW1, command class name = meter, using 0 refresh interval. 2014-09-19 18:45:22.270 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:22.310 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 2: Restored from config. 2014-09-19 18:45:22.316 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ApartmentDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 18:45:22.339 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ApartmentDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 18:45:22.333 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:22.368 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PowerZW1, command class name = switch_binary, using 0 refresh interval. 2014-09-19 18:45:22.390 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PowerZW1, command class name = switch_binary, using 0 refresh interval. 2014-09-19 18:45:22.385 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 2: Creating new message for application command No Operation 2014-09-19 18:45:22.416 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Postbox, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 18:45:22.419 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:22.443 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Postbox, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 18:45:22.455 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 2 2014-09-19 18:45:22.487 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 18:45:22.507 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:22.513 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ThermoBat, command class name = battery, using 0 refresh interval. 2014-09-19 18:45:22.526 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:22.539 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ThermoBat, command class name = battery, using 0 refresh interval. 2014-09-19 18:45:22.571 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 3440ms/3440ms. 2014-09-19 18:45:22.575 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 18:45:22.581 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = FrontDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 18:45:22.604 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = FrontDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 18:45:22.634 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:610]- Network initialised - starting network monitor. 2014-09-19 18:45:22.627 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 03 B9 2014-09-19 18:45:22.675 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 03 B9 2014-09-19 18:45:22.724 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-19 18:45:22.849 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-19 18:45:22.875 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 3: ProtocolInfo 2014-09-19 18:45:22.893 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 3: Listening = false 2014-09-19 18:45:22.909 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 3: Routing = true 2014-09-19 18:45:22.945 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 3: Version = 4 2014-09-19 18:45:22.959 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 3: fLIRS = false 2014-09-19 18:45:22.995 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 3: Basic = Routing Slave 0x04 2014-09-19 18:45:23.010 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 3: Generic = Binary Sensor 0x20 2014-09-19 18:45:23.032 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 3: Specific = Routing Binary Sensor 0x01 2014-09-19 18:45:23.048 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 3: Deserializing from file etc/zwave/1.6/node3.xml 2014-09-19 18:45:23.670 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BATTERY to the list of supported command classes. 2014-09-19 18:45:23.686 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 18:45:23.702 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:23.719 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:23.743 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:45:23.757 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:23.778 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-19 18:45:23.793 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:23.807 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 3: Restored from config. 2014-09-19 18:45:23.829 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:23.847 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 3: Creating new message for application command No Operation 2014-09-19 18:45:23.865 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:23.886 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 3 2014-09-19 18:45:23.902 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 18:45:23.920 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:23.936 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:23.981 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1289ms/3440ms. 2014-09-19 18:45:23.994 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 18:45:24.050 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 06 BC 2014-09-19 18:45:24.092 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 06 BC 2014-09-19 18:45:24.148 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 0F 01 F3 2014-09-19 18:45:24.271 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 0F 01 2014-09-19 18:45:24.291 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 6: ProtocolInfo 2014-09-19 18:45:24.308 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 6: Listening = true 2014-09-19 18:45:24.327 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 6: Routing = true 2014-09-19 18:45:24.343 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 6: Version = 4 2014-09-19 18:45:24.360 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 6: fLIRS = false 2014-09-19 18:45:24.389 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 6: Basic = Routing Slave 0x04 2014-09-19 18:45:24.416 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 6: Generic = Repeater Slave 0x0f 2014-09-19 18:45:24.440 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 6: Specific = Basic Repeater Slave 0x01 2014-09-19 18:45:24.455 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 6: Deserializing from file etc/zwave/1.6/node6.xml 2014-09-19 18:45:27.663 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-19 18:45:29.131 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 6: Timeout while sending message. Requeueing 2014-09-19 18:45:29.141 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 18:45:29.155 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 18:45:29.195 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 06 BC 2014-09-19 18:45:29.230 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 06 BC 2014-09-19 18:45:32.673 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-19 18:45:34.117 WARN o.o.b.z.i.p.ZWaveController$WatchDogTimerTask[:1114]- Threads not alive, respawning 2014-09-19 18:45:34.132 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:944]- Stopped Z-Wave send thread 2014-09-19 18:45:34.158 INFO o.o.b.z.i.p.ZWaveController[:381]- Disconnected from serial port 2014-09-19 18:45:34.164 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-19 18:45:34.213 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-19 18:45:34.216 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-19 18:45:34.215 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-19 18:45:34.238 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:34.264 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 07 BD 2014-09-19 18:45:34.289 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 07 BD 2014-09-19 18:45:34.308 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-19 18:45:34.375 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-19 18:45:34.388 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 7: ProtocolInfo 2014-09-19 18:45:34.398 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 7: Listening = true 2014-09-19 18:45:34.411 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 7: Routing = true 2014-09-19 18:45:34.421 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 7: Version = 4 2014-09-19 18:45:34.433 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 7: fLIRS = false 2014-09-19 18:45:34.455 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 7: Basic = Routing Slave 0x04 2014-09-19 18:45:34.471 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 7: Generic = Binary Switch 0x10 2014-09-19 18:45:34.485 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 7: Specific = Binary Power Switch 0x01 2014-09-19 18:45:34.501 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 7: Deserializing from file etc/zwave/1.6/node7.xml 2014-09-19 18:45:35.038 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 18:45:35.053 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:35.067 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:35.080 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:45:35.096 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:35.108 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-19 18:45:35.124 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SCENE_ACTIVATION to the list of supported command classes. 2014-09-19 18:45:35.138 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class METER to the list of supported command classes. 2014-09-19 18:45:35.152 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:35.173 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 7: Restored from config. 2014-09-19 18:45:35.190 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:35.204 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-19 18:45:35.219 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:35.227 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 4 2014-09-19 18:45:35.238 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:35.246 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:35.254 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:35.265 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 966ms/3440ms. 2014-09-19 18:45:35.269 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:35.289 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0A B0 2014-09-19 18:45:35.305 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0A B0 2014-09-19 18:45:35.333 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-19 18:45:35.423 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-19 18:45:35.435 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 10: ProtocolInfo 2014-09-19 18:45:35.446 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 10: Listening = true 2014-09-19 18:45:35.459 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 10: Routing = true 2014-09-19 18:45:35.474 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 10: Version = 4 2014-09-19 18:45:35.489 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 10: fLIRS = false 2014-09-19 18:45:35.511 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 10: Basic = Routing Slave 0x04 2014-09-19 18:45:35.528 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 10: Generic = Binary Switch 0x10 2014-09-19 18:45:35.547 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 10: Specific = Binary Power Switch 0x01 2014-09-19 18:45:35.567 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 10: Deserializing from file etc/zwave/1.6/node10.xml 2014-09-19 18:45:36.271 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MULTI_INSTANCE to the list of supported command classes. 2014-09-19 18:45:36.290 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 18:45:36.302 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:36.314 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:45:36.329 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:36.343 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:36.356 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-19 18:45:36.373 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:36.385 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 10: Restored from config. 2014-09-19 18:45:36.410 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:36.427 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-19 18:45:36.447 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:36.461 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 5 2014-09-19 18:45:36.472 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:36.485 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:36.506 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:36.517 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1204ms/3440ms. 2014-09-19 18:45:36.521 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:36.539 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0B B1 2014-09-19 18:45:36.555 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0B B1 2014-09-19 18:45:36.574 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 12 02 6D 2014-09-19 18:45:36.643 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 12 02 2014-09-19 18:45:36.663 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 11: ProtocolInfo 2014-09-19 18:45:36.676 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 11: Listening = false 2014-09-19 18:45:36.688 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 11: Routing = true 2014-09-19 18:45:36.697 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 11: Version = 4 2014-09-19 18:45:36.705 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 11: fLIRS = false 2014-09-19 18:45:36.721 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 11: Basic = Routing Slave 0x04 2014-09-19 18:45:36.733 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 11: Generic = Remote Switch 0x12 2014-09-19 18:45:36.744 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 11: Specific = Multilevel Remote Switch 0x02 2014-09-19 18:45:36.755 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 11: Deserializing from file etc/zwave/1.6/node11.xml 2014-09-19 18:45:37.101 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BATTERY to the list of supported command classes. 2014-09-19 18:45:37.114 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 18:45:37.126 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 18:45:37.141 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:37.155 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:37.166 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:37.178 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:45:37.189 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:37.205 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 11: Restored from config. 2014-09-19 18:45:37.221 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:37.236 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 11: Creating new message for application command No Operation 2014-09-19 18:45:37.253 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:37.265 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 6 2014-09-19 18:45:37.277 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:37.290 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:37.301 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:37.317 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 755ms/3440ms. 2014-09-19 18:45:37.322 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:37.349 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0C B6 2014-09-19 18:45:37.376 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0C B6 2014-09-19 18:45:37.405 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 11 01 ED 2014-09-19 18:45:37.444 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 11 01 2014-09-19 18:45:37.453 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 12: ProtocolInfo 2014-09-19 18:45:37.461 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 12: Listening = true 2014-09-19 18:45:37.470 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 12: Routing = true 2014-09-19 18:45:37.477 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 12: Version = 4 2014-09-19 18:45:37.490 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 12: fLIRS = false 2014-09-19 18:45:37.506 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 12: Basic = Routing Slave 0x04 2014-09-19 18:45:37.516 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 12: Generic = Multi-Level Switch 0x11 2014-09-19 18:45:37.525 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 12: Specific = Multilevel Power Switch 0x01 2014-09-19 18:45:37.535 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 12: Deserializing from file etc/zwave/1.6/node12.xml 2014-09-19 18:45:37.680 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 7 - deferring HEAL. 2014-09-19 18:45:37.755 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class SWITCH_MULTILEVEL to the list of supported command classes. 2014-09-19 18:45:37.764 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 18:45:37.773 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:37.786 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:45:37.797 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:37.808 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:37.819 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:37.830 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 12: Restored from config. 2014-09-19 18:45:37.839 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:37.852 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 12: Creating new message for application command No Operation 2014-09-19 18:45:37.863 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:37.873 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 7 2014-09-19 18:45:37.881 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:37.890 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:37.898 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:37.905 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 519ms/3440ms. 2014-09-19 18:45:37.908 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:37.919 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0D B7 2014-09-19 18:45:37.927 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0D B7 2014-09-19 18:45:37.952 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 08 04 71 2014-09-19 18:45:37.976 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 08 04 2014-09-19 18:45:37.979 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 13: ProtocolInfo 2014-09-19 18:45:37.985 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 13: Listening = false 2014-09-19 18:45:37.990 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 13: Routing = true 2014-09-19 18:45:38.003 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 13: Version = 4 2014-09-19 18:45:38.008 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 13: fLIRS = false 2014-09-19 18:45:38.018 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 13: Basic = Routing Slave 0x04 2014-09-19 18:45:38.022 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 13: Generic = Thermostat 0x08 2014-09-19 18:45:38.028 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 13: Specific = Setpoint Thermostat 0x04 2014-09-19 18:45:38.034 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 13: Deserializing from file etc/zwave/1.6/node13.xml 2014-09-19 18:45:38.216 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:338]- NODE 13: Config file differs from controller information, ignoring config. 2014-09-19 18:45:38.224 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-19 18:45:38.229 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:38.236 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-19 18:45:38.241 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:38.248 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:38.254 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 13: Creating new message for application command No Operation 2014-09-19 18:45:38.260 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:38.266 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 8 2014-09-19 18:45:38.271 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:38.275 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:38.281 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:38.287 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 350ms/3440ms. 2014-09-19 18:45:38.292 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:38.302 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0E B4 2014-09-19 18:45:38.315 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0E B4 2014-09-19 18:45:38.327 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-19 18:45:38.353 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-19 18:45:38.359 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 14: ProtocolInfo 2014-09-19 18:45:38.368 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 14: Listening = false 2014-09-19 18:45:38.376 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 14: Routing = true 2014-09-19 18:45:38.385 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 14: Version = 4 2014-09-19 18:45:38.393 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 14: fLIRS = false 2014-09-19 18:45:38.408 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 14: Basic = Routing Slave 0x04 2014-09-19 18:45:38.418 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 14: Generic = Binary Sensor 0x20 2014-09-19 18:45:38.423 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 14: Specific = Routing Binary Sensor 0x01 2014-09-19 18:45:38.428 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 14: Deserializing from file etc/zwave/1.6/node14.xml 2014-09-19 18:45:38.607 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:338]- NODE 14: Config file differs from controller information, ignoring config. 2014-09-19 18:45:38.615 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-19 18:45:38.620 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 18:45:38.626 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-19 18:45:38.634 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BASIC to the list of supported command classes. 2014-09-19 18:45:38.639 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x30 2014-09-19 18:45:38.645 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-19 18:45:38.652 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 18:45:38.665 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 14: Creating new message for application command No Operation 2014-09-19 18:45:38.672 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:38.677 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 9 2014-09-19 18:45:38.682 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:38.687 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:38.692 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:38.698 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 380ms/3440ms. 2014-09-19 18:45:38.704 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:38.716 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 04 C3 2014-09-19 18:45:38.726 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 04 C3 2014-09-19 18:45:38.737 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:38.747 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:38.756 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:38.777 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 04 00 ED 2014-09-19 18:45:38.806 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 04 00 2014-09-19 18:45:38.837 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 4 2014-09-19 18:45:38.848 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:38.864 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Ping Node, requested = Node Information 2014-09-19 18:45:38.875 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:38.886 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class SWITCH_BINARY 2014-09-19 18:45:38.897 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 7 2014-09-19 18:45:38.912 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:38.921 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 10 2014-09-19 18:45:38.929 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:38.938 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class METER 2014-09-19 18:45:38.950 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 18:45:38.959 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:38.964 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 18:45:38.981 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:38.990 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 18:45:39.003 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:39.012 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 18:45:39.024 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:39.029 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 11 2014-09-19 18:45:39.038 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 18:45:39.043 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 12 2014-09-19 18:45:39.049 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-19 18:45:39.054 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 13 2014-09-19 18:45:39.059 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 11 2014-09-19 18:45:39.065 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 14 2014-09-19 18:45:39.070 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 12 2014-09-19 18:45:39.076 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:39.081 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:39.087 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 358ms/3440ms. 2014-09-19 18:45:39.092 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 11 2014-09-19 18:45:39.108 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 07 02 25 02 25 0A E8 2014-09-19 18:45:39.120 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 07 02 25 02 25 0A E8 2014-09-19 18:45:39.135 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:39.148 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:39.152 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:39.168 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0A 00 E3 2014-09-19 18:45:39.180 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0A 00 2014-09-19 18:45:39.184 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 10 2014-09-19 18:45:39.188 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:39.210 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 07 03 25 03 00 D0 2014-09-19 18:45:39.223 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 03 25 03 00 2014-09-19 18:45:39.232 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:39.238 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class SWITCH_BINARY (0x25) 2014-09-19 18:45:39.243 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 7 2014-09-19 18:45:39.248 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 7, value = 0x00 2014-09-19 18:45:39.252 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:39.259 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:39.265 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-19 18:45:39.293 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:39.301 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:39.310 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:39.320 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 196ms/3440ms. 2014-09-19 18:45:39.324 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 10 2014-09-19 18:45:39.350 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 00 25 0B FF 2014-09-19 18:45:39.362 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 00 25 0B FF 2014-09-19 18:45:39.374 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:39.391 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:39.395 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:39.419 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0B 00 E2 2014-09-19 18:45:39.435 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0B 00 2014-09-19 18:45:39.447 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 11 2014-09-19 18:45:39.452 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:39.482 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 14 00 04 00 07 0E 32 02 21 64 00 00 00 0F 09 CC 00 00 00 0F 56 2014-09-19 18:45:39.563 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 0E 32 02 21 64 00 00 00 0F 09 CC 00 00 00 0F 2014-09-19 18:45:39.575 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:39.585 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 18:45:39.596 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 18:45:39.604 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 18:45:39.617 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 18:45:39.637 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = kWh (0x00) 2014-09-19 18:45:39.661 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.015000) 2014-09-19 18:45:39.683 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:39.692 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:39.708 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.015 2014-09-19 18:45:39.727 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:39.737 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:39.747 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:39.753 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 387ms/3440ms. 2014-09-19 18:45:39.758 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-19 18:45:39.770 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 28 25 0C D0 2014-09-19 18:45:39.780 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 28 25 0C D0 2014-09-19 18:45:39.793 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:39.803 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:39.807 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:39.829 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0C 00 E5 2014-09-19 18:45:39.844 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0C 00 2014-09-19 18:45:39.851 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 12 2014-09-19 18:45:39.858 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:39.876 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 6C 00 00 00 01 06 2014-09-19 18:45:39.916 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 6C 00 00 00 01 2014-09-19 18:45:39.924 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:39.935 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 18:45:39.943 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 18:45:39.953 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 18:45:39.970 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 18:45:39.979 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = A (0x05) 2014-09-19 18:45:39.997 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.001000) 2014-09-19 18:45:40.012 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:40.021 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:40.028 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.001 2014-09-19 18:45:40.039 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:40.052 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:40.060 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:40.072 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 287ms/3440ms. 2014-09-19 18:45:40.076 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 18:45:40.103 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 0D E9 2014-09-19 18:45:40.123 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 0D E9 2014-09-19 18:45:40.138 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:40.161 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:40.165 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:40.177 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0D 00 E4 2014-09-19 18:45:40.205 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0D 00 2014-09-19 18:45:40.212 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 13 2014-09-19 18:45:40.224 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:40.246 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-19 18:45:40.285 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-19 18:45:40.289 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:40.299 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 18:45:40.307 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 18:45:40.315 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 18:45:40.326 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 18:45:40.334 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-19 18:45:40.343 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-19 18:45:40.347 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:40.351 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:40.357 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-19 18:45:40.373 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:40.383 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:40.388 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:40.394 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 265ms/3440ms. 2014-09-19 18:45:40.399 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:40.408 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 20 25 0E DA 2014-09-19 18:45:40.417 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 20 25 0E DA 2014-09-19 18:45:40.428 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:40.443 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:40.447 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:40.464 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0E 00 E7 2014-09-19 18:45:40.471 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0E 00 2014-09-19 18:45:40.475 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 14 2014-09-19 18:45:40.480 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:40.508 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 64 00 03 93 0B 94 2014-09-19 18:45:40.528 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 64 00 03 93 0B 2014-09-19 18:45:40.534 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:40.540 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 18:45:40.545 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 18:45:40.550 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 18:45:40.556 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 18:45:40.562 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = V (0x04) 2014-09-19 18:45:40.571 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (234.251000) 2014-09-19 18:45:40.575 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:40.580 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:40.586 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 234.251 2014-09-19 18:45:40.595 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:40.603 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 7: Serializing to file etc/zwave/1.6/node7.xml 2014-09-19 18:45:40.875 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 7: Initialisation complete. 2014-09-19 18:45:40.882 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:40.887 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:40.893 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 473ms/3440ms. 2014-09-19 18:45:40.898 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-19 18:45:40.907 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 05 CF 2014-09-19 18:45:40.915 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 05 CF 2014-09-19 18:45:40.925 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:40.934 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:40.938 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:40.960 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 05 00 EC 2014-09-19 18:45:40.969 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 05 00 2014-09-19 18:45:40.973 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 5 2014-09-19 18:45:40.977 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:40.982 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Ping Node, requested = Node Information 2014-09-19 18:45:40.989 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:40.996 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-19 18:45:41.001 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-19 18:45:41.007 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:41.013 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 1 2014-09-19 18:45:41.037 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 1 2014-09-19 18:45:41.049 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 15 2014-09-19 18:45:41.059 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-19 18:45:41.072 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-19 18:45:41.077 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-19 18:45:41.084 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:41.089 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 2 2014-09-19 18:45:41.094 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 2 2014-09-19 18:45:41.099 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 16 2014-09-19 18:45:41.107 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 18:45:41.112 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-19 18:45:41.118 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-19 18:45:41.123 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:41.129 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 17 2014-09-19 18:45:41.134 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 18:45:41.139 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:41.144 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:41.151 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 232ms/3440ms. 2014-09-19 18:45:41.155 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 18:45:41.165 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 0F 8D 2014-09-19 18:45:41.174 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 0F 8D 2014-09-19 18:45:41.184 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:41.193 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:41.197 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:41.222 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0F 00 E6 2014-09-19 18:45:41.229 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0F 00 2014-09-19 18:45:41.237 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 15 2014-09-19 18:45:41.241 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:41.266 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 01 01 25 03 00 B0 2014-09-19 18:45:41.278 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 01 01 25 03 00 2014-09-19 18:45:41.281 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:41.286 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-19 18:45:41.291 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-19 18:45:41.297 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-19 18:45:41.302 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 1, calling handleApplicationCommandRequest. 2014-09-19 18:45:41.308 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-19 18:45:41.313 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-19 18:45:41.319 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:41.324 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:41.329 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-19 18:45:41.342 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:41.349 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:41.359 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:41.369 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 192ms/3440ms. 2014-09-19 18:45:41.389 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 18:45:41.409 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 10 91 2014-09-19 18:45:41.425 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 10 91 2014-09-19 18:45:41.439 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:41.453 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:41.456 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:41.476 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 10 00 F9 2014-09-19 18:45:41.484 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 10 00 2014-09-19 18:45:41.488 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 16 2014-09-19 18:45:41.492 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:41.525 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 02 01 25 03 00 B3 2014-09-19 18:45:41.550 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 02 01 25 03 00 2014-09-19 18:45:41.555 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:41.564 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-19 18:45:41.573 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-19 18:45:41.580 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-19 18:45:41.591 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 2, calling handleApplicationCommandRequest. 2014-09-19 18:45:41.599 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-19 18:45:41.610 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-19 18:45:41.616 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:41.625 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:41.633 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 2, command class = SWITCH_BINARY, value = 0 2014-09-19 18:45:41.654 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:41.664 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:41.671 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:41.688 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 257ms/3440ms. 2014-09-19 18:45:41.692 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-19 18:45:41.723 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0A 02 25 02 25 11 FE 2014-09-19 18:45:41.739 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0A 02 25 02 25 11 FE 2014-09-19 18:45:41.755 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:41.767 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:41.771 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:41.790 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 11 00 F8 2014-09-19 18:45:41.800 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 11 00 2014-09-19 18:45:41.806 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 17 2014-09-19 18:45:41.811 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:41.830 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0A 03 25 03 00 DD 2014-09-19 18:45:41.850 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 03 25 03 00 2014-09-19 18:45:41.856 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:41.860 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class SWITCH_BINARY (0x25) 2014-09-19 18:45:41.865 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-19 18:45:41.870 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-19 18:45:41.875 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:41.880 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:41.885 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-19 18:45:41.899 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:41.906 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 10: Serializing to file etc/zwave/1.6/node10.xml 2014-09-19 18:45:42.048 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 10: Initialisation complete. 2014-09-19 18:45:42.056 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:42.062 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:42.068 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 321ms/3440ms. 2014-09-19 18:45:42.073 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-19 18:45:42.082 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0C 01 00 25 07 CB 2014-09-19 18:45:42.088 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0C 01 00 25 07 CB 2014-09-19 18:45:42.099 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:42.113 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:42.116 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:42.134 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 07 00 EE 2014-09-19 18:45:42.142 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 07 00 2014-09-19 18:45:42.145 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 7 2014-09-19 18:45:42.150 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:42.155 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Ping Node, requested = Node Information 2014-09-19 18:45:42.161 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:42.165 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 12: Found dynamic state command class SWITCH_MULTILEVEL 2014-09-19 18:45:42.171 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:128]- Creating new message for application command SWITCH_MULTILEVEL_GET for node 12 2014-09-19 18:45:42.177 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:42.184 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 18 2014-09-19 18:45:42.190 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-19 18:45:42.196 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:42.201 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:42.208 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 116ms/3440ms. 2014-09-19 18:45:42.212 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-19 18:45:42.221 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0C 02 26 02 25 12 F8 2014-09-19 18:45:42.228 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0C 02 26 02 25 12 F8 2014-09-19 18:45:42.247 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:42.263 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:42.267 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:42.283 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 12 00 FB 2014-09-19 18:45:42.291 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 12 00 2014-09-19 18:45:42.294 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 18 2014-09-19 18:45:42.298 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:42.325 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-19 18:45:42.335 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-19 18:45:42.338 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:42.343 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 18:45:42.348 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 18:45:42.353 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-19 18:45:42.357 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:42.361 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:42.367 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-19 18:45:42.375 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-19 18:45:42.383 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:42.390 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 12: Serializing to file etc/zwave/1.6/node12.xml 2014-09-19 18:45:42.501 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 12: Initialisation complete. 2014-09-19 18:45:42.508 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:42.528 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:42.538 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 297ms/3440ms. 2014-09-19 18:45:42.542 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 4 2014-09-19 18:45:42.558 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 02 01 00 25 02 C0 2014-09-19 18:45:42.570 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 02 01 00 25 02 C0 2014-09-19 18:45:42.582 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:42.592 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:42.595 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:42.685 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 4 - deferring HEAL. 2014-09-19 18:45:47.592 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 18:45:47.610 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 18:45:47.620 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 18:45:47.629 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 2: Timeout while sending message. Requeueing 2014-09-19 18:45:47.639 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:45:47.651 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 03 01 00 25 03 C0 2014-09-19 18:45:47.665 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 03 01 00 25 03 C0 2014-09-19 18:45:47.680 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:47.689 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-19 18:45:47.698 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:47.704 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:49.325 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 02 01 EA 2014-09-19 18:45:49.338 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 02 01 2014-09-19 18:45:49.342 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 2 2014-09-19 18:45:49.348 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 18:45:49.353 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 18:45:51.946 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 03 01 EB 2014-09-19 18:45:51.956 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 03 01 2014-09-19 18:45:51.960 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 3 2014-09-19 18:45:51.965 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 18:45:51.970 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:51.976 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:51.982 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 4309ms/4309ms. 2014-09-19 18:45:51.987 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:51.997 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0B 01 00 25 06 CD 2014-09-19 18:45:52.004 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0B 01 00 25 06 CD 2014-09-19 18:45:52.018 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:52.034 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:52.043 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:52.693 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 2 - deferring HEAL. 2014-09-19 18:45:56.801 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 18:45:56.818 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 18:45:56.822 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Ping Node) 2014-09-19 18:45:56.834 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 18:45:56.847 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class BATTERY (0x80) not found, trying to add it. 2014-09-19 18:45:56.854 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x80 2014-09-19 18:45:56.860 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:67]- NODE 13: Adding command class BATTERY (0x80) 2014-09-19 18:45:56.865 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BATTERY to the list of supported command classes. 2014-09-19 18:45:56.871 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 18:45:56.876 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 18:45:56.881 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:56.885 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:56.891 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 18:45:56.909 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Ping Node, requested = Node Complete 2014-09-19 18:45:56.918 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = RequestNodeInfo (0x60), type = Request (0x00) 2014-09-19 18:45:56.922 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:56.932 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 07 6C 94 2014-09-19 18:45:56.943 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 07 6C 2014-09-19 18:45:56.947 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Information) 2014-09-19 18:45:56.953 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:45:56.958 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class THERMOSTAT_SETPOINT (0x43) not found, trying to add it. 2014-09-19 18:45:56.962 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x43 2014-09-19 18:45:56.969 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:67]- NODE 13: Adding command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:45:56.973 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class THERMOSTAT_SETPOINT to the list of supported command classes. 2014-09-19 18:45:56.982 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:45:56.987 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 18:45:56.993 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (19.000000) 2014-09-19 18:45:56.999 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 18:45:57.004 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 19 2014-09-19 18:45:57.009 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:57.013 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:57.019 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 19 2014-09-19 18:45:57.022 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 18:45:57.034 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 18:45:57.059 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 18:45:57.057 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Node Information, requested = Node Complete 2014-09-19 18:45:57.074 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:134]- NODE 13: does not support MANUFACTURER_SPECIFIC, proceeding to version node stage. 2014-09-19 18:45:57.091 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 11: Timeout while sending message. Requeueing 2014-09-19 18:45:57.095 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:57.110 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:178]- NODE 13: Found initializable command class THERMOSTAT_SETPOINT 2014-09-19 18:45:57.120 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 0D 96 2014-09-19 18:45:57.125 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:238]- Creating new message for application command THERMOSTAT_SETPOINT_SUPPORTED_GET for node 13 2014-09-19 18:45:57.135 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:57.133 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 0D 96 2014-09-19 18:45:57.157 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 19 2014-09-19 18:45:57.162 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:57.174 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-19 18:45:57.221 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-19 18:45:57.228 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Static Information) 2014-09-19 18:45:57.242 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:45:57.252 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-19 18:45:57.261 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-19 18:45:57.268 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:45:57.302 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:45:57.305 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:57.420 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:45:57.426 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 269ms/4309ms. 2014-09-19 18:45:57.430 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:45:57.451 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:57.464 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 0D 96 2014-09-19 18:45:57.470 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 0D 96 2014-09-19 18:45:57.565 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:45:57.569 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 87ms/4309ms. 2014-09-19 18:45:57.573 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:45:57.578 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 06 01 EE 2014-09-19 18:45:57.586 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 0D 96 2014-09-19 18:45:57.605 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 0D 96 2014-09-19 18:45:57.622 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 06 01 2014-09-19 18:45:57.626 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 6 2014-09-19 18:45:57.642 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 18:45:57.651 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 18:45:57.654 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:57.697 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-19 18:45:57.763 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:45:57.767 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 145ms/4309ms. 2014-09-19 18:45:57.781 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:45:57.786 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 60 01 9B 2014-09-19 18:45:57.790 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 0D 96 2014-09-19 18:45:57.802 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 0D 96 2014-09-19 18:45:57.809 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = RequestNodeInfo (0x60), type = Response (0x01), payload = 01 2014-09-19 18:45:57.818 DEBUG o.o.b.z.i.p.s.RequestNodeInfoMessageClass[:38]- Request node info successfully placed on stack. 2014-09-19 18:45:57.842 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 16 00 49 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 18 2014-09-19 18:45:57.872 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 2014-09-19 18:45:57.925 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 13: Application update request, node information received. 2014-09-19 18:45:57.935 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x80 2014-09-19 18:45:57.946 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-19 18:45:57.956 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:45:57.967 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x81 2014-09-19 18:45:57.971 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLOCK (0x81) 2014-09-19 18:45:57.978 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x72 2014-09-19 18:45:57.988 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:45:58.002 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x8F 2014-09-19 18:45:58.013 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_CMD (0x8f) 2014-09-19 18:45:58.027 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x75 2014-09-19 18:45:58.034 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class PROTECTION (0x75) 2014-09-19 18:45:58.044 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x43 2014-09-19 18:45:58.049 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x86 2014-09-19 18:45:58.062 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:45:58.070 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x84 2014-09-19 18:45:58.083 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 18:45:58.091 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Static Information, requested = Manufacture Name and Product Identification 2014-09-19 18:45:58.109 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:58.113 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:58.119 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 0 messages in the wake-up queue. 2014-09-19 18:45:58.129 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:58.133 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:58.145 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 334ms/4309ms. 2014-09-19 18:45:58.149 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:58.151 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:58.161 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 13 9B 2014-09-19 18:45:58.173 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 13 9B 2014-09-19 18:45:58.258 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:58.261 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 82ms/4309ms. 2014-09-19 18:45:58.271 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:58.275 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:58.283 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 13 9B 2014-09-19 18:45:58.294 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:58.304 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:58.303 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 13 9B 2014-09-19 18:45:58.322 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 13 00 FA 2014-09-19 18:45:58.333 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 13 00 2014-09-19 18:45:58.344 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 19 2014-09-19 18:45:58.349 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:58.364 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:58.468 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:58.471 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 157ms/4309ms. 2014-09-19 18:45:58.474 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:58.479 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 43 05 02 B8 2014-09-19 18:45:58.507 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 13 9B 2014-09-19 18:45:58.529 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 13 9B 2014-09-19 18:45:58.537 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 43 05 02 2014-09-19 18:45:58.552 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Static Information) 2014-09-19 18:45:58.572 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:45:58.576 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:45:58.580 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:100]- Process Thermostat Supported Setpoint Report 2014-09-19 18:45:58.600 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:117]- Added setpoint type Heating (0x01) 2014-09-19 18:45:58.604 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Static Information, requested = Frequently Changed Information 2014-09-19 18:45:58.618 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class BATTERY 2014-09-19 18:45:58.631 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-19 18:45:58.643 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:58.655 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 20 2014-09-19 18:45:58.661 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:58.671 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-19 18:45:58.675 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-19 18:45:58.685 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:45:58.692 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 21 2014-09-19 18:45:58.698 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:45:58.705 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:58.711 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:58.725 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 184ms/4309ms. 2014-09-19 18:45:58.730 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:45:58.733 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:58.744 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 14 59 2014-09-19 18:45:58.761 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 14 59 2014-09-19 18:45:58.767 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:58.780 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:58.788 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 13 00 FA 2014-09-19 18:45:58.811 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 13 00 2014-09-19 18:45:58.815 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 19 2014-09-19 18:45:58.820 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:58.827 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 18:45:58.842 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:58.946 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:45:58.949 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 168ms/4309ms. 2014-09-19 18:45:58.952 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:45:58.975 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 43 05 02 B8 2014-09-19 18:45:58.996 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 43 05 02 2014-09-19 18:45:58.982 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 14 59 2014-09-19 18:45:59.009 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:59.014 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 14 59 2014-09-19 18:45:59.022 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:45:59.034 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:45:59.045 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:100]- Process Thermostat Supported Setpoint Report 2014-09-19 18:45:59.051 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:117]- Added setpoint type Heating (0x01) 2014-09-19 18:45:59.057 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Frequently Changed Information, requested = Frequently Changed Information 2014-09-19 18:45:59.065 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:59.073 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:59.084 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 59ms/4309ms. 2014-09-19 18:45:59.090 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:59.098 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:59.109 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 15 98 2014-09-19 18:45:59.125 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:59.130 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 15 98 2014-09-19 18:45:59.141 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:59.152 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 14 00 FD 2014-09-19 18:45:59.174 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 14 00 2014-09-19 18:45:59.178 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 20 2014-09-19 18:45:59.185 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:59.193 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 18:45:59.203 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:45:59.309 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:45:59.312 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 167ms/4309ms. 2014-09-19 18:45:59.315 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:45:59.337 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 18:45:59.346 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 15 98 2014-09-19 18:45:59.380 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 15 98 2014-09-19 18:45:59.394 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 18:45:59.407 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:59.425 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 18:45:59.430 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 18:45:59.444 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 18:45:59.449 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:59.462 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:59.475 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 18:45:59.492 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:45:59.519 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:45:59.543 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:45:59.576 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:45:59.587 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 15 00 FC 2014-09-19 18:45:59.612 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 15 00 2014-09-19 18:45:59.631 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 21 2014-09-19 18:45:59.651 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:45:59.673 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:59.683 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:45:59.701 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 308ms/4309ms. 2014-09-19 18:45:59.705 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:45:59.733 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 07 6C 94 2014-09-19 18:45:59.734 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0D 01 00 25 08 C5 2014-09-19 18:45:59.766 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0D 01 00 25 08 C5 2014-09-19 18:45:59.826 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 07 6C 2014-09-19 18:45:59.846 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:45:59.884 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:45:59.890 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:45:59.907 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 18:45:59.933 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (19.000000) 2014-09-19 18:45:59.941 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 18:45:59.949 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 19 2014-09-19 18:45:59.966 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:45:59.985 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:46:00.013 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 19 2014-09-19 18:46:00.039 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:46:00.072 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 13: Serializing to file etc/zwave/1.6/node13.xml 2014-09-19 18:46:00.210 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 13: Initialisation complete. 2014-09-19 18:46:00.227 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 18:46:00.354 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:46:00.358 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 568ms/4309ms. 2014-09-19 18:46:00.361 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:46:00.384 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0D 01 00 25 08 C5 2014-09-19 18:46:00.396 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0D 01 00 25 08 C5 2014-09-19 18:46:00.410 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:46:00.424 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:46:00.442 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:46:00.451 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 08 00 E1 2014-09-19 18:46:00.482 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 08 00 2014-09-19 18:46:00.486 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 8 2014-09-19 18:46:00.494 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:46:00.505 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:46:00.519 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:46:00.534 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 131ms/4309ms. 2014-09-19 18:46:00.548 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:46:00.577 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0E 01 00 25 09 C7 2014-09-19 18:46:00.604 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0E 01 00 25 09 C7 2014-09-19 18:46:00.633 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:46:00.669 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:46:00.682 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:46:02.532 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-19 18:46:02.542 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 18:46:02.567 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:46:02.582 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 22 2014-09-19 18:46:02.591 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:46:05.642 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 18:46:05.652 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 18:46:05.659 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 18:46:05.681 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 14: Timeout while sending message. Requeueing 2014-09-19 18:46:05.685 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:46:05.695 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 16 55 2014-09-19 18:46:05.703 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 16 55 2014-09-19 18:46:05.714 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:46:05.728 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:46:05.733 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:46:05.748 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 16 00 FF 2014-09-19 18:46:05.756 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 16 00 2014-09-19 18:46:05.759 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 22 2014-09-19 18:46:05.764 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:46:05.769 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:46:05.773 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:46:05.778 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-19 18:46:05.783 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 76ms/4309ms. 2014-09-19 18:46:06.475 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 09 01 E1 2014-09-19 18:46:06.495 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 09 01 2014-09-19 18:46:06.503 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 9 2014-09-19 18:46:06.513 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 18:46:06.521 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 18:46:42.114 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 18:46:42.130 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:46:42.155 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 C3 2014-09-19 18:46:42.169 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 18:46:43.317 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 18:46:43.324 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:46:43.335 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 C8 2014-09-19 18:46:43.342 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 18:46:44.202 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 18:46:44.209 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:46:44.220 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 CD 2014-09-19 18:46:44.226 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 18:46:44.961 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 18:46:44.968 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:46:44.980 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 D2 2014-09-19 18:46:44.986 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 18:46:52.736 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 6: Sending periodic PING. 2014-09-19 18:48:22.751 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 7: Sending periodic PING. 2014-09-19 18:48:22.759 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-19 18:48:22.767 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:48:22.772 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 23 2014-09-19 18:48:22.778 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:48:22.783 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:48:22.792 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 17 D0 2014-09-19 18:48:22.800 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 17 D0 2014-09-19 18:48:22.812 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:48:22.822 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:48:22.826 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:48:22.846 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 17 00 FE 2014-09-19 18:48:22.856 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 17 00 2014-09-19 18:48:22.860 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 23 2014-09-19 18:48:22.866 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:48:22.872 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:48:22.876 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:48:22.883 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 79ms/4309ms. 2014-09-19 18:48:39.650 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 03 03 20 01 00 D3 2014-09-19 18:48:39.677 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 03 20 01 00 2014-09-19 18:48:39.687 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Ping Node) 2014-09-19 18:48:39.700 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class BASIC (0x20) 2014-09-19 18:48:39.706 DEBUG o.o.b.z.i.p.c.ZWaveBasicCommandClass[:70]- Received Basic Request for Node ID = 3 2014-09-19 18:48:39.710 DEBUG o.o.b.z.i.p.c.ZWaveBasicCommandClass[:75]- Basic Set sent to the controller will be processed as Basic Report 2014-09-19 18:48:39.715 DEBUG o.o.b.z.i.p.c.ZWaveBasicCommandClass[:104]- Basic report from nodeId = 3, value = 0x00 2014-09-19 18:48:39.720 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:48:39.724 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:48:39.729 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 3, endpoint = 1, command class = BASIC, value = 0 2014-09-19 18:48:39.750 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 03 03 20 01 00 D3 2014-09-19 18:48:39.769 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 03 20 01 00 2014-09-19 18:48:39.783 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Ping Node) 2014-09-19 18:48:39.788 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class BASIC (0x20) 2014-09-19 18:48:39.800 DEBUG o.o.b.z.i.p.c.ZWaveBasicCommandClass[:70]- Received Basic Request for Node ID = 3 2014-09-19 18:48:39.805 DEBUG o.o.b.z.i.p.c.ZWaveBasicCommandClass[:75]- Basic Set sent to the controller will be processed as Basic Report 2014-09-19 18:48:39.814 DEBUG o.o.b.z.i.p.c.ZWaveBasicCommandClass[:104]- Basic report from nodeId = 3, value = 0x00 2014-09-19 18:48:39.822 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:48:39.828 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:48:39.837 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 3, endpoint = 1, command class = BASIC, value = 0 2014-09-19 18:48:39.867 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 10 00 04 00 03 0A 71 05 07 00 00 FF 07 02 00 00 6B 2014-09-19 18:48:39.933 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 0A 71 05 07 00 00 FF 07 02 00 00 2014-09-19 18:48:39.938 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Ping Node) 2014-09-19 18:48:39.949 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class ALARM (0x71) 2014-09-19 18:48:39.963 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 3: Command class ALARM (0x71) not found, trying to add it. 2014-09-19 18:48:39.976 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x71 2014-09-19 18:48:39.991 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class ALARM (0x71) 2014-09-19 18:48:39.998 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 3: Unsupported command class ALARM (0x71) 2014-09-19 18:48:40.019 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 10 00 04 00 03 0A 71 05 07 00 00 FF 07 02 00 00 6B 2014-09-19 18:48:40.072 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 0A 71 05 07 00 00 FF 07 02 00 00 2014-09-19 18:48:40.085 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Ping Node) 2014-09-19 18:48:40.100 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class ALARM (0x71) 2014-09-19 18:48:40.113 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 3: Command class ALARM (0x71) not found, trying to add it. 2014-09-19 18:48:40.123 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x71 2014-09-19 18:48:40.134 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class ALARM (0x71) 2014-09-19 18:48:40.148 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 3: Unsupported command class ALARM (0x71) 2014-09-19 18:49:52.798 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 10: Sending periodic PING. 2014-09-19 18:49:52.806 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-19 18:49:52.814 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:49:52.818 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 24 2014-09-19 18:49:52.824 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:49:52.829 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:49:52.842 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 18 D2 2014-09-19 18:49:52.852 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 18 D2 2014-09-19 18:49:52.863 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:49:52.881 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:49:52.885 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:49:52.899 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 18 00 F1 2014-09-19 18:49:52.930 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 18 00 2014-09-19 18:49:52.936 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 24 2014-09-19 18:49:52.942 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:49:52.948 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:49:52.953 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:49:52.959 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 103ms/4309ms. 2014-09-19 18:50:49.879 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 18:50:49.937 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 18:50:49.942 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:50:49.949 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 18:50:49.953 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 18:50:49.960 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 18:50:49.964 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:49.969 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:49.975 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 18:50:50.010 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 07 6C 94 2014-09-19 18:50:50.062 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 07 6C 2014-09-19 18:50:50.066 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:50:50.073 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:50:50.079 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:50:50.085 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 18:50:50.091 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (19.000000) 2014-09-19 18:50:50.098 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 18:50:50.103 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 19 2014-09-19 18:50:50.108 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:50.113 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:50.118 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 19 2014-09-19 18:50:50.154 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-19 18:50:50.237 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-19 18:50:50.247 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:50:50.256 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:50:50.267 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-19 18:50:50.272 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-19 18:50:50.277 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:50:50.283 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:50:50.299 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-19 18:50:50.328 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-19 18:50:50.332 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:50:50.349 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-19 18:50:50.358 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-19 18:50:50.367 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-19 18:50:50.377 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:50.382 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:50.389 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 4 messages in the wake-up queue. 2014-09-19 18:50:50.395 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 25 2014-09-19 18:50:50.401 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:50.405 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:50:50.450 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 C3 25 19 74 2014-09-19 18:50:50.509 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 C3 25 19 74 2014-09-19 18:50:50.531 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:50:50.602 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:50:50.621 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:50:50.636 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 19 00 F0 2014-09-19 18:50:50.661 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 19 00 2014-09-19 18:50:50.696 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 25 2014-09-19 18:50:50.713 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:50:50.725 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:50.739 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:50.756 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 26 2014-09-19 18:50:50.769 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:50:50.779 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 259ms/4309ms. 2014-09-19 18:50:50.785 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:50.836 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 C8 25 1A 7C 2014-09-19 18:50:50.880 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 C8 25 1A 7C 2014-09-19 18:50:50.893 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:50:50.910 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:50:50.915 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:50:50.933 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1A 00 F3 2014-09-19 18:50:50.950 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1A 00 2014-09-19 18:50:50.954 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 26 2014-09-19 18:50:50.959 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:50:50.964 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:50.969 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:50.980 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 27 2014-09-19 18:50:50.986 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:50:50.992 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 107ms/4309ms. 2014-09-19 18:50:50.998 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:51.019 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 CD 25 1B 78 2014-09-19 18:50:51.035 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 CD 25 1B 78 2014-09-19 18:50:51.049 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:50:51.064 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:50:51.068 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:50:51.085 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1B 00 F2 2014-09-19 18:50:51.104 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1B 00 2014-09-19 18:50:51.108 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 27 2014-09-19 18:50:51.112 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:50:51.117 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:51.120 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:51.125 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 28 2014-09-19 18:50:51.129 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:50:51.133 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 94ms/4309ms. 2014-09-19 18:50:51.136 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:51.166 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 D2 25 1C 60 2014-09-19 18:50:51.187 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 D2 25 1C 60 2014-09-19 18:50:51.210 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:50:51.224 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:50:51.229 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:50:51.249 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1C 00 F5 2014-09-19 18:50:51.268 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1C 00 2014-09-19 18:50:51.280 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 28 2014-09-19 18:50:51.287 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:50:51.292 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:51.295 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:51.301 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 109ms/4309ms. 2014-09-19 18:50:53.301 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-19 18:50:53.315 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 18:50:53.324 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:50:53.329 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 29 2014-09-19 18:50:53.335 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:53.340 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:50:53.357 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 1D 5E 2014-09-19 18:50:53.372 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 1D 5E 2014-09-19 18:50:53.385 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:50:53.407 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:50:53.415 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:50:53.436 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1D 00 F4 2014-09-19 18:50:53.458 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1D 00 2014-09-19 18:50:53.471 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 29 2014-09-19 18:50:53.481 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:50:53.490 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:50:53.498 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:50:53.520 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-19 18:50:53.526 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 150ms/4309ms. 2014-09-19 18:51:22.845 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 12: Sending periodic PING. 2014-09-19 18:51:22.853 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 12: Creating new message for application command No Operation 2014-09-19 18:51:22.863 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:51:22.868 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 30 2014-09-19 18:51:22.875 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:51:22.879 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:51:22.895 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0C 01 00 25 1E D2 2014-09-19 18:51:22.913 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0C 01 00 25 1E D2 2014-09-19 18:51:22.928 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:51:22.941 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:51:22.945 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:51:22.964 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1E 00 F7 2014-09-19 18:51:22.981 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1E 00 2014-09-19 18:51:22.988 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 30 2014-09-19 18:51:23.002 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:51:23.008 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:51:23.017 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:51:23.027 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 108ms/4309ms. 2014-09-19 18:52:52.898 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 6: Sending periodic PING. 2014-09-19 18:54:22.920 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 7: Sending periodic PING. 2014-09-19 18:54:22.928 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-19 18:54:22.935 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:22.941 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 31 2014-09-19 18:54:22.946 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:54:22.952 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:54:22.966 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 1F D8 2014-09-19 18:54:22.978 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 1F D8 2014-09-19 18:54:22.990 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:23.010 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:23.015 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:23.055 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1F 00 F6 2014-09-19 18:54:23.067 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1F 00 2014-09-19 18:54:23.072 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 31 2014-09-19 18:54:23.076 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:23.082 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:23.086 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:23.094 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 111ms/4309ms. 2014-09-19 18:54:32.967 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0E 02 84 07 7C 2014-09-19 18:54:33.027 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 02 84 07 2014-09-19 18:54:33.032 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Ping Node) 2014-09-19 18:54:33.040 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class WAKE_UP (0x84) 2014-09-19 18:54:33.053 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 14: Command class WAKE_UP (0x84) not found, trying to add it. 2014-09-19 18:54:33.059 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x84 2014-09-19 18:54:33.067 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:67]- NODE 14: Adding command class WAKE_UP (0x84) 2014-09-19 18:54:33.072 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 18:54:33.078 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 14: Received Wake Up Request 2014-09-19 18:54:33.082 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 14: is awake 2014-09-19 18:54:33.087 INFO o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:187]- NODE 14: Got Wake Up Notification from node, continuing initialization. 2014-09-19 18:54:33.093 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Wake Up, requested = Node Information 2014-09-19 18:54:33.099 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = RequestNodeInfo (0x60), type = Request (0x00) 2014-09-19 18:54:33.104 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:54:33.109 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:54:33.116 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:33.118 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 0E 95 2014-09-19 18:54:33.126 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:33.133 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 0E 95 2014-09-19 18:54:33.133 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 14: Is awake with 0 messages in the wake-up queue. 2014-09-19 18:54:33.148 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 60 01 9B 2014-09-19 18:54:33.158 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = RequestNodeInfo (0x60), type = Response (0x01), payload = 01 2014-09-19 18:54:33.161 DEBUG o.o.b.z.i.p.s.RequestNodeInfoMessageClass[:38]- Request node info successfully placed on stack. 2014-09-19 18:54:33.283 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 19 00 49 84 0E 13 04 20 01 30 84 85 80 8F 56 72 86 70 8E 31 9C EF 30 31 9C AE 2014-09-19 18:54:33.413 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 0E 13 04 20 01 30 84 85 80 8F 56 72 86 70 8E 31 9C EF 30 31 9C 2014-09-19 18:54:33.418 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 14: Application update request, node information received. 2014-09-19 18:54:33.424 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x30 2014-09-19 18:54:33.430 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x84 2014-09-19 18:54:33.437 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x85 2014-09-19 18:54:33.447 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 18:54:33.469 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x80 2014-09-19 18:54:33.474 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BATTERY to the list of supported command classes. 2014-09-19 18:54:33.481 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x8F 2014-09-19 18:54:33.494 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_CMD (0x8f) 2014-09-19 18:54:33.505 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x56 2014-09-19 18:54:33.515 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:199]- Unsupported command class 0x56 2014-09-19 18:54:33.533 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x72 2014-09-19 18:54:33.546 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 18:54:33.566 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x86 2014-09-19 18:54:33.578 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class VERSION to the list of supported command classes. 2014-09-19 18:54:33.598 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x70 2014-09-19 18:54:33.614 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 18:54:33.632 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x8E 2014-09-19 18:54:33.644 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_INSTANCE_ASSOCIATION (0x8e) 2014-09-19 18:54:33.669 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x31 2014-09-19 18:54:33.685 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_MULTILEVEL to the list of supported command classes. 2014-09-19 18:54:33.703 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x9C 2014-09-19 18:54:33.720 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_ALARM to the list of supported command classes. 2014-09-19 18:54:33.737 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Node Information, requested = Manufacture Name and Product Identification 2014-09-19 18:54:33.758 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:103]- NODE 14: Creating new message for application command MANUFACTURER_SPECIFIC_GET 2014-09-19 18:54:33.776 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:33.789 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 32 2014-09-19 18:54:33.805 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:54:33.815 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:33.827 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:33.843 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 14: Is awake with 0 messages in the wake-up queue. 2014-09-19 18:54:33.856 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:33.865 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:33.877 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 737ms/4309ms. 2014-09-19 18:54:33.881 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:54:33.910 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 72 04 25 20 9A 2014-09-19 18:54:33.939 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 72 04 25 20 9A 2014-09-19 18:54:33.958 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:33.982 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:33.994 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:34.021 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 20 00 C9 2014-09-19 18:54:34.038 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 20 00 2014-09-19 18:54:34.043 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 32 2014-09-19 18:54:34.047 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:34.066 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 0E 08 72 05 01 0F 08 00 10 01 93 2014-09-19 18:54:34.100 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 08 72 05 01 0F 08 00 10 01 2014-09-19 18:54:34.105 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Manufacture Name and Product Identification) 2014-09-19 18:54:34.111 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class MANUFACTURER_SPECIFIC (0x72) 2014-09-19 18:54:34.116 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:66]- NODE 14: Received Manufacture Specific Information 2014-09-19 18:54:34.125 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:83]- NODE 14: Manufacturer ID = 0x010f 2014-09-19 18:54:34.130 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:84]- NODE 14: Device Type = 0x0800 2014-09-19 18:54:34.135 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:85]- NODE 14: Device ID = 0x1001 2014-09-19 18:54:34.140 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Manufacture Name and Product Identification, requested = Node Version 2014-09-19 18:54:34.147 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:167]- NODE 14: Creating new message for application command VERSION_COMMAND_CLASS_GET command class SENSOR_MULTILEVEL 2014-09-19 18:54:34.152 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:34.157 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 33 2014-09-19 18:54:34.161 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:54:34.165 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:167]- NODE 14: Creating new message for application command VERSION_COMMAND_CLASS_GET command class WAKE_UP 2014-09-19 18:54:34.170 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:34.174 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 34 2014-09-19 18:54:34.178 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:54:34.184 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:167]- NODE 14: Creating new message for application command VERSION_COMMAND_CLASS_GET command class SENSOR_BINARY 2014-09-19 18:54:34.189 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:34.193 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 35 2014-09-19 18:54:34.201 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:54:34.209 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:34.217 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:34.230 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 280ms/4309ms. 2014-09-19 18:54:34.234 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:54:34.259 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0E 03 86 13 31 25 21 4B 2014-09-19 18:54:34.278 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0E 03 86 13 31 25 21 4B 2014-09-19 18:54:34.293 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:34.312 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:34.321 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:34.347 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 21 00 C8 2014-09-19 18:54:34.357 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 21 00 2014-09-19 18:54:34.360 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 33 2014-09-19 18:54:34.372 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:34.390 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0E 04 86 14 31 05 5D 2014-09-19 18:54:34.406 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 04 86 14 31 05 2014-09-19 18:54:34.410 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Node Version) 2014-09-19 18:54:34.415 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class VERSION (0x86) 2014-09-19 18:54:34.421 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:77]- NODE 14: Received Version Request 2014-09-19 18:54:34.426 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:97]- Process Version Command Class Report 2014-09-19 18:54:34.432 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:107]- NODE 14: Requested Command Class = SENSOR_MULTILEVEL (0x31) 2014-09-19 18:54:34.438 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:108]- NODE 14: Version = 5 2014-09-19 18:54:34.444 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:124]- NODE 14: Version = 5, version set. Enabling extra functionality. 2014-09-19 18:54:34.450 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:34.456 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:34.462 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 177ms/4309ms. 2014-09-19 18:54:34.467 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:54:34.480 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0E 03 86 13 84 25 22 FD 2014-09-19 18:54:34.491 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0E 03 86 13 84 25 22 FD 2014-09-19 18:54:34.504 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:34.514 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:34.518 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:34.555 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 22 00 CB 2014-09-19 18:54:34.566 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 22 00 2014-09-19 18:54:34.570 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 34 2014-09-19 18:54:34.575 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:34.598 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0E 04 86 14 84 01 EC 2014-09-19 18:54:34.623 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 04 86 14 84 01 2014-09-19 18:54:34.627 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Node Version) 2014-09-19 18:54:34.639 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class VERSION (0x86) 2014-09-19 18:54:34.645 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:77]- NODE 14: Received Version Request 2014-09-19 18:54:34.656 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:97]- Process Version Command Class Report 2014-09-19 18:54:34.671 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:107]- NODE 14: Requested Command Class = WAKE_UP (0x84) 2014-09-19 18:54:34.681 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:108]- NODE 14: Version = 1 2014-09-19 18:54:34.692 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:124]- NODE 14: Version = 1, version set. Enabling extra functionality. 2014-09-19 18:54:34.700 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:34.708 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:34.721 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 226ms/4309ms. 2014-09-19 18:54:34.725 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:54:34.748 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0E 03 86 13 30 25 23 48 2014-09-19 18:54:34.769 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0E 03 86 13 30 25 23 48 2014-09-19 18:54:34.786 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:34.803 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:34.810 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:34.837 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 23 00 CA 2014-09-19 18:54:34.849 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 23 00 2014-09-19 18:54:34.854 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 35 2014-09-19 18:54:34.860 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:34.880 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0E 04 86 14 30 01 58 2014-09-19 18:54:34.894 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 04 86 14 30 01 2014-09-19 18:54:34.898 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Node Version) 2014-09-19 18:54:34.906 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class VERSION (0x86) 2014-09-19 18:54:34.910 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:77]- NODE 14: Received Version Request 2014-09-19 18:54:34.915 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:97]- Process Version Command Class Report 2014-09-19 18:54:34.923 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:107]- NODE 14: Requested Command Class = SENSOR_BINARY (0x30) 2014-09-19 18:54:34.929 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:108]- NODE 14: Version = 1 2014-09-19 18:54:34.936 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:124]- NODE 14: Version = 1, version set. Enabling extra functionality. 2014-09-19 18:54:34.942 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Node Version, requested = Command Class Instances 2014-09-19 18:54:34.949 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:178]- NODE 14: Found initializable command class SENSOR_MULTILEVEL 2014-09-19 18:54:34.955 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:198]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_SUPPORTED_GET 2014-09-19 18:54:34.967 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:34.973 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 36 2014-09-19 18:54:34.979 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:54:34.985 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:178]- NODE 14: Found initializable command class WAKE_UP 2014-09-19 18:54:34.990 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:259]- NODE 14: Creating new message for application command WAKE_UP_INTERVAL_GET 2014-09-19 18:54:34.997 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:35.003 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 37 2014-09-19 18:54:35.008 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:54:35.016 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:178]- NODE 14: Found initializable command class SENSOR_ALARM 2014-09-19 18:54:35.023 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:204]- Creating new message for application command SENSOR_ALARM_SUPPORTED_GET for node 14 2014-09-19 18:54:35.030 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:35.037 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 38 2014-09-19 18:54:35.045 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:54:35.053 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:35.059 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:35.072 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 295ms/4309ms. 2014-09-19 18:54:35.076 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:54:35.097 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 31 01 25 24 D8 2014-09-19 18:54:35.113 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 31 01 25 24 D8 2014-09-19 18:54:35.124 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:35.134 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:35.137 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:35.176 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 24 00 CD 2014-09-19 18:54:35.193 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 24 00 2014-09-19 18:54:35.199 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 36 2014-09-19 18:54:35.212 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:35.225 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 31 02 05 C9 2014-09-19 18:54:35.253 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 31 02 05 2014-09-19 18:54:35.259 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Static Information) 2014-09-19 18:54:35.272 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_MULTILEVEL (0x31) 2014-09-19 18:54:35.280 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:92]- NODE 14: Received Sensor Multi Level Request 2014-09-19 18:54:35.290 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:101]- Process Multi Level Supported Sensor Report 2014-09-19 18:54:35.316 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:117]- NODE 14: Added sensor type Temperature (0x01) 2014-09-19 18:54:35.323 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:117]- NODE 14: Added sensor type Luminance (0x03) 2014-09-19 18:54:35.335 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Static Information, requested = Frequently Changed Information 2014-09-19 18:54:35.347 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:35.355 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:35.366 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 249ms/4309ms. 2014-09-19 18:54:35.370 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:54:35.390 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 9C 03 25 26 75 2014-09-19 18:54:35.407 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 9C 03 25 26 75 2014-09-19 18:54:35.424 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:35.442 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:35.447 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:35.475 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 26 00 CF 2014-09-19 18:54:35.496 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 26 00 2014-09-19 18:54:35.502 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 38 2014-09-19 18:54:35.515 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:35.532 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0E 04 9C 04 01 01 63 2014-09-19 18:54:35.560 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 04 9C 04 01 01 2014-09-19 18:54:35.568 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Static Information) 2014-09-19 18:54:35.579 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_ALARM (0x9c) 2014-09-19 18:54:35.590 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:81]- Received Sensor Alarm Request for Node ID = 14 2014-09-19 18:54:35.598 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:119]- Process Sensor Supported Alarm Report 2014-09-19 18:54:35.613 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:154]- Added alarm type General (0x00) 2014-09-19 18:54:35.624 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Static Information, requested = Frequently Changed Information 2014-09-19 18:54:35.632 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:35.640 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:35.650 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 234ms/4309ms. 2014-09-19 18:54:35.653 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:54:35.664 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 84 05 25 25 68 2014-09-19 18:54:35.671 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 84 05 25 25 68 2014-09-19 18:54:35.684 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:35.708 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:35.715 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:35.734 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 25 00 CC 2014-09-19 18:54:35.754 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 25 00 2014-09-19 18:54:35.757 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 37 2014-09-19 18:54:35.760 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:35.782 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0E 06 84 06 00 0E 10 01 62 2014-09-19 18:54:35.804 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 06 84 06 00 0E 10 01 2014-09-19 18:54:35.810 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Static Information) 2014-09-19 18:54:35.818 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class WAKE_UP (0x84) 2014-09-19 18:54:35.822 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 14: Received Wake Up Request 2014-09-19 18:54:35.830 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:150]- NODE 14: Wake up interval report, value = 3600 seconds, targetNodeId = 1 2014-09-19 18:54:35.843 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:153]- NODE 14: Wake up interval set 2014-09-19 18:54:35.850 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:35.857 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:36.194 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 14: Serializing to file etc/zwave/1.6/node14.xml 2014-09-19 18:54:36.480 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Static Information, requested = Frequently Changed Information 2014-09-19 18:54:36.497 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class BATTERY 2014-09-19 18:54:36.504 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 14: Creating new message for application command BATTERY_GET 2014-09-19 18:54:36.516 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:36.526 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 39 2014-09-19 18:54:36.530 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:54:36.536 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_MULTILEVEL 2014-09-19 18:54:36.542 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:220]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_GET 2014-09-19 18:54:36.548 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:36.555 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:220]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_GET 2014-09-19 18:54:36.561 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:36.566 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 40 2014-09-19 18:54:36.571 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:54:36.577 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 41 2014-09-19 18:54:36.582 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 18:54:36.588 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_ALARM 2014-09-19 18:54:36.593 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:188]- Creating new message for application command SENSOR_ALARM_GET for node 14 2014-09-19 18:54:36.600 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:36.606 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 42 2014-09-19 18:54:36.611 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:54:36.616 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_BINARY 2014-09-19 18:54:36.623 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:117]- NODE 14: Creating new message for application command SENSOR_BINARY_GET 2014-09-19 18:54:36.629 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:36.635 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 43 2014-09-19 18:54:36.640 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 5 2014-09-19 18:54:36.645 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:36.650 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:36.658 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 983ms/4309ms. 2014-09-19 18:54:36.662 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 4 2014-09-19 18:54:36.673 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 80 02 25 27 69 2014-09-19 18:54:36.682 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 80 02 25 27 69 2014-09-19 18:54:36.693 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:36.702 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:36.706 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:36.744 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 27 00 CE 2014-09-19 18:54:36.753 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 27 00 2014-09-19 18:54:36.756 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 39 2014-09-19 18:54:36.762 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:36.787 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 80 03 64 18 2014-09-19 18:54:36.800 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 80 03 64 2014-09-19 18:54:36.804 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:54:36.809 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class BATTERY (0x80) 2014-09-19 18:54:36.814 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 14: Received Battery Request 2014-09-19 18:54:36.819 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 14: Battery report value = 0x64 2014-09-19 18:54:36.826 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:36.831 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:36.836 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = BATTERY, value = 100 2014-09-19 18:54:36.842 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = BATTERY, value = 100, ignoring. 2014-09-19 18:54:36.848 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:54:36.854 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:36.859 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:36.865 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 179ms/4309ms. 2014-09-19 18:54:36.871 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:54:36.890 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0E 03 31 04 01 25 28 D2 2014-09-19 18:54:36.905 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0E 03 31 04 01 25 28 D2 2014-09-19 18:54:36.920 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:36.940 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:36.944 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:36.973 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 28 00 C1 2014-09-19 18:54:36.984 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 28 00 2014-09-19 18:54:36.989 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 40 2014-09-19 18:54:36.994 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:37.963 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-19 18:54:38.865 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 14: No more messages, go back to sleep 2014-09-19 18:54:38.869 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 14: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 18:54:38.875 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:54:38.882 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 44 2014-09-19 18:54:38.887 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 18:54:41.932 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 18:54:41.941 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 18:54:41.948 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 18:54:41.971 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 14: Timeout while sending message. Requeueing 2014-09-19 18:54:41.976 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 18:54:41.982 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 18:54:41.987 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 18:54:41.993 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 18:54:41.998 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 18:54:42.010 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:54:42.017 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 18:54:42.027 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:54:42.043 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 84 08 25 2C 6C 2014-09-19 18:54:42.051 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 84 08 25 2C 6C 2014-09-19 18:54:42.072 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:54:42.102 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:54:42.119 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:54:42.150 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2C 00 C5 2014-09-19 18:54:42.205 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2C 00 2014-09-19 18:54:42.221 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 44 2014-09-19 18:54:42.232 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:54:42.241 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:54:42.249 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:54:42.259 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 14: Went to sleep 2014-09-19 18:54:42.269 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 210ms/4309ms. 2014-09-19 18:55:21.695 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 03 02 84 07 71 2014-09-19 18:55:21.711 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 02 84 07 2014-09-19 18:55:21.715 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Ping Node) 2014-09-19 18:55:21.720 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class WAKE_UP (0x84) 2014-09-19 18:55:21.724 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 3: Received Wake Up Request 2014-09-19 18:55:21.728 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 3: is awake 2014-09-19 18:55:21.732 INFO o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:187]- NODE 3: Got Wake Up Notification from node, continuing initialization. 2014-09-19 18:55:21.737 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Wake Up, requested = Node Information 2014-09-19 18:55:21.744 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:55:21.752 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 3: Found dynamic state command class BATTERY 2014-09-19 18:55:21.758 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 3: Creating new message for application command BATTERY_GET 2014-09-19 18:55:21.772 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:21.782 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 3: Putting message in wakeup queue. 2014-09-19 18:55:21.790 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 3: Found dynamic state command class SENSOR_BINARY 2014-09-19 18:55:21.798 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:117]- NODE 3: Creating new message for application command SENSOR_BINARY_GET 2014-09-19 18:55:21.805 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:21.810 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 3: Putting message in wakeup queue. 2014-09-19 18:55:21.818 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:21.824 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:21.830 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 3: Is awake with 2 messages in the wake-up queue. 2014-09-19 18:55:21.840 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 45 2014-09-19 18:55:21.849 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:21.853 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:55:21.869 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 03 02 80 02 25 2D 6E 2014-09-19 18:55:21.882 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 03 02 80 02 25 2D 6E 2014-09-19 18:55:21.893 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:21.903 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:21.908 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:21.945 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2D 00 C4 2014-09-19 18:55:21.954 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2D 00 2014-09-19 18:55:21.958 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 45 2014-09-19 18:55:21.963 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:21.987 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 03 03 80 03 64 15 2014-09-19 18:55:22.000 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 03 80 03 64 2014-09-19 18:55:22.003 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:55:22.009 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class BATTERY (0x80) 2014-09-19 18:55:22.014 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 3: Received Battery Request 2014-09-19 18:55:22.018 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 3: Battery report value = 0x64 2014-09-19 18:55:22.024 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:22.030 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:22.035 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 3, endpoint = 1, command class = BATTERY, value = 100 2014-09-19 18:55:22.056 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:55:22.062 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:22.069 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:22.075 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 46 2014-09-19 18:55:22.080 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:55:22.086 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 200ms/4309ms. 2014-09-19 18:55:22.093 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:22.103 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 03 02 30 02 25 2E DD 2014-09-19 18:55:22.112 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 03 02 30 02 25 2E DD 2014-09-19 18:55:22.123 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:22.133 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:22.137 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:22.174 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2E 00 C7 2014-09-19 18:55:22.185 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2E 00 2014-09-19 18:55:22.188 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 46 2014-09-19 18:55:22.193 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:22.217 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 03 03 30 03 00 C1 2014-09-19 18:55:22.234 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 03 30 03 00 2014-09-19 18:55:22.251 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Frequently Changed Information) 2014-09-19 18:55:22.257 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class SENSOR_BINARY (0x30) 2014-09-19 18:55:22.263 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 3: Received Sensor Binary Request (v1) 2014-09-19 18:55:22.279 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 3: Sensor Binary report, type=Unknown, value=0x00 2014-09-19 18:55:22.285 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:22.291 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:22.297 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 3, endpoint = 1, command class = SENSOR_BINARY, value = 0 2014-09-19 18:55:22.313 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 18:55:22.321 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 3: Serializing to file etc/zwave/1.6/node3.xml 2014-09-19 18:55:22.391 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 3: Initialisation complete. 2014-09-19 18:55:22.395 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:22.401 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:22.408 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 293ms/4309ms. 2014-09-19 18:55:24.408 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 3: No more messages, go back to sleep 2014-09-19 18:55:24.414 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 3: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 18:55:24.422 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:24.427 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 47 2014-09-19 18:55:24.433 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:24.438 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:55:24.449 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 03 02 84 08 25 2F 62 2014-09-19 18:55:24.457 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 03 02 84 08 25 2F 62 2014-09-19 18:55:24.468 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:24.483 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:24.488 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:24.520 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2F 00 C6 2014-09-19 18:55:24.559 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2F 00 2014-09-19 18:55:24.568 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 47 2014-09-19 18:55:24.577 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:24.586 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:24.595 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:24.605 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 3: Went to sleep 2014-09-19 18:55:24.614 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 153ms/4309ms. 2014-09-19 18:55:42.935 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 18:55:42.963 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 18:55:42.970 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:55:42.980 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 18:55:42.985 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 18:55:42.989 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 18:55:43.000 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.009 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.015 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 18:55:43.037 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-19 18:55:43.053 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-19 18:55:43.057 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:55:43.062 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:55:43.067 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:55:43.072 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 18:55:43.077 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-19 18:55:43.082 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 18:55:43.087 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-19 18:55:43.091 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.096 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.101 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-19 18:55:43.209 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-19 18:55:43.234 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-19 18:55:43.243 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:55:43.250 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:55:43.258 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-19 18:55:43.271 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-19 18:55:43.276 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:55:43.289 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 18:55:43.297 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-19 18:55:43.337 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-19 18:55:43.344 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:55:43.355 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-19 18:55:43.371 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-19 18:55:43.380 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-19 18:55:43.389 INFO o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:187]- NODE 13: Got Wake Up Notification from node, continuing initialization. 2014-09-19 18:55:43.399 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Wake Up, requested = Node Information 2014-09-19 18:55:43.411 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = RequestNodeInfo (0x60), type = Request (0x00) 2014-09-19 18:55:43.420 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:43.426 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:55:43.436 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.433 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 0D 96 2014-09-19 18:55:43.452 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.454 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 0D 96 2014-09-19 18:55:43.465 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 0 messages in the wake-up queue. 2014-09-19 18:55:43.490 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 60 01 9B 2014-09-19 18:55:43.528 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = RequestNodeInfo (0x60), type = Response (0x01), payload = 01 2014-09-19 18:55:43.544 DEBUG o.o.b.z.i.p.s.RequestNodeInfoMessageClass[:38]- Request node info successfully placed on stack. 2014-09-19 18:55:43.579 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 16 00 49 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 18 2014-09-19 18:55:43.646 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 2014-09-19 18:55:43.656 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 13: Application update request, node information received. 2014-09-19 18:55:43.667 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:58]- NODE 13: Application update request, requesting node state. 2014-09-19 18:55:43.678 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class BATTERY 2014-09-19 18:55:43.685 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-19 18:55:43.694 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:43.706 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 48 2014-09-19 18:55:43.710 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 18:55:43.715 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-19 18:55:43.719 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-19 18:55:43.723 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:43.727 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 49 2014-09-19 18:55:43.731 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 18:55:43.735 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.741 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.745 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 0 messages in the wake-up queue. 2014-09-19 18:55:43.749 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.752 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.757 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 288ms/4309ms. 2014-09-19 18:55:43.760 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 18:55:43.767 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 30 7D 2014-09-19 18:55:43.773 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 30 7D 2014-09-19 18:55:43.784 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:43.792 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:43.795 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:43.818 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 30 00 D9 2014-09-19 18:55:43.826 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 30 00 2014-09-19 18:55:43.830 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 48 2014-09-19 18:55:43.834 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:43.858 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 18:55:43.868 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 18:55:43.872 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:55:43.876 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 18:55:43.879 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 18:55:43.882 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 18:55:43.885 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.888 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.891 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 18:55:43.902 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:43.913 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:43.925 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 148ms/4309ms. 2014-09-19 18:55:43.929 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:43.940 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 31 BC 2014-09-19 18:55:43.952 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 31 BC 2014-09-19 18:55:43.962 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:43.973 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:43.992 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:44.000 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 31 00 D8 2014-09-19 18:55:44.009 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 31 00 2014-09-19 18:55:44.013 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 49 2014-09-19 18:55:44.017 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:44.022 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:44.026 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:44.033 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 77ms/4309ms. 2014-09-19 18:55:44.042 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-19 18:55:44.055 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-19 18:55:44.059 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 18:55:44.063 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 18:55:44.068 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 18:55:44.074 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 18:55:44.079 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-19 18:55:44.085 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 18:55:44.090 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-19 18:55:44.093 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:44.097 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:44.101 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-19 18:55:46.033 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-19 18:55:46.039 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 18:55:46.059 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:46.076 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 50 2014-09-19 18:55:46.089 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:46.094 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:55:46.108 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 32 71 2014-09-19 18:55:46.117 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 32 71 2014-09-19 18:55:46.131 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:46.151 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:46.157 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:46.165 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 32 00 DB 2014-09-19 18:55:46.176 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 32 00 2014-09-19 18:55:46.180 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 50 2014-09-19 18:55:46.185 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:46.192 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:46.197 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:46.203 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-19 18:55:46.210 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 87ms/4309ms. 2014-09-19 18:55:52.972 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 10: Sending periodic PING. 2014-09-19 18:55:52.980 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-19 18:55:52.999 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 18:55:53.015 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 51 2014-09-19 18:55:53.027 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:55:53.032 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 18:55:53.047 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 33 F9 2014-09-19 18:55:53.063 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 33 F9 2014-09-19 18:55:53.078 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 18:55:53.095 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 18:55:53.099 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 18:55:53.113 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 33 00 DA 2014-09-19 18:55:53.133 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 33 00 2014-09-19 18:55:53.139 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 51 2014-09-19 18:55:53.147 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:55:53.151 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 18:55:53.156 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 18:55:53.164 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 94ms/4309ms.

cdjackson commented 10 years ago

Firstly, just to note that I’m really only looking at the issue of the wakeup class since I made some large changed to it a little while back to make sure that all messages get sent while a node is awake, and it seems that this is working….

I assume that node 13 is the one we’re talking about? If so, I look at the following wakeup. Before this, a number of messages are queued while the device is asleep. At the point below, the binding receives the wakeup message -:

(I’ve removed some messages to make it easer to read)

Here the device wakes up. The 4 messages are waiting in the queue

2014-09-19 18:50:50.358 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-19 18:50:50.389 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 4 messages in the wake-up queue.

The first message is sent, and an ack received from the device...

2014-09-19 18:50:50.401 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:50.713 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00)

Next message all ok...

2014-09-19 18:50:50.785 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:50.959 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00)

And the next...

2014-09-19 18:50:50.998 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:51.112 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00)

And the last one - all ok...

2014-09-19 18:50:51.136 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 18:50:51.287 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00)

There’s now the 2 second wait that I mentioned - the binding waits to make sure there’s nothing else that comes through the protocol stack to send to the device. In this case, there’s nothing new, so the binding tells the device to go back to sleep...

2014-09-19 18:50:53.301 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-19 18:50:53.315 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 18:50:53.481 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 18:50:53.520 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep

This all looks good. I believe that the fact that an ACK was received here means that the device was still awake when the “go to sleep” command was sent.

So, from a wakeup command class perspective, this all looks like it’s working fine - there’s nothing waiting in the queue when the device goes to sleep. There are no further transactions for a few minutes after this….

If you think that I’v analysed part of the log that’s not got the problem, please let me know, but from the look through the log, it looks similar in other areas...

Thomas38 commented 10 years ago

But why is the value which is set during the above cycle is overwritten with the old value ? I set it to 21.0, and it is reset to 19.0. What I have learned here is that a write goes before read. What happens is, that the item is updated with the old value, then the new value is written to the device and the item keeps the old value until the next wakeup.

cdjackson commented 10 years ago

The only report from the device is at the start of the wakeup period - ie just before the log that I pasted above. This is I think normal - the temperature is normally sent by devices before the wakeup report. This is a report from the device to say that the temperature is 19. There is no update from the sensor after this, so it is not reporting any new temperature after this.

So, this all looks fine - however there probably ought to be a GET sent after the SET since the device doesn't automatically update the temperature until the next wakeup period (unless there's a way to change this within the device config?).

Thomas38 commented 10 years ago

I understand, The device config is quite restricted, there is no way to tell the device to report back changed values (nevertheless setting the temperature direct at the device buttons works that way).

I went back to set up a report_interval with a time a little bit less then wake up. So I'm sure that there is a request in the queue which will be processed during the next wakeup cycle and reports back the (just set) current value.

Thank you for your explanations !

cdjackson commented 10 years ago

I'm not 100% sure this will help... Firstly, there will be no synchronisation between the wakeup and report. refresh interval is timed from the time the binding starts, where the wakeup is timed by the device. The next issue is if the refresh request gets into the queue before the SET, then you have the same problem - the REPORT request will be sent before the SET, and you still don't get an update after the SET. I'll see if there's a better alternative...

cdjackson commented 10 years ago

Please try the latest version on the HABmin website - this should request an update after a SET, so it should solve the problem. However, I can't test it as I don't have a thermostat.

Thomas38 commented 10 years ago

Does not work for me...

cdjackson commented 10 years ago

Logs please?

Thomas38 commented 10 years ago

After the first wakeup I changed the temp from 20.0 to 18.0, again it was set back to 20.0 during the second wakeup:

2014-09-19 23:47:05.989 DEBUG o.o.b.z.i.ZWaveActivator[:36]- Z-Wave binding has been started. 2014-09-19 23:47:06.693 INFO o.o.b.z.i.ZWaveActiveBinding[:301]- Update config, port = /dev/ttyAMA0 2014-09-19 23:47:06.736 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 23:47:07.505 INFO o.o.b.z.i.p.ZWaveController[:136]- Starting Z-Wave controller 2014-09-19 23:47:07.541 INFO o.o.b.z.i.p.ZWaveController[:141]- Z-Wave timeout is set to 5000ms. 2014-09-19 23:47:07.548 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-19 23:47:08.332 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-19 23:47:08.401 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-19 23:47:08.404 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-19 23:47:10.917 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetVersion (0x15), type = Request (0x00) 2014-09-19 23:47:10.953 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:47:10.960 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:47:11.021 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 15 E9 2014-09-19 23:47:11.041 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = MemoryGetId (0x20), type = Request (0x00) 2014-09-19 23:47:11.071 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:47:11.076 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 15 E9 2014-09-19 23:47:11.160 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetCapabilities (0x07), type = Request (0x00) 2014-09-19 23:47:11.194 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 23:47:11.222 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 10 01 15 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 93 2014-09-19 23:47:11.263 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:30]- Get SUC NodeID 2014-09-19 23:47:11.303 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetSucNodeId (0x56), type = Request (0x00) 2014-09-19 23:47:11.325 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 23:47:11.589 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetVersion (0x15), type = Response (0x01), payload = 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 2014-09-19 23:47:11.826 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 23:47:12.541 DEBUG o.o.b.z.i.p.s.GetVersionMessageClass[:39]- Got MessageGetVersion response. Version = Z-Wave 3.42, Library Type = 0x01 2014-09-19 23:47:12.584 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:12.628 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:12.765 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1656ms/1656ms. 2014-09-19 23:47:12.778 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 23:47:12.821 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 20 DC 2014-09-19 23:47:12.862 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 20 DC 2014-09-19 23:47:12.922 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 01 20 CA 45 9E 37 01 F1 2014-09-19 23:47:13.070 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = MemoryGetId (0x20), type = Response (0x01), payload = CA 45 9E 37 01 2014-09-19 23:47:13.111 DEBUG o.o.b.z.i.p.s.MemoryGetIdMessageClass[:41]- Got MessageMemoryGetId response. Home id = 0xCA459E37, Controller Node id = 1 2014-09-19 23:47:13.129 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:13.149 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:13.178 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 296ms/1656ms. 2014-09-19 23:47:13.182 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 23:47:13.225 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 07 FB 2014-09-19 23:47:13.264 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 07 FB 2014-09-19 23:47:13.564 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 2B 01 07 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 7C 2014-09-19 23:47:14.258 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetCapabilities (0x07), type = Response (0x01), payload = 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 2014-09-19 23:47:14.296 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:45]- API Version = 4.2 2014-09-19 23:47:14.314 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:46]- Manufacture ID = 0x147 2014-09-19 23:47:14.334 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:47]- Device Type = 0x2 2014-09-19 23:47:14.349 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:48]- Device ID = 0x3 2014-09-19 23:47:14.365 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetInitData 2014-09-19 23:47:14.382 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiApplicationNodeInfo 2014-09-19 23:47:14.399 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationCommandHandler 2014-09-19 23:47:14.415 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetControllerCapabilities 2014-09-19 23:47:14.429 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSetTimeouts 2014-09-19 23:47:14.444 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetCapabilities 2014-09-19 23:47:14.461 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSoftReset 2014-09-19 23:47:14.477 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendNodeInfo 2014-09-19 23:47:14.493 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendData 2014-09-19 23:47:14.508 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetVersion 2014-09-19 23:47:14.522 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: MemoryGetId 2014-09-19 23:47:14.546 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReadMemory 2014-09-19 23:47:14.573 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: WriteMemory 2014-09-19 23:47:14.596 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IdentifyNode 2014-09-19 23:47:14.611 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetDefault 2014-09-19 23:47:14.632 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignReturnRoute 2014-09-19 23:47:14.650 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteReturnRoute 2014-09-19 23:47:14.666 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeNeighborUpdate 2014-09-19 23:47:14.690 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationUpdate 2014-09-19 23:47:14.725 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AddNodeToNetwork 2014-09-19 23:47:14.743 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveNodeFromNetwork 2014-09-19 23:47:14.785 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ControllerChange 2014-09-19 23:47:14.818 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetLearnMode 2014-09-19 23:47:14.850 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignSucReturnRoute 2014-09-19 23:47:14.906 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNetworkUpdate 2014-09-19 23:47:14.919 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetSucNodeID 2014-09-19 23:47:14.946 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteSUCReturnRoute 2014-09-19 23:47:14.974 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetSucNodeId 2014-09-19 23:47:15.006 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendSucId 2014-09-19 23:47:15.026 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeInfo 2014-09-19 23:47:15.073 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveFailedNodeID 2014-09-19 23:47:15.083 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IsFailedNodeID 2014-09-19 23:47:15.096 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReplaceFailedNode 2014-09-19 23:47:15.115 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetRoutingInfo 2014-09-19 23:47:15.139 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xd2 2014-09-19 23:47:15.154 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf0 2014-09-19 23:47:15.172 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf1 2014-09-19 23:47:15.195 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf2 2014-09-19 23:47:15.217 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf3 2014-09-19 23:47:15.240 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:15.257 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:15.276 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1970ms/1970ms. 2014-09-19 23:47:15.280 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:47:15.312 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetInitData (0x02), type = Request (0x00) 2014-09-19 23:47:15.330 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:47:15.319 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 56 AA 2014-09-19 23:47:15.373 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 56 AA 2014-09-19 23:47:15.410 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 56 00 AC 2014-09-19 23:47:15.466 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetSucNodeId (0x56), type = Response (0x01), payload = 00 2014-09-19 23:47:15.481 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:41]- Got SUC NodeID response. 2014-09-19 23:47:15.501 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:47]- No SUC Node is set 2014-09-19 23:47:15.515 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:15.531 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:15.550 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 159ms/1970ms. 2014-09-19 23:47:15.555 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:47:15.585 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetControllerCapabilities (0x05), type = Request (0x00) 2014-09-19 23:47:15.607 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:47:15.603 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 02 FE 2014-09-19 23:47:15.648 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 02 FE 2014-09-19 23:47:15.888 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 25 01 02 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 9A 2014-09-19 23:47:16.324 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetInitData (0x02), type = Response (0x01), payload = 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 2014-09-19 23:47:16.349 DEBUG o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:39]- Got MessageSerialApiGetInitData response. 2014-09-19 23:47:16.369 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 1: Node found 2014-09-19 23:47:16.389 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 2: Node found 2014-09-19 23:47:16.406 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 3: Node found 2014-09-19 23:47:16.427 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 6: Node found 2014-09-19 23:47:16.449 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 7: Node found 2014-09-19 23:47:16.456 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 10: Node found 2014-09-19 23:47:16.484 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 11: Node found 2014-09-19 23:47:16.496 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 12: Node found 2014-09-19 23:47:16.518 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 13: Node found 2014-09-19 23:47:16.537 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 14: Node found 2014-09-19 23:47:16.581 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:65]- ZWave Controller using Controller API 2014-09-19 23:47:16.603 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:66]- ZWave Controller is Primary Controller 2014-09-19 23:47:16.628 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:67]- ------------Number of Nodes Found Registered to ZWave Controller------------ 2014-09-19 23:47:16.652 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:68]- # Nodes = 10 2014-09-19 23:47:16.680 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:69]- ---------------------------------------------------------------------------- 2014-09-19 23:47:16.701 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:16.716 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:16.738 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1073ms/1970ms. 2014-09-19 23:47:16.741 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:47:16.788 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-19 23:47:16.822 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-19 23:47:16.836 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 23:47:21.841 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 23:47:21.850 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 255: Timeout while sending message. Requeueing 2014-09-19 23:47:21.871 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:47:21.908 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:47:21.942 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-19 23:47:21.985 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-19 23:47:26.856 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 23:47:27.011 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 255: Timeout while sending message. Requeueing 2014-09-19 23:47:27.015 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:47:27.033 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:47:27.067 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-19 23:47:27.097 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-19 23:47:30.524 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:30.569 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 1: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:30.618 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:47:30.636 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:30.647 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:30.684 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-19 23:47:30.711 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:30.734 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:30.744 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-19 23:47:30.791 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 6: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:30.804 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 6: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:30.841 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-19 23:47:30.876 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:30.893 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:30.931 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 5 2014-09-19 23:47:30.968 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:30.993 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:31.021 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-19 23:47:31.040 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:31.120 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:31.140 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-19 23:47:31.180 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:31.189 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:31.204 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:31.240 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:31.266 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:31.301 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 23:47:31.322 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-19 23:47:31.356 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-19 23:47:31.381 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-19 23:47:31.405 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:31.504 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:31.513 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:31.544 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:31.552 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:31.581 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:31.585 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:31.605 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:31.631 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:31.654 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 4519ms/4519ms. 2014-09-19 23:47:31.658 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-19 23:47:31.693 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 01 BB 2014-09-19 23:47:31.706 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:31.733 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 01 BB 2014-09-19 23:47:31.759 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:31.818 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:31.841 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:31.862 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:31.881 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:31.894 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:31.908 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-19 23:47:31.944 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:32.019 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:32.001 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Protocol Information since Fri Sep 19 23:47:30 CEST 2014 2014-09-19 23:47:32.091 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:32.100 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Protocol Information since Fri Sep 19 23:47:30 CEST 2014 2014-09-19 23:47:32.122 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Protocol Information since Fri Sep 19 23:47:30 CEST 2014 2014-09-19 23:47:32.114 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:32.151 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:32.186 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:32.185 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Fri Sep 19 23:47:30 CEST 2014 2014-09-19 23:47:32.226 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Protocol Information since Fri Sep 19 23:47:30 CEST 2014 2014-09-19 23:47:32.227 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:32.257 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:32.266 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Protocol Information since Fri Sep 19 23:47:30 CEST 2014 2014-09-19 23:47:32.326 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Protocol Information since Fri Sep 19 23:47:31 CEST 2014 2014-09-19 23:47:32.333 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Protocol Information since Fri Sep 19 23:47:31 CEST 2014 2014-09-19 23:47:32.368 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Protocol Information since Fri Sep 19 23:47:31 CEST 2014 2014-09-19 23:47:32.356 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:32.394 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:32.413 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:32.397 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Protocol Information since Fri Sep 19 23:47:31 CEST 2014 2014-09-19 23:47:32.445 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:32.447 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:32.491 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:32.469 DEBUG o.o.b.z.i.ZWaveActiveBinding[:374]- ZWaveIncomingEvent Called, Network Event, Init Done. Setting ZWave Network Ready. 2014-09-19 23:47:32.526 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PostboxBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:32.511 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:32.589 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PostboxBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:32.600 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Garage, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 23:47:32.596 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:32.637 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Garage, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 23:47:32.667 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Thermo, command class name = thermostat_setpoint, using 0 refresh interval. 2014-09-19 23:47:32.681 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Thermo, command class name = thermostat_setpoint, using 0 refresh interval. 2014-09-19 23:47:32.711 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:32.680 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:32.735 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:32.741 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:32.748 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:32.749 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = EnergyZW1, command class name = meter, using 0 refresh interval. 2014-09-19 23:47:32.775 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = EnergyZW1, command class name = meter, using 0 refresh interval. 2014-09-19 23:47:32.775 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:32.814 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:32.816 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ApartmentDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 23:47:32.832 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ApartmentDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 23:47:32.820 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:32.860 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PowerZW1, command class name = switch_binary, using 0 refresh interval. 2014-09-19 23:47:32.879 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PowerZW1, command class name = switch_binary, using 0 refresh interval. 2014-09-19 23:47:32.891 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:32.916 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Postbox, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 23:47:32.951 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Postbox, command class name = sensor_binary, using 0 refresh interval. 2014-09-19 23:47:32.977 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = GarageBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:32.984 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = GarageBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:32.988 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:33.018 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:33.058 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:33.008 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ThermoBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:33.076 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ThermoBat, command class name = battery, using 0 refresh interval. 2014-09-19 23:47:33.077 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:33.091 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:33.091 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = FrontDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 23:47:33.133 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = FrontDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-19 23:47:33.135 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:33.153 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:610]- Network initialised - starting network monitor. 2014-09-19 23:47:33.167 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:33.272 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:33.311 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:33.321 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:33.341 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:33.354 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:33.371 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:33.386 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:33.438 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:33.501 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:33.510 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:33.548 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:33.552 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:33.579 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:33.624 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:33.703 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:33.731 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:33.741 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:33.749 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:33.773 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:33.793 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:33.842 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:33.888 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:33.957 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:33.961 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:34.011 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:34.018 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:34.032 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:34.081 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:34.143 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:34.166 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:34.173 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:34.196 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:34.216 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:34.241 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:34.270 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-19 23:47:34.309 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-19 23:47:34.355 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-19 23:47:34.381 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-19 23:47:34.396 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-19 23:47:34.417 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-19 23:47:34.432 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-19 23:47:34.654 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 93 16 00 02 02 01 32 2014-09-19 23:47:34.865 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 93 16 00 02 02 01 2014-09-19 23:47:34.888 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 1: ProtocolInfo 2014-09-19 23:47:34.913 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 1: Listening = true 2014-09-19 23:47:34.936 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 1: Routing = false 2014-09-19 23:47:34.966 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 1: Version = 4 2014-09-19 23:47:34.986 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 1: fLIRS = false 2014-09-19 23:47:35.044 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 1: Basic = Static Controller 0x02 2014-09-19 23:47:35.085 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 1: Generic = Static Controller 0x02 2014-09-19 23:47:35.131 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 1: Specific = PC Controller 0x01 2014-09-19 23:47:35.168 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml 2014-09-19 23:47:35.198 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:127]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml failed, file does not exist. 2014-09-19 23:47:35.240 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-19 23:47:35.294 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:35.326 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-19 23:47:35.378 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:35.413 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:35.450 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:98]- NODE 1: Initialisation complete. 2014-09-19 23:47:35.475 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:35.503 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:35.524 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 3733ms/4519ms. 2014-09-19 23:47:35.529 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 23:47:35.583 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 02 B8 2014-09-19 23:47:35.632 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 02 B8 2014-09-19 23:47:35.709 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-19 23:47:35.902 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-19 23:47:35.927 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 2: ProtocolInfo 2014-09-19 23:47:35.981 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 2: Listening = false 2014-09-19 23:47:35.987 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 2: Routing = true 2014-09-19 23:47:36.021 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 2: Version = 4 2014-09-19 23:47:36.027 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 2: fLIRS = false 2014-09-19 23:47:36.058 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 2: Basic = Routing Slave 0x04 2014-09-19 23:47:36.081 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 2: Generic = Binary Sensor 0x20 2014-09-19 23:47:36.092 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 2: Specific = Routing Binary Sensor 0x01 2014-09-19 23:47:36.122 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 2: Deserializing from file etc/zwave/1.6/node2.xml 2014-09-19 23:47:38.183 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-19 23:47:38.937 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-19 23:47:38.969 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BATTERY to the list of supported command classes. 2014-09-19 23:47:39.003 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:39.031 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:39.052 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:39.065 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:39.085 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 23:47:39.112 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:39.125 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 2: Restored from config. 2014-09-19 23:47:39.146 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:39.169 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 2: Creating new message for application command No Operation 2014-09-19 23:47:39.206 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:39.226 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 2 2014-09-19 23:47:39.241 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 23:47:39.277 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:39.291 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:39.318 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 3655ms/4519ms. 2014-09-19 23:47:39.321 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 23:47:39.363 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 03 B9 2014-09-19 23:47:39.404 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 03 B9 2014-09-19 23:47:39.390 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 30 03 FF 33 2014-09-19 23:47:39.494 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 30 03 FF 2014-09-19 23:47:39.563 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Protocol Information) 2014-09-19 23:47:39.576 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_BINARY (0x30) 2014-09-19 23:47:39.650 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 14: Command class SENSOR_BINARY (0x30) not found, trying to add it. 2014-09-19 23:47:39.665 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x30 2014-09-19 23:47:39.673 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:67]- NODE 14: Adding command class SENSOR_BINARY (0x30) 2014-09-19 23:47:39.684 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-19 23:47:39.723 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 14: Received Sensor Binary Request (v0) 2014-09-19 23:47:39.736 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 14: Sensor Binary report, type=Unknown, value=0xFF 2014-09-19 23:47:39.773 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:39.791 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:39.812 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255 2014-09-19 23:47:39.825 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255, ignoring. 2014-09-19 23:47:39.842 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Node Complete 2014-09-19 23:47:39.885 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 30 03 FF 33 2014-09-19 23:47:39.983 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 30 03 FF 2014-09-19 23:47:39.999 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Protocol Information) 2014-09-19 23:47:40.027 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_BINARY (0x30) 2014-09-19 23:47:40.041 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 14: Received Sensor Binary Request (v0) 2014-09-19 23:47:40.056 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 14: Sensor Binary report, type=Unknown, value=0xFF 2014-09-19 23:47:40.075 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:40.096 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:40.102 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255 2014-09-19 23:47:40.118 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255, ignoring. 2014-09-19 23:47:40.132 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Node Complete 2014-09-19 23:47:40.189 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 30 03 FF 33 2014-09-19 23:47:40.326 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 30 03 FF 2014-09-19 23:47:40.352 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Protocol Information) 2014-09-19 23:47:40.368 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_BINARY (0x30) 2014-09-19 23:47:40.391 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 14: Received Sensor Binary Request (v0) 2014-09-19 23:47:40.402 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 14: Sensor Binary report, type=Unknown, value=0xFF 2014-09-19 23:47:40.421 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:40.431 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:40.449 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255 2014-09-19 23:47:40.473 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255, ignoring. 2014-09-19 23:47:40.483 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Node Complete 2014-09-19 23:47:40.563 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 30 03 FF 33 2014-09-19 23:47:40.628 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 30 03 FF 2014-09-19 23:47:40.703 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Protocol Information) 2014-09-19 23:47:40.710 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_BINARY (0x30) 2014-09-19 23:47:40.723 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 14: Received Sensor Binary Request (v0) 2014-09-19 23:47:40.753 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 14: Sensor Binary report, type=Unknown, value=0xFF 2014-09-19 23:47:40.771 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:40.786 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:40.789 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255 2014-09-19 23:47:40.813 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 255, ignoring. 2014-09-19 23:47:40.835 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Node Complete 2014-09-19 23:47:40.859 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-19 23:47:40.990 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 23:47:40.996 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1569ms/4519ms. 2014-09-19 23:47:40.999 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 23:47:41.064 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 03 B9 2014-09-19 23:47:41.009 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 07 DF 2014-09-19 23:47:41.123 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 03 B9 2014-09-19 23:47:41.197 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 07 2014-09-19 23:47:41.234 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Protocol Information) 2014-09-19 23:47:41.260 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:47:41.302 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 12: Command class SWITCH_MULTILEVEL (0x26) not found, trying to add it. 2014-09-19 23:47:41.342 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x26 2014-09-19 23:47:41.364 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:67]- NODE 12: Adding command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:47:41.411 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class SWITCH_MULTILEVEL to the list of supported command classes. 2014-09-19 23:47:41.445 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:47:41.484 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x07 2014-09-19 23:47:41.491 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:41.531 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:41.535 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 7 2014-09-19 23:47:41.555 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 7, ignoring. 2014-09-19 23:47:41.575 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Protocol Information, requested = Node Complete 2014-09-19 23:47:41.681 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-19 23:47:41.865 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-19 23:47:41.899 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 3: ProtocolInfo 2014-09-19 23:47:41.935 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 3: Listening = false 2014-09-19 23:47:41.946 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 3: Routing = true 2014-09-19 23:47:41.966 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 3: Version = 4 2014-09-19 23:47:41.987 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 3: fLIRS = false 2014-09-19 23:47:42.022 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 3: Basic = Routing Slave 0x04 2014-09-19 23:47:42.050 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 3: Generic = Binary Sensor 0x20 2014-09-19 23:47:42.076 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 3: Specific = Routing Binary Sensor 0x01 2014-09-19 23:47:42.105 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 3: Deserializing from file etc/zwave/1.6/node3.xml 2014-09-19 23:47:43.156 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-19 23:47:43.195 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-19 23:47:43.192 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BATTERY to the list of supported command classes. 2014-09-19 23:47:43.243 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:43.264 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:43.292 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:43.314 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:43.352 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 23:47:43.382 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:43.407 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 3: Restored from config. 2014-09-19 23:47:43.465 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:43.523 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 3: Creating new message for application command No Operation 2014-09-19 23:47:43.546 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:43.573 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 3 2014-09-19 23:47:43.604 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 23:47:43.640 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:43.663 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:43.692 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2547ms/4519ms. 2014-09-19 23:47:43.696 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 23:47:43.802 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 06 BC 2014-09-19 23:47:43.839 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 06 BC 2014-09-19 23:47:43.869 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 0F 01 F3 2014-09-19 23:47:44.078 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 0F 01 2014-09-19 23:47:44.124 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 6: ProtocolInfo 2014-09-19 23:47:44.144 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 6: Listening = true 2014-09-19 23:47:44.174 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 6: Routing = true 2014-09-19 23:47:44.217 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 6: Version = 4 2014-09-19 23:47:44.246 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 6: fLIRS = false 2014-09-19 23:47:44.297 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 6: Basic = Routing Slave 0x04 2014-09-19 23:47:44.331 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 6: Generic = Repeater Slave 0x0f 2014-09-19 23:47:44.366 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 6: Specific = Basic Repeater Slave 0x01 2014-09-19 23:47:44.393 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 6: Deserializing from file etc/zwave/1.6/node6.xml 2014-09-19 23:47:48.201 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-19 23:47:48.831 WARN o.o.b.z.i.p.ZWaveController$WatchDogTimerTask[:1114]- Threads not alive, respawning 2014-09-19 23:47:48.844 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:944]- Stopped Z-Wave send thread 2014-09-19 23:47:48.869 INFO o.o.b.z.i.p.ZWaveController[:381]- Disconnected from serial port 2014-09-19 23:47:48.893 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-19 23:47:48.932 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-19 23:47:48.938 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-19 23:47:48.938 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-19 23:47:48.963 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:48.993 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 07 BD 2014-09-19 23:47:49.015 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 07 BD 2014-09-19 23:47:49.045 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-19 23:47:49.104 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-19 23:47:49.115 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 7: ProtocolInfo 2014-09-19 23:47:49.130 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 7: Listening = true 2014-09-19 23:47:49.143 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 7: Routing = true 2014-09-19 23:47:49.155 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 7: Version = 4 2014-09-19 23:47:49.167 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 7: fLIRS = false 2014-09-19 23:47:49.187 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 7: Basic = Routing Slave 0x04 2014-09-19 23:47:49.203 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 7: Generic = Binary Switch 0x10 2014-09-19 23:47:49.216 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 7: Specific = Binary Power Switch 0x01 2014-09-19 23:47:49.242 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 7: Deserializing from file etc/zwave/1.6/node7.xml 2014-09-19 23:47:50.007 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:50.033 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-19 23:47:50.055 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:50.079 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 23:47:50.099 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:50.119 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class METER to the list of supported command classes. 2014-09-19 23:47:50.155 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:50.180 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:50.200 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SCENE_ACTIVATION to the list of supported command classes. 2014-09-19 23:47:50.220 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 7: Restored from config. 2014-09-19 23:47:50.244 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:50.269 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-19 23:47:50.303 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:50.323 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 4 2014-09-19 23:47:50.350 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:50.368 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:50.401 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:50.429 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1404ms/4519ms. 2014-09-19 23:47:50.435 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:50.475 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0A B0 2014-09-19 23:47:50.508 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0A B0 2014-09-19 23:47:50.536 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-19 23:47:50.668 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-19 23:47:50.688 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 10: ProtocolInfo 2014-09-19 23:47:50.708 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 10: Listening = true 2014-09-19 23:47:50.731 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 10: Routing = true 2014-09-19 23:47:50.746 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 10: Version = 4 2014-09-19 23:47:50.763 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 10: fLIRS = false 2014-09-19 23:47:50.791 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 10: Basic = Routing Slave 0x04 2014-09-19 23:47:50.810 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 10: Generic = Binary Switch 0x10 2014-09-19 23:47:50.830 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 10: Specific = Binary Power Switch 0x01 2014-09-19 23:47:50.848 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 10: Deserializing from file etc/zwave/1.6/node10.xml 2014-09-19 23:47:51.796 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:51.822 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-19 23:47:51.843 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:51.861 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 23:47:51.884 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:51.917 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MULTI_INSTANCE to the list of supported command classes. 2014-09-19 23:47:51.939 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:51.965 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:51.988 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 10: Restored from config. 2014-09-19 23:47:52.010 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:52.035 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-19 23:47:52.071 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:52.095 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 5 2014-09-19 23:47:52.115 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:52.140 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:52.158 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:52.183 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1656ms/4519ms. 2014-09-19 23:47:52.187 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:52.233 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0B B1 2014-09-19 23:47:52.270 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0B B1 2014-09-19 23:47:52.333 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 12 02 6D 2014-09-19 23:47:52.463 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 12 02 2014-09-19 23:47:52.499 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 11: ProtocolInfo 2014-09-19 23:47:52.516 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 11: Listening = false 2014-09-19 23:47:52.535 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 11: Routing = true 2014-09-19 23:47:52.559 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 11: Version = 4 2014-09-19 23:47:52.578 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 11: fLIRS = false 2014-09-19 23:47:52.612 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 11: Basic = Routing Slave 0x04 2014-09-19 23:47:52.635 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 11: Generic = Remote Switch 0x12 2014-09-19 23:47:52.670 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 11: Specific = Multilevel Remote Switch 0x02 2014-09-19 23:47:52.698 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 11: Deserializing from file etc/zwave/1.6/node11.xml 2014-09-19 23:47:53.231 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 7 - deferring HEAL. 2014-09-19 23:47:53.444 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BATTERY to the list of supported command classes. 2014-09-19 23:47:53.452 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:53.472 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:53.487 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 23:47:53.507 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:53.523 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:53.541 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:53.561 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 23:47:53.579 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 11: Restored from config. 2014-09-19 23:47:53.595 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:53.618 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 11: Creating new message for application command No Operation 2014-09-19 23:47:53.638 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:53.657 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 6 2014-09-19 23:47:53.671 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:53.687 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:53.703 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:53.721 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1428ms/4519ms. 2014-09-19 23:47:53.725 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:53.755 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0C B6 2014-09-19 23:47:53.782 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0C B6 2014-09-19 23:47:53.815 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 11 01 ED 2014-09-19 23:47:53.955 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 11 01 2014-09-19 23:47:53.976 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 12: ProtocolInfo 2014-09-19 23:47:53.997 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 12: Listening = true 2014-09-19 23:47:54.018 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 12: Routing = true 2014-09-19 23:47:54.034 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 12: Version = 4 2014-09-19 23:47:54.053 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 12: fLIRS = false 2014-09-19 23:47:54.082 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 12: Basic = Routing Slave 0x04 2014-09-19 23:47:54.102 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 12: Generic = Multi-Level Switch 0x11 2014-09-19 23:47:54.125 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 12: Specific = Multilevel Power Switch 0x01 2014-09-19 23:47:54.151 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 12: Deserializing from file etc/zwave/1.6/node12.xml 2014-09-19 23:47:54.661 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:54.689 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:54.716 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 23:47:54.735 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:54.756 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:54.774 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:54.804 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 12: Restored from config. 2014-09-19 23:47:54.825 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:54.852 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 12: Creating new message for application command No Operation 2014-09-19 23:47:54.877 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:54.896 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 7 2014-09-19 23:47:54.917 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:54.937 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:54.955 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:54.978 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1171ms/4519ms. 2014-09-19 23:47:54.982 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:55.019 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0D B7 2014-09-19 23:47:55.054 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0D B7 2014-09-19 23:47:55.079 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 08 04 71 2014-09-19 23:47:55.200 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 08 04 2014-09-19 23:47:55.228 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 13: ProtocolInfo 2014-09-19 23:47:55.251 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 13: Listening = false 2014-09-19 23:47:55.271 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 13: Routing = true 2014-09-19 23:47:55.290 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 13: Version = 4 2014-09-19 23:47:55.311 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 13: fLIRS = false 2014-09-19 23:47:55.338 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 13: Basic = Routing Slave 0x04 2014-09-19 23:47:55.370 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 13: Generic = Thermostat 0x08 2014-09-19 23:47:55.391 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 13: Specific = Setpoint Thermostat 0x04 2014-09-19 23:47:55.410 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 13: Deserializing from file etc/zwave/1.6/node13.xml 2014-09-19 23:47:56.175 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BATTERY to the list of supported command classes. 2014-09-19 23:47:56.198 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:56.225 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:56.253 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:56.274 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class THERMOSTAT_SETPOINT to the list of supported command classes. 2014-09-19 23:47:56.335 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 23:47:56.367 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:56.385 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 13: Restored from config. 2014-09-19 23:47:56.410 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:56.438 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 13: Creating new message for application command No Operation 2014-09-19 23:47:56.462 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:56.479 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 8 2014-09-19 23:47:56.496 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:56.515 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:56.532 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:56.572 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1502ms/4519ms. 2014-09-19 23:47:56.577 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:56.609 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0E B4 2014-09-19 23:47:56.639 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0E B4 2014-09-19 23:47:56.667 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-19 23:47:56.774 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-19 23:47:56.793 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 14: ProtocolInfo 2014-09-19 23:47:56.814 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 14: Listening = false 2014-09-19 23:47:56.833 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 14: Routing = true 2014-09-19 23:47:56.847 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 14: Version = 4 2014-09-19 23:47:56.866 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 14: fLIRS = false 2014-09-19 23:47:56.900 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 14: Basic = Routing Slave 0x04 2014-09-19 23:47:56.918 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 14: Generic = Binary Sensor 0x20 2014-09-19 23:47:57.111 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 14: Specific = Routing Binary Sensor 0x01 2014-09-19 23:47:57.132 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 14: Deserializing from file etc/zwave/1.6/node14.xml 2014-09-19 23:47:58.143 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_ALARM to the list of supported command classes. 2014-09-19 23:47:58.183 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BATTERY to the list of supported command classes. 2014-09-19 23:47:58.231 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-19 23:47:58.241 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 7 - deferring HEAL. 2014-09-19 23:47:58.260 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-19 23:47:58.274 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-19 23:47:58.328 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class VERSION to the list of supported command classes. 2014-09-19 23:47:58.386 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BASIC to the list of supported command classes. 2014-09-19 23:47:58.419 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_MULTILEVEL to the list of supported command classes. 2014-09-19 23:47:58.452 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class WAKE_UP to the list of supported command classes. 2014-09-19 23:47:58.484 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-19 23:47:58.522 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 14: Restored from config. 2014-09-19 23:47:58.572 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-19 23:47:58.612 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 14: Creating new message for application command No Operation 2014-09-19 23:47:58.649 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:58.673 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 9 2014-09-19 23:47:58.690 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:58.709 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:58.728 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:58.749 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2090ms/4519ms. 2014-09-19 23:47:58.754 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:47:58.791 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 04 C3 2014-09-19 23:47:58.828 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 04 C3 2014-09-19 23:47:58.850 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:47:58.900 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:47:58.919 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:47:58.954 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 04 00 ED 2014-09-19 23:47:58.996 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 04 00 2014-09-19 23:47:59.051 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 4 2014-09-19 23:47:59.069 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:47:59.102 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Ping Node, requested = Node Information 2014-09-19 23:47:59.127 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:47:59.148 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class SWITCH_BINARY 2014-09-19 23:47:59.169 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 7 2014-09-19 23:47:59.189 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:59.211 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 10 2014-09-19 23:47:59.224 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:47:59.242 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class METER 2014-09-19 23:47:59.261 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 23:47:59.286 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:59.305 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 23:47:59.328 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:59.340 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 23:47:59.362 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:59.381 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-19 23:47:59.399 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:47:59.414 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 11 2014-09-19 23:47:59.431 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 23:47:59.444 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 12 2014-09-19 23:47:59.462 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-19 23:47:59.479 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 13 2014-09-19 23:47:59.495 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 11 2014-09-19 23:47:59.512 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 14 2014-09-19 23:47:59.527 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 12 2014-09-19 23:47:59.541 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:47:59.558 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:47:59.585 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 742ms/4519ms. 2014-09-19 23:47:59.589 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 11 2014-09-19 23:47:59.629 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 07 02 25 02 25 0A E8 2014-09-19 23:47:59.666 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 07 02 25 02 25 0A E8 2014-09-19 23:47:59.698 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:47:59.717 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:47:59.753 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:47:59.779 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0A 00 E3 2014-09-19 23:47:59.823 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0A 00 2014-09-19 23:47:59.830 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 10 2014-09-19 23:47:59.842 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:47:59.874 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 07 03 25 03 00 D0 2014-09-19 23:47:59.950 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 03 25 03 00 2014-09-19 23:47:59.965 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:47:59.988 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class SWITCH_BINARY (0x25) 2014-09-19 23:48:00.013 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 7 2014-09-19 23:48:00.032 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 7, value = 0x00 2014-09-19 23:48:00.055 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:00.072 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:00.091 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-19 23:48:00.185 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:00.229 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:00.259 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:00.296 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 606ms/4519ms. 2014-09-19 23:48:00.300 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 10 2014-09-19 23:48:00.354 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 28 25 0B D7 2014-09-19 23:48:00.407 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 28 25 0B D7 2014-09-19 23:48:00.435 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:00.492 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:00.518 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:00.553 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0B 00 E2 2014-09-19 23:48:00.606 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0B 00 2014-09-19 23:48:00.610 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 11 2014-09-19 23:48:00.632 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:00.703 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 6C 00 00 00 01 06 2014-09-19 23:48:00.850 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 6C 00 00 00 01 2014-09-19 23:48:00.880 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:00.903 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 23:48:00.934 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 23:48:00.954 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 23:48:00.979 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 23:48:01.007 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = A (0x05) 2014-09-19 23:48:01.044 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.001000) 2014-09-19 23:48:01.060 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:01.077 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:01.093 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.001 2014-09-19 23:48:01.120 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:01.138 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:01.154 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:01.172 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 747ms/4519ms. 2014-09-19 23:48:01.176 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-19 23:48:01.218 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 00 25 0C F8 2014-09-19 23:48:01.257 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 00 25 0C F8 2014-09-19 23:48:01.279 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:01.306 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:01.333 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:01.366 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0C 00 E5 2014-09-19 23:48:01.436 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0C 00 2014-09-19 23:48:01.439 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 12 2014-09-19 23:48:01.453 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:01.520 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 14 00 04 00 07 0E 32 02 21 64 00 00 00 0F 0E B2 00 00 00 0F 2F 2014-09-19 23:48:01.742 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 0E 32 02 21 64 00 00 00 0F 0E B2 00 00 00 0F 2014-09-19 23:48:01.750 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:01.773 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 23:48:01.791 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 23:48:01.826 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 23:48:01.856 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 23:48:01.879 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = kWh (0x00) 2014-09-19 23:48:01.920 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.015000) 2014-09-19 23:48:01.933 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:01.957 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:01.981 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.015 2014-09-19 23:48:02.013 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:02.032 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:02.049 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:02.069 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 798ms/4519ms. 2014-09-19 23:48:02.073 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 23:48:02.110 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 20 25 0D D9 2014-09-19 23:48:02.147 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 20 25 0D D9 2014-09-19 23:48:02.165 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:02.185 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:02.218 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:02.243 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0D 00 E4 2014-09-19 23:48:02.272 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0D 00 2014-09-19 23:48:02.291 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 13 2014-09-19 23:48:02.307 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:02.351 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 64 00 03 94 77 EF 2014-09-19 23:48:02.452 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 64 00 03 94 77 2014-09-19 23:48:02.468 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:02.504 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 23:48:02.526 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 23:48:02.542 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 23:48:02.558 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 23:48:02.571 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = V (0x04) 2014-09-19 23:48:02.594 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (234.615000) 2014-09-19 23:48:02.605 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:02.615 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:02.626 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 234.615 2014-09-19 23:48:02.644 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:02.657 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:02.667 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:02.683 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 526ms/4519ms. 2014-09-19 23:48:02.688 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:48:02.711 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 0E EA 2014-09-19 23:48:02.732 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 0E EA 2014-09-19 23:48:02.749 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:02.774 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:02.782 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:02.805 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0E 00 E7 2014-09-19 23:48:02.826 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0E 00 2014-09-19 23:48:02.837 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 14 2014-09-19 23:48:02.845 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:02.860 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-19 23:48:02.944 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-19 23:48:02.959 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:02.986 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-19 23:48:03.001 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-19 23:48:03.016 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-19 23:48:03.034 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-19 23:48:03.052 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-19 23:48:03.073 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-19 23:48:03.087 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:03.099 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:03.119 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-19 23:48:03.152 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:03.183 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 7: Serializing to file etc/zwave/1.6/node7.xml 2014-09-19 23:48:03.254 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 7 - deferring HEAL. 2014-09-19 23:48:03.704 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 7: Initialisation complete. 2014-09-19 23:48:03.708 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:03.733 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:03.758 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1016ms/4519ms. 2014-09-19 23:48:03.762 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-19 23:48:03.823 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 05 CF 2014-09-19 23:48:03.859 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 05 CF 2014-09-19 23:48:03.880 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:03.896 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:03.905 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:03.922 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 05 00 EC 2014-09-19 23:48:03.941 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 05 00 2014-09-19 23:48:03.951 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 5 2014-09-19 23:48:03.961 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:03.971 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Ping Node, requested = Node Information 2014-09-19 23:48:03.982 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:03.992 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-19 23:48:04.000 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-19 23:48:04.008 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:04.013 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 15 2014-09-19 23:48:04.019 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-19 23:48:04.027 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-19 23:48:04.032 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-19 23:48:04.039 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:04.045 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 1 2014-09-19 23:48:04.051 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 1 2014-09-19 23:48:04.061 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 16 2014-09-19 23:48:04.068 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-19 23:48:04.087 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-19 23:48:04.104 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-19 23:48:04.118 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:04.130 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 2 2014-09-19 23:48:04.139 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 2 2014-09-19 23:48:04.149 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 17 2014-09-19 23:48:04.158 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-19 23:48:04.167 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:04.175 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:04.185 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 312ms/4519ms. 2014-09-19 23:48:04.192 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-19 23:48:04.207 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0A 02 25 02 25 0F E0 2014-09-19 23:48:04.220 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0A 02 25 02 25 0F E0 2014-09-19 23:48:04.233 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:04.244 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:04.248 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:04.267 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0F 00 E6 2014-09-19 23:48:04.276 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0F 00 2014-09-19 23:48:04.284 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 15 2014-09-19 23:48:04.288 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:04.308 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0A 03 25 03 00 DD 2014-09-19 23:48:04.320 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 03 25 03 00 2014-09-19 23:48:04.326 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:04.331 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class SWITCH_BINARY (0x25) 2014-09-19 23:48:04.335 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-19 23:48:04.340 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-19 23:48:04.344 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:04.349 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:04.354 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-19 23:48:04.369 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:04.374 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:04.378 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:04.385 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 160ms/4519ms. 2014-09-19 23:48:04.390 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-19 23:48:04.401 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 10 92 2014-09-19 23:48:04.410 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 10 92 2014-09-19 23:48:04.422 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:04.439 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:04.443 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:04.458 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 10 00 F9 2014-09-19 23:48:04.492 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 10 00 2014-09-19 23:48:04.511 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 16 2014-09-19 23:48:04.521 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:04.561 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 01 01 25 03 00 B0 2014-09-19 23:48:04.612 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 01 01 25 03 00 2014-09-19 23:48:04.628 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:04.647 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-19 23:48:04.663 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-19 23:48:04.689 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-19 23:48:04.708 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 1, calling handleApplicationCommandRequest. 2014-09-19 23:48:04.724 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-19 23:48:04.743 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-19 23:48:04.754 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:04.770 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:04.787 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-19 23:48:04.819 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:04.849 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:04.859 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:04.877 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 463ms/4519ms. 2014-09-19 23:48:04.882 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-19 23:48:04.916 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 11 90 2014-09-19 23:48:04.965 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 11 90 2014-09-19 23:48:04.982 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:05.012 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:05.025 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:05.042 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 11 00 F8 2014-09-19 23:48:05.087 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 11 00 2014-09-19 23:48:05.091 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 17 2014-09-19 23:48:05.111 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:05.137 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 02 01 25 03 00 B3 2014-09-19 23:48:05.187 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 02 01 25 03 00 2014-09-19 23:48:05.191 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:05.199 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-19 23:48:05.207 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-19 23:48:05.217 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-19 23:48:05.227 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 2, calling handleApplicationCommandRequest. 2014-09-19 23:48:05.235 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-19 23:48:05.246 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-19 23:48:05.253 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:05.260 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:05.270 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 2, command class = SWITCH_BINARY, value = 0 2014-09-19 23:48:05.291 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:05.302 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 10: Serializing to file etc/zwave/1.6/node10.xml 2014-09-19 23:48:05.495 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 10: Initialisation complete. 2014-09-19 23:48:05.502 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:05.519 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:05.529 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 555ms/4519ms. 2014-09-19 23:48:05.533 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-19 23:48:05.547 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0C 01 00 25 07 CB 2014-09-19 23:48:05.557 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0C 01 00 25 07 CB 2014-09-19 23:48:05.583 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:05.596 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:05.600 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:05.617 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 07 00 EE 2014-09-19 23:48:05.628 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 07 00 2014-09-19 23:48:05.642 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 7 2014-09-19 23:48:05.646 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:05.657 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Ping Node, requested = Node Information 2014-09-19 23:48:05.674 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:05.689 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 12: Found dynamic state command class SWITCH_MULTILEVEL 2014-09-19 23:48:05.704 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:128]- Creating new message for application command SWITCH_MULTILEVEL_GET for node 12 2014-09-19 23:48:05.719 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:05.727 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 18 2014-09-19 23:48:05.743 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-19 23:48:05.756 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:05.766 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:05.780 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 218ms/4519ms. 2014-09-19 23:48:05.784 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-19 23:48:05.805 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0C 02 26 02 25 12 F8 2014-09-19 23:48:05.825 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0C 02 26 02 25 12 F8 2014-09-19 23:48:05.843 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:05.865 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:05.878 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:05.898 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 12 00 FB 2014-09-19 23:48:05.919 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 12 00 2014-09-19 23:48:05.931 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 18 2014-09-19 23:48:05.937 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:05.965 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 07 DF 2014-09-19 23:48:05.989 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 07 2014-09-19 23:48:06.001 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:06.011 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:48:06.020 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:48:06.029 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x07 2014-09-19 23:48:06.037 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:06.045 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:06.066 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 7 2014-09-19 23:48:06.075 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 7, ignoring. 2014-09-19 23:48:06.087 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:06.098 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 12: Serializing to file etc/zwave/1.6/node12.xml 2014-09-19 23:48:06.202 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 12: Initialisation complete. 2014-09-19 23:48:06.209 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:06.217 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:06.234 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 398ms/4519ms. 2014-09-19 23:48:06.238 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 4 2014-09-19 23:48:06.251 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 02 01 00 25 02 C0 2014-09-19 23:48:06.258 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 02 01 00 25 02 C0 2014-09-19 23:48:06.269 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:06.282 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:06.286 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:06.458 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 30 03 00 CC 2014-09-19 23:48:06.485 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 30 03 00 2014-09-19 23:48:06.498 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Ping Node) 2014-09-19 23:48:06.507 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_BINARY (0x30) 2014-09-19 23:48:06.515 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 14: Received Sensor Binary Request (v0) 2014-09-19 23:48:06.526 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 14: Sensor Binary report, type=Unknown, value=0x00 2014-09-19 23:48:06.536 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:06.544 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:06.559 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 0 2014-09-19 23:48:06.573 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 0, ignoring. 2014-09-19 23:48:06.586 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Ping Node, requested = Node Complete 2014-09-19 23:48:06.597 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:06.612 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_BINARY 2014-09-19 23:48:06.628 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:117]- NODE 14: Creating new message for application command SENSOR_BINARY_GET 2014-09-19 23:48:06.643 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:06.669 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 23:48:06.690 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_ALARM 2014-09-19 23:48:06.716 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:188]- Creating new message for application command SENSOR_ALARM_GET for node 14 2014-09-19 23:48:06.738 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:06.759 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 23:48:06.771 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class BATTERY 2014-09-19 23:48:06.789 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 14: Creating new message for application command BATTERY_GET 2014-09-19 23:48:06.809 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:06.826 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 23:48:06.843 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_MULTILEVEL 2014-09-19 23:48:06.872 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:220]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_GET 2014-09-19 23:48:06.908 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:06.923 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:220]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_GET 2014-09-19 23:48:06.944 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:06.961 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 23:48:06.982 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 23:48:08.258 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 4 - deferring HEAL. 2014-09-19 23:48:08.687 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-19 23:48:08.738 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-19 23:48:08.755 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Node Complete) 2014-09-19 23:48:08.791 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:48:08.805 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:48:08.809 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-19 23:48:08.831 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:08.843 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:08.859 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-19 23:48:08.869 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-19 23:48:08.907 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-19 23:48:08.938 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-19 23:48:08.956 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Node Complete) 2014-09-19 23:48:08.972 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:48:08.982 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:48:08.986 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-19 23:48:08.995 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:09.010 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:09.018 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-19 23:48:09.031 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-19 23:48:09.068 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-19 23:48:09.102 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-19 23:48:09.106 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Node Complete) 2014-09-19 23:48:09.111 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:48:09.120 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:48:09.128 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-19 23:48:09.143 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:09.148 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:09.152 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-19 23:48:09.159 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-19 23:48:09.179 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-19 23:48:09.202 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-19 23:48:09.206 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Node Complete) 2014-09-19 23:48:09.214 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:48:09.231 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:48:09.236 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-19 23:48:09.239 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:09.245 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:09.253 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-19 23:48:09.271 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-19 23:48:09.287 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-19 23:48:09.310 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-19 23:48:09.319 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Node Complete) 2014-09-19 23:48:09.330 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-19 23:48:09.340 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-19 23:48:09.350 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-19 23:48:09.359 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:09.367 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:09.375 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-19 23:48:09.385 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-19 23:48:11.283 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 23:48:11.297 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 23:48:11.307 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 23:48:11.331 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 2: Timeout while sending message. Requeueing 2014-09-19 23:48:11.337 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-19 23:48:11.354 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 03 01 00 25 03 C0 2014-09-19 23:48:11.378 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 03 01 00 25 03 C0 2014-09-19 23:48:11.397 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:11.418 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:11.425 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:13.266 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-19 23:48:13.426 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 02 01 EA 2014-09-19 23:48:13.442 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 02 01 2014-09-19 23:48:13.453 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 2 2014-09-19 23:48:13.457 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 23:48:13.464 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 23:48:15.903 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 03 01 EB 2014-09-19 23:48:15.918 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 03 01 2014-09-19 23:48:15.922 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 3 2014-09-19 23:48:15.928 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 23:48:15.934 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:15.939 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:15.946 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 4554ms/4554ms. 2014-09-19 23:48:15.950 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-19 23:48:15.959 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0B 01 00 25 06 CD 2014-09-19 23:48:15.989 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0B 01 00 25 06 CD 2014-09-19 23:48:16.010 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:16.029 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:16.041 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:18.275 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 2 - deferring HEAL. 2014-09-19 23:48:21.022 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 23:48:21.032 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 23:48:21.038 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 23:48:21.061 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 11: Timeout while sending message. Requeueing 2014-09-19 23:48:21.064 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-19 23:48:21.073 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0D 01 00 25 08 C5 2014-09-19 23:48:21.078 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0D 01 00 25 08 C5 2014-09-19 23:48:21.089 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:21.102 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:21.106 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:21.685 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 06 01 EE 2014-09-19 23:48:21.699 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 06 01 2014-09-19 23:48:21.703 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 6 2014-09-19 23:48:21.715 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 23:48:21.719 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 23:48:26.102 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 23:48:26.118 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 23:48:26.148 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 23:48:26.201 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-19 23:48:26.204 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:48:26.212 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0E 01 00 25 09 C7 2014-09-19 23:48:26.219 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0E 01 00 25 09 C7 2014-09-19 23:48:26.229 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:26.243 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:26.246 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:26.800 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 08 01 E0 2014-09-19 23:48:26.810 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 08 01 2014-09-19 23:48:26.814 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 8 2014-09-19 23:48:26.820 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 23:48:26.825 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-19 23:48:31.242 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-19 23:48:31.254 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-19 23:48:31.265 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-19 23:48:31.273 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 14: Timeout while sending message. Requeueing 2014-09-19 23:48:32.208 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 09 01 E1 2014-09-19 23:48:32.222 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 09 01 2014-09-19 23:48:32.226 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 9 2014-09-19 23:48:32.230 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-19 23:48:32.235 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:32.240 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:32.247 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-19 23:48:42.309 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 23:48:42.326 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 23:48:42.330 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Ping Node) 2014-09-19 23:48:42.338 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 23:48:42.344 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 23:48:42.356 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 23:48:42.365 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:42.373 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:42.378 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 23:48:42.393 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Ping Node, requested = Node Complete 2014-09-19 23:48:42.404 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:42.410 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class BATTERY 2014-09-19 23:48:42.414 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-19 23:48:42.419 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:42.425 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 23:48:42.430 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-19 23:48:42.437 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-19 23:48:42.442 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:42.447 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 23:48:42.458 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 07 D0 28 2014-09-19 23:48:42.471 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 07 D0 2014-09-19 23:48:42.475 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:42.480 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 23:48:42.486 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 23:48:42.492 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 23:48:42.497 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (20.000000) 2014-09-19 23:48:42.503 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 23:48:42.508 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 20 2014-09-19 23:48:42.514 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:42.518 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:42.523 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 2E+1 2014-09-19 23:48:42.543 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:42.565 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-19 23:48:42.611 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-19 23:48:42.617 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:42.626 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 23:48:42.638 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-19 23:48:42.646 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-19 23:48:42.658 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 23:48:42.672 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 23:48:42.688 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-19 23:48:42.714 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-19 23:48:42.723 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:42.737 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-19 23:48:42.750 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-19 23:48:42.763 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-19 23:48:42.773 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:42.785 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:42.803 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 2 messages in the wake-up queue. 2014-09-19 23:48:42.812 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 19 2014-09-19 23:48:42.827 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:48:42.831 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:48:42.848 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 13 5E 2014-09-19 23:48:42.865 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 13 5E 2014-09-19 23:48:42.892 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:42.924 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:42.943 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:42.966 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 13 00 FA 2014-09-19 23:48:42.989 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 13 00 2014-09-19 23:48:42.998 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 19 2014-09-19 23:48:43.003 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:43.017 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 23:48:43.044 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 23:48:43.051 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-19 23:48:43.064 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 23:48:43.070 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 23:48:43.079 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 23:48:43.087 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:43.098 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:43.112 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 23:48:43.138 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-19 23:48:43.155 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 13: Serializing to file etc/zwave/1.6/node13.xml 2014-09-19 23:48:43.417 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 13: Initialisation complete. 2014-09-19 23:48:43.437 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:43.450 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:43.472 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 20 2014-09-19 23:48:43.485 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:48:43.501 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 627ms/4554ms. 2014-09-19 23:48:43.505 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:48:43.531 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 14 99 2014-09-19 23:48:43.567 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 14 99 2014-09-19 23:48:43.584 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:43.617 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:43.633 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:43.644 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 14 00 FD 2014-09-19 23:48:43.682 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 14 00 2014-09-19 23:48:43.701 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 20 2014-09-19 23:48:43.705 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:43.718 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:43.733 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:43.752 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 175ms/4554ms. 2014-09-19 23:48:43.771 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 07 D0 28 2014-09-19 23:48:43.788 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 07 D0 2014-09-19 23:48:43.811 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 23:48:43.827 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 23:48:43.841 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 23:48:43.860 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 23:48:43.872 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (20.000000) 2014-09-19 23:48:43.885 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 23:48:43.895 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 20 2014-09-19 23:48:43.909 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:43.928 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:43.938 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 2E+1 2014-09-19 23:48:45.749 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-19 23:48:45.782 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 23:48:45.803 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:45.823 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 21 2014-09-19 23:48:45.846 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:48:45.851 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:48:45.873 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 15 56 2014-09-19 23:48:45.904 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 15 56 2014-09-19 23:48:45.929 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:48:45.975 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:48:45.981 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:48:46.009 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 15 00 FC 2014-09-19 23:48:46.034 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 15 00 2014-09-19 23:48:46.049 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 21 2014-09-19 23:48:46.075 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:48:46.092 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:48:46.110 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:48:46.127 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-19 23:48:46.140 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 219ms/4554ms. 2014-09-19 23:48:55.826 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 23:48:55.842 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:55.882 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 C3 2014-09-19 23:48:55.887 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 23:48:56.894 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 23:48:56.904 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:56.924 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 BE 2014-09-19 23:48:56.945 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 23:48:57.608 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 23:48:57.620 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:57.657 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 B9 2014-09-19 23:48:57.678 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 23:48:58.330 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-19 23:48:58.345 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:48:58.374 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:156]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 B4 2014-09-19 23:48:58.393 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-19 23:49:03.286 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 6: Sending periodic PING. 2014-09-19 23:50:33.298 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 7: Sending periodic PING. 2014-09-19 23:50:33.306 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-19 23:50:33.314 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:50:33.318 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 22 2014-09-19 23:50:33.324 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:50:33.330 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:50:33.337 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 16 D1 2014-09-19 23:50:33.345 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 16 D1 2014-09-19 23:50:33.356 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:50:33.365 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:50:33.370 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:50:33.391 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 16 00 FF 2014-09-19 23:50:33.399 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 16 00 2014-09-19 23:50:33.403 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 22 2014-09-19 23:50:33.407 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:50:33.415 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:50:33.419 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:50:33.425 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 76ms/4554ms. 2014-09-19 23:52:03.345 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 10: Sending periodic PING. 2014-09-19 23:52:03.352 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-19 23:52:03.359 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:52:03.365 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 23 2014-09-19 23:52:03.370 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:52:03.376 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:52:03.381 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 17 DD 2014-09-19 23:52:03.392 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 17 DD 2014-09-19 23:52:03.402 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:52:03.412 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:52:03.416 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:52:03.437 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 17 00 FE 2014-09-19 23:52:03.447 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 17 00 2014-09-19 23:52:03.451 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 23 2014-09-19 23:52:03.457 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:52:03.463 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:52:03.468 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:52:03.474 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 79ms/4554ms. 2014-09-19 23:53:33.388 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 12: Sending periodic PING. 2014-09-19 23:53:33.395 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 12: Creating new message for application command No Operation 2014-09-19 23:53:33.400 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:53:33.407 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 24 2014-09-19 23:53:33.412 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:53:33.416 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:53:33.423 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0C 01 00 25 18 D4 2014-09-19 23:53:33.433 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0C 01 00 25 18 D4 2014-09-19 23:53:33.444 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:53:33.455 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:53:33.466 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:53:33.479 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 18 00 F1 2014-09-19 23:53:33.488 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 18 00 2014-09-19 23:53:33.492 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 24 2014-09-19 23:53:33.498 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:53:33.503 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:33.508 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:33.514 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 77ms/4554ms. 2014-09-19 23:53:35.445 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-19 23:53:35.461 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-19 23:53:35.465 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 23:53:35.479 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-19 23:53:35.486 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-19 23:53:35.496 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-19 23:53:35.500 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:35.505 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:35.509 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-19 23:53:35.527 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 07 D0 28 2014-09-19 23:53:35.541 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 07 D0 2014-09-19 23:53:35.544 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 23:53:35.550 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-19 23:53:35.555 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-19 23:53:35.563 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-19 23:53:35.567 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (20.000000) 2014-09-19 23:53:35.572 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-19 23:53:35.576 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 20 2014-09-19 23:53:35.581 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:35.585 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:35.589 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 2E+1 2014-09-19 23:53:35.614 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-19 23:53:35.632 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-19 23:53:35.639 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 23:53:35.646 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 23:53:35.734 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-19 23:53:35.750 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-19 23:53:35.754 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 23:53:35.759 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-19 23:53:35.776 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-19 23:53:35.787 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-19 23:53:35.796 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-19 23:53:35.803 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-19 23:53:35.813 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-19 23:53:35.821 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-19 23:53:35.829 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:35.837 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:35.843 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 4 messages in the wake-up queue. 2014-09-19 23:53:35.848 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 25 2014-09-19 23:53:35.854 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:53:35.859 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:53:35.869 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 C3 25 19 74 2014-09-19 23:53:35.878 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 C3 25 19 74 2014-09-19 23:53:35.889 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:53:35.903 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:53:35.907 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:53:35.926 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 19 00 F0 2014-09-19 23:53:35.940 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 19 00 2014-09-19 23:53:35.946 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 25 2014-09-19 23:53:35.959 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:53:35.963 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:35.968 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:35.976 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 26 2014-09-19 23:53:35.987 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:53:35.996 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 113ms/4554ms. 2014-09-19 23:53:35.999 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:53:36.017 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 BE 25 1A 0A 2014-09-19 23:53:36.032 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 BE 25 1A 0A 2014-09-19 23:53:36.046 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:53:36.055 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:53:36.063 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:53:36.083 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1A 00 F3 2014-09-19 23:53:36.092 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1A 00 2014-09-19 23:53:36.099 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 26 2014-09-19 23:53:36.107 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:53:36.116 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:36.124 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:36.137 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 27 2014-09-19 23:53:36.145 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:53:36.155 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 116ms/4554ms. 2014-09-19 23:53:36.161 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:53:36.176 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 B9 25 1B 0C 2014-09-19 23:53:36.187 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 B9 25 1B 0C 2014-09-19 23:53:36.198 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:53:36.212 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:53:36.217 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:53:36.235 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1B 00 F2 2014-09-19 23:53:36.242 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1B 00 2014-09-19 23:53:36.246 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 27 2014-09-19 23:53:36.250 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:53:36.255 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:36.259 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:36.264 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 28 2014-09-19 23:53:36.268 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-19 23:53:36.272 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 81ms/4554ms. 2014-09-19 23:53:36.277 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:53:36.286 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 B4 25 1C 06 2014-09-19 23:53:36.294 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 B4 25 1C 06 2014-09-19 23:53:36.304 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:53:36.313 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:53:36.317 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:53:36.341 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1C 00 F5 2014-09-19 23:53:36.349 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1C 00 2014-09-19 23:53:36.352 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 28 2014-09-19 23:53:36.356 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:53:36.361 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:36.365 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:36.370 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 73ms/4554ms. 2014-09-19 23:53:38.370 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-19 23:53:38.377 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-19 23:53:38.384 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-19 23:53:38.388 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 29 2014-09-19 23:53:38.394 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-19 23:53:38.400 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-19 23:53:38.407 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 1D 5E 2014-09-19 23:53:38.415 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 1D 5E 2014-09-19 23:53:38.426 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-19 23:53:38.433 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-19 23:53:38.437 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-19 23:53:38.460 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1D 00 F4 2014-09-19 23:53:38.470 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1D 00 2014-09-19 23:53:38.475 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 29 2014-09-19 23:53:38.481 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-19 23:53:38.486 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-19 23:53:38.491 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-19 23:53:38.497 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-19 23:53:38.502 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 84ms/4554ms.

cdjackson commented 10 years ago

Strange - I don’t see the request being made after the update. I’ve uploaded a new version with some more debug - can you try this? (and post logs please). Thanks.=

Thomas38 commented 10 years ago

No change. I just copied habmin into the addons directory: -rw-r--r-- 1 root root 1122942 Sep 19 23:40 org.openhab.io.habmin-1.6.0-SNAPSHOT.jar Is there anything else to do to get this thing activated ?

cdjackson commented 10 years ago

This isn’t a change to HABmin - it’s a zwave issue - you need to update the zwave binding.

Thomas38 commented 10 years ago

Ohhh, it was because you were talking about the latest version on the HABmin website. I got the 732 snapshot now, but unfortunately the sitemap is broken somehow. I noticed it also with snapshot 730 and I went back to an older version.

I appended the zwave log, it catches at least one update from the thermostat. Because of the missing website I can't change the value. I think I'm not the only one who has problems with the latest updates.

2014-09-21 12:30:35.362 DEBUG o.o.b.z.i.ZWaveActivator[:36]- Z-Wave binding has been started. 2014-09-21 12:30:35.903 INFO o.o.b.z.i.ZWaveActiveBinding[:301]- Update config, port = /dev/ttyAMA0 2014-09-21 12:30:35.950 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 12:30:36.668 INFO o.o.b.z.i.p.ZWaveController[:136]- Starting Z-Wave controller 2014-09-21 12:30:36.694 INFO o.o.b.z.i.p.ZWaveController[:141]- Z-Wave timeout is set to 5000ms. 2014-09-21 12:30:36.704 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-21 12:30:37.516 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-21 12:30:37.583 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-21 12:30:37.586 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-21 12:30:40.193 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetVersion (0x15), type = Request (0x00) 2014-09-21 12:30:40.217 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:30:40.221 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 12:30:40.287 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 15 E9 2014-09-21 12:30:40.301 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = MemoryGetId (0x20), type = Request (0x00) 2014-09-21 12:30:40.336 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:30:40.346 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 15 E9 2014-09-21 12:30:40.442 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetCapabilities (0x07), type = Request (0x00) 2014-09-21 12:30:40.488 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 12:30:40.533 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 10 01 15 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 93 2014-09-21 12:30:40.569 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:30]- Get SUC NodeID 2014-09-21 12:30:40.614 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetSucNodeId (0x56), type = Request (0x00) 2014-09-21 12:30:40.634 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-21 12:30:40.937 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetVersion (0x15), type = Response (0x01), payload = 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 2014-09-21 12:30:40.960 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 12:30:41.526 DEBUG o.o.b.z.i.p.s.GetVersionMessageClass[:39]- Got MessageGetVersion response. Version = Z-Wave 3.42, Library Type = 0x01 2014-09-21 12:30:41.568 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:41.599 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:41.772 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1381ms/1381ms. 2014-09-21 12:30:41.793 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-21 12:30:41.891 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 20 DC 2014-09-21 12:30:41.930 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 20 DC 2014-09-21 12:30:41.991 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 01 20 CA 45 9E 37 01 F1 2014-09-21 12:30:42.125 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = MemoryGetId (0x20), type = Response (0x01), payload = CA 45 9E 37 01 2014-09-21 12:30:42.183 DEBUG o.o.b.z.i.p.s.MemoryGetIdMessageClass[:41]- Got MessageMemoryGetId response. Home id = 0xCA459E37, Controller Node id = 1 2014-09-21 12:30:42.208 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:42.240 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:42.281 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 333ms/1381ms. 2014-09-21 12:30:42.285 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 12:30:42.323 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 07 FB 2014-09-21 12:30:42.361 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 07 FB 2014-09-21 12:30:42.712 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 2B 01 07 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 7C 2014-09-21 12:30:43.612 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetCapabilities (0x07), type = Response (0x01), payload = 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 2014-09-21 12:30:43.654 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:45]- API Version = 4.2 2014-09-21 12:30:43.687 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:46]- Manufacture ID = 0x147 2014-09-21 12:30:43.707 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:47]- Device Type = 0x2 2014-09-21 12:30:43.754 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:48]- Device ID = 0x3 2014-09-21 12:30:43.793 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetInitData 2014-09-21 12:30:43.830 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiApplicationNodeInfo 2014-09-21 12:30:43.848 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationCommandHandler 2014-09-21 12:30:43.901 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetControllerCapabilities 2014-09-21 12:30:43.932 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSetTimeouts 2014-09-21 12:30:44.000 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetCapabilities 2014-09-21 12:30:44.011 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSoftReset 2014-09-21 12:30:44.037 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendNodeInfo 2014-09-21 12:30:44.067 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendData 2014-09-21 12:30:44.099 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetVersion 2014-09-21 12:30:44.124 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: MemoryGetId 2014-09-21 12:30:44.147 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReadMemory 2014-09-21 12:30:44.170 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: WriteMemory 2014-09-21 12:30:44.201 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IdentifyNode 2014-09-21 12:30:44.258 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetDefault 2014-09-21 12:30:44.281 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignReturnRoute 2014-09-21 12:30:44.299 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteReturnRoute 2014-09-21 12:30:44.327 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeNeighborUpdate 2014-09-21 12:30:44.347 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationUpdate 2014-09-21 12:30:44.369 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AddNodeToNetwork 2014-09-21 12:30:44.407 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveNodeFromNetwork 2014-09-21 12:30:44.434 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ControllerChange 2014-09-21 12:30:44.456 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetLearnMode 2014-09-21 12:30:44.501 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignSucReturnRoute 2014-09-21 12:30:44.549 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNetworkUpdate 2014-09-21 12:30:44.573 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetSucNodeID 2014-09-21 12:30:44.591 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteSUCReturnRoute 2014-09-21 12:30:44.618 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetSucNodeId 2014-09-21 12:30:44.650 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendSucId 2014-09-21 12:30:44.672 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeInfo 2014-09-21 12:30:44.692 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveFailedNodeID 2014-09-21 12:30:44.711 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IsFailedNodeID 2014-09-21 12:30:44.736 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReplaceFailedNode 2014-09-21 12:30:44.773 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetRoutingInfo 2014-09-21 12:30:44.813 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xd2 2014-09-21 12:30:44.843 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf0 2014-09-21 12:30:44.865 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf1 2014-09-21 12:30:44.901 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf2 2014-09-21 12:30:44.941 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf3 2014-09-21 12:30:44.971 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:45.026 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:45.057 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2676ms/2676ms. 2014-09-21 12:30:45.064 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:30:45.097 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetInitData (0x02), type = Request (0x00) 2014-09-21 12:30:45.118 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:30:45.117 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 56 AA 2014-09-21 12:30:45.153 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 56 AA 2014-09-21 12:30:45.193 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 56 00 AC 2014-09-21 12:30:45.254 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetSucNodeId (0x56), type = Response (0x01), payload = 00 2014-09-21 12:30:45.275 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:41]- Got SUC NodeID response. 2014-09-21 12:30:45.285 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:47]- No SUC Node is set 2014-09-21 12:30:45.296 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:45.306 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:45.319 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 146ms/2676ms. 2014-09-21 12:30:45.322 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:30:45.355 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetControllerCapabilities (0x05), type = Request (0x00) 2014-09-21 12:30:45.373 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:30:45.368 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 02 FE 2014-09-21 12:30:45.396 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 02 FE 2014-09-21 12:30:45.581 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 25 01 02 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 9A 2014-09-21 12:30:45.969 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 12:30:46.083 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetInitData (0x02), type = Response (0x01), payload = 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 2014-09-21 12:30:46.095 DEBUG o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:39]- Got MessageSerialApiGetInitData response. 2014-09-21 12:30:46.121 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 1: Node found 2014-09-21 12:30:46.145 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 2: Node found 2014-09-21 12:30:46.163 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 3: Node found 2014-09-21 12:30:46.191 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 6: Node found 2014-09-21 12:30:46.231 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 7: Node found 2014-09-21 12:30:46.252 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 10: Node found 2014-09-21 12:30:46.272 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 11: Node found 2014-09-21 12:30:46.294 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 12: Node found 2014-09-21 12:30:46.324 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 13: Node found 2014-09-21 12:30:46.343 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 14: Node found 2014-09-21 12:30:46.369 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:65]- ZWave Controller using Controller API 2014-09-21 12:30:46.386 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:66]- ZWave Controller is Primary Controller 2014-09-21 12:30:46.411 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:67]- ------------Number of Nodes Found Registered to ZWave Controller------------ 2014-09-21 12:30:46.447 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:68]- # Nodes = 10 2014-09-21 12:30:46.471 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:69]- ---------------------------------------------------------------------------- 2014-09-21 12:30:46.494 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:46.517 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:46.537 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1127ms/2676ms. 2014-09-21 12:30:46.544 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:30:46.608 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-21 12:30:46.646 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-21 12:30:50.979 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 12:30:51.684 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 255: Timeout while sending message. Requeueing 2014-09-21 12:30:51.693 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:30:51.710 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:30:51.725 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-21 12:30:51.757 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-21 12:30:53.665 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.705 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 1: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:53.721 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:30:53.742 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.751 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:53.769 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 12:30:53.791 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.801 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:53.821 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-21 12:30:53.831 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 6: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.860 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 6: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:53.865 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-21 12:30:53.874 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.893 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:53.900 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 5 2014-09-21 12:30:53.916 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.932 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:53.946 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-21 12:30:53.961 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:53.993 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:54.000 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-21 12:30:54.021 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:54.037 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:54.041 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:30:54.052 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:54.071 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:54.075 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 12:30:54.092 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 12:30:54.098 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 12:30:54.113 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-21 12:30:54.144 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:54.191 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:54.211 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:54.230 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:54.242 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:54.247 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:54.251 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:54.272 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:54.290 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:54.295 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2513ms/2676ms. 2014-09-21 12:30:54.310 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-21 12:30:54.324 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 01 BB 2014-09-21 12:30:54.331 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:54.349 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 01 BB 2014-09-21 12:30:54.396 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:54.418 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:54.433 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:54.442 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:54.450 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:54.470 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:54.500 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:54.524 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:54.545 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:54.570 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:54.573 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:54.581 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:54.595 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:54.614 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:54.660 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:54.678 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:54.690 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:54.695 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:54.709 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:54.718 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:54.751 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:54.787 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:54.799 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:54.819 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:54.830 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:54.834 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:54.846 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:54.881 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:54.941 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:54.947 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:54.960 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:54.966 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:54.988 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:54.994 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:55.029 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 12:30:55.073 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 12:30:55.100 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 12:30:55.106 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 12:30:55.113 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 12:30:55.131 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 12:30:55.144 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 12:30:55.193 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 93 16 00 02 02 01 32 2014-09-21 12:30:55.304 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 93 16 00 02 02 01 2014-09-21 12:30:55.319 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 1: ProtocolInfo 2014-09-21 12:30:55.345 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 1: Listening = true 2014-09-21 12:30:55.362 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 1: Routing = false 2014-09-21 12:30:55.378 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 1: Version = 4 2014-09-21 12:30:55.392 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 1: fLIRS = false 2014-09-21 12:30:55.428 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 1: Basic = Static Controller 0x02 2014-09-21 12:30:55.455 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 1: Generic = Static Controller 0x02 2014-09-21 12:30:55.489 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 1: Specific = PC Controller 0x01 2014-09-21 12:30:55.515 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml 2014-09-21 12:30:55.533 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:127]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml failed, file does not exist. 2014-09-21 12:30:55.561 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-21 12:30:55.601 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:30:55.628 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-21 12:30:55.647 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:30:55.679 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:30:55.700 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:98]- NODE 1: Initialisation complete. 2014-09-21 12:30:55.716 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:55.746 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:55.765 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1370ms/2676ms. 2014-09-21 12:30:55.769 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 12:30:55.807 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 02 B8 2014-09-21 12:30:55.838 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 02 B8 2014-09-21 12:30:55.883 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-21 12:30:55.972 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-21 12:30:55.984 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 12:30:55.994 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 2: ProtocolInfo 2014-09-21 12:30:56.029 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 2: Listening = false 2014-09-21 12:30:56.070 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 2: Routing = true 2014-09-21 12:30:56.069 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 12:30:55 CEST 2014 2014-09-21 12:30:56.086 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 2: Version = 4 2014-09-21 12:30:56.098 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 2: fLIRS = false 2014-09-21 12:30:56.093 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Protocol Information since Sun Sep 21 12:30:53 CEST 2014 2014-09-21 12:30:56.120 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Protocol Information since Sun Sep 21 12:30:53 CEST 2014 2014-09-21 12:30:56.129 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 2: Basic = Routing Slave 0x04 2014-09-21 12:30:56.145 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 12:30:53 CEST 2014 2014-09-21 12:30:56.158 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 2: Generic = Binary Sensor 0x20 2014-09-21 12:30:56.172 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Protocol Information since Sun Sep 21 12:30:53 CEST 2014 2014-09-21 12:30:56.183 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 2: Specific = Routing Binary Sensor 0x01 2014-09-21 12:30:56.199 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Protocol Information since Sun Sep 21 12:30:53 CEST 2014 2014-09-21 12:30:56.205 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 2: Deserializing from file etc/zwave/1.6/node2.xml 2014-09-21 12:30:56.225 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Protocol Information since Sun Sep 21 12:30:53 CEST 2014 2014-09-21 12:30:56.266 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Protocol Information since Sun Sep 21 12:30:54 CEST 2014 2014-09-21 12:30:56.292 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Protocol Information since Sun Sep 21 12:30:54 CEST 2014 2014-09-21 12:30:56.318 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Protocol Information since Sun Sep 21 12:30:54 CEST 2014 2014-09-21 12:30:56.338 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:56.358 DEBUG o.o.b.z.i.ZWaveActiveBinding[:374]- ZWaveIncomingEvent Called, Network Event, Init Done. Setting ZWave Network Ready. 2014-09-21 12:30:56.400 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PostboxBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.430 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PostboxBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.451 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Garage, command class name = sensor_binary, using 0 refresh interval. 2014-09-21 12:30:56.471 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Garage, command class name = sensor_binary, using 0 refresh interval. 2014-09-21 12:30:56.496 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Thermo, command class name = thermostat_setpoint, using 0 refresh interval. 2014-09-21 12:30:56.511 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Thermo, command class name = thermostat_setpoint, using 0 refresh interval. 2014-09-21 12:30:56.535 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.550 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.566 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = EnergyZW1, command class name = meter, using 0 refresh interval. 2014-09-21 12:30:56.590 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = EnergyZW1, command class name = meter, using 0 refresh interval. 2014-09-21 12:30:56.607 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ApartmentDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-21 12:30:56.621 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ApartmentDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-21 12:30:56.639 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PowerZW1, command class name = switch_binary, using 0 refresh interval. 2014-09-21 12:30:56.654 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = PowerZW1, command class name = switch_binary, using 0 refresh interval. 2014-09-21 12:30:56.673 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Postbox, command class name = sensor_binary, using 0 refresh interval. 2014-09-21 12:30:56.688 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = Postbox, command class name = sensor_binary, using 0 refresh interval. 2014-09-21 12:30:56.705 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = GarageBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.724 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = GarageBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.741 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ThermoBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.756 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = ThermoBat, command class name = battery, using 0 refresh interval. 2014-09-21 12:30:56.772 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = FrontDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-21 12:30:56.787 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = FrontDoor, command class name = switch_binary, using 0 refresh interval. 2014-09-21 12:30:56.804 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:610]- Network initialised - starting network monitor. 2014-09-21 12:30:57.714 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:338]- NODE 2: Config file differs from controller information, ignoring config. 2014-09-21 12:30:57.732 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-21 12:30:57.739 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:30:57.750 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-21 12:30:57.761 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:30:57.772 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x30 2014-09-21 12:30:57.793 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-21 12:30:57.806 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:30:57.828 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 2: Creating new message for application command No Operation 2014-09-21 12:30:57.846 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:30:57.863 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 2 2014-09-21 12:30:57.875 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 12:30:57.888 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:57.899 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:57.912 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2059ms/2676ms. 2014-09-21 12:30:57.916 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 12:30:57.942 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 03 B9 2014-09-21 12:30:57.964 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 03 B9 2014-09-21 12:30:57.984 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-21 12:30:58.056 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-21 12:30:58.069 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 3: ProtocolInfo 2014-09-21 12:30:58.080 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 3: Listening = false 2014-09-21 12:30:58.092 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 3: Routing = true 2014-09-21 12:30:58.105 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 3: Version = 4 2014-09-21 12:30:58.115 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 3: fLIRS = false 2014-09-21 12:30:58.153 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 3: Basic = Routing Slave 0x04 2014-09-21 12:30:58.160 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 3: Generic = Binary Sensor 0x20 2014-09-21 12:30:58.167 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 3: Specific = Routing Binary Sensor 0x01 2014-09-21 12:30:58.178 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 3: Deserializing from file etc/zwave/1.6/node3.xml 2014-09-21 12:30:58.766 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:30:58.790 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:30:58.805 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 12:30:58.819 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BATTERY to the list of supported command classes. 2014-09-21 12:30:58.833 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-21 12:30:58.846 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:30:58.860 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:30:58.875 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 12:30:58.886 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 3: Restored from config. 2014-09-21 12:30:58.906 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:30:58.921 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 3: Creating new message for application command No Operation 2014-09-21 12:30:58.945 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:30:58.955 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 3 2014-09-21 12:30:58.970 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 12:30:58.981 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:30:58.990 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:30:59.011 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1035ms/2676ms. 2014-09-21 12:30:59.015 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 12:30:59.040 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 06 BC 2014-09-21 12:30:59.055 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 06 BC 2014-09-21 12:30:59.072 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 0F 01 F3 2014-09-21 12:30:59.104 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 0F 01 2014-09-21 12:30:59.120 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 6: ProtocolInfo 2014-09-21 12:30:59.128 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 6: Listening = true 2014-09-21 12:30:59.136 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 6: Routing = true 2014-09-21 12:30:59.146 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 6: Version = 4 2014-09-21 12:30:59.154 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 6: fLIRS = false 2014-09-21 12:30:59.176 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 6: Basic = Routing Slave 0x04 2014-09-21 12:30:59.192 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 6: Generic = Repeater Slave 0x0f 2014-09-21 12:30:59.205 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 6: Specific = Basic Repeater Slave 0x01 2014-09-21 12:30:59.220 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 6: Deserializing from file etc/zwave/1.6/node6.xml 2014-09-21 12:31:01.827 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-21 12:31:04.080 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 6: Timeout while sending message. Requeueing 2014-09-21 12:31:04.091 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 12:31:04.112 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 12:31:04.152 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 06 BC 2014-09-21 12:31:04.195 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 06 BC 2014-09-21 12:31:06.835 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 8 - deferring HEAL. 2014-09-21 12:31:07.614 WARN o.o.b.z.i.p.ZWaveController$WatchDogTimerTask[:1114]- Threads not alive, respawning 2014-09-21 12:31:07.621 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:944]- Stopped Z-Wave send thread 2014-09-21 12:31:07.667 INFO o.o.b.z.i.p.ZWaveController[:381]- Disconnected from serial port 2014-09-21 12:31:07.673 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-21 12:31:07.696 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-21 12:31:07.702 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-21 12:31:07.701 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-21 12:31:07.717 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:07.734 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 07 BD 2014-09-21 12:31:07.748 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 07 BD 2014-09-21 12:31:07.763 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-21 12:31:07.802 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-21 12:31:07.810 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 7: ProtocolInfo 2014-09-21 12:31:07.820 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 7: Listening = true 2014-09-21 12:31:07.827 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 7: Routing = true 2014-09-21 12:31:07.838 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 7: Version = 4 2014-09-21 12:31:07.849 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 7: fLIRS = false 2014-09-21 12:31:07.861 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 7: Basic = Routing Slave 0x04 2014-09-21 12:31:07.869 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 7: Generic = Binary Switch 0x10 2014-09-21 12:31:07.879 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 7: Specific = Binary Power Switch 0x01 2014-09-21 12:31:07.885 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 7: Deserializing from file etc/zwave/1.6/node7.xml 2014-09-21 12:31:08.298 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class METER to the list of supported command classes. 2014-09-21 12:31:08.314 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SCENE_ACTIVATION to the list of supported command classes. 2014-09-21 12:31:08.330 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:31:08.344 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-21 12:31:08.358 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:31:08.373 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 12:31:08.398 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:31:08.407 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:31:08.417 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 12:31:08.427 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 7: Restored from config. 2014-09-21 12:31:08.439 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:31:08.450 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-21 12:31:08.467 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:08.483 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 4 2014-09-21 12:31:08.493 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:08.501 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:08.514 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:08.526 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 771ms/2676ms. 2014-09-21 12:31:08.530 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:08.547 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0A B0 2014-09-21 12:31:08.567 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0A B0 2014-09-21 12:31:08.594 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-21 12:31:08.623 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-21 12:31:08.632 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 10: ProtocolInfo 2014-09-21 12:31:08.640 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 10: Listening = true 2014-09-21 12:31:08.648 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 10: Routing = true 2014-09-21 12:31:08.656 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 10: Version = 4 2014-09-21 12:31:08.665 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 10: fLIRS = false 2014-09-21 12:31:08.678 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 10: Basic = Routing Slave 0x04 2014-09-21 12:31:08.704 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 10: Generic = Binary Switch 0x10 2014-09-21 12:31:08.710 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 10: Specific = Binary Power Switch 0x01 2014-09-21 12:31:08.716 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 10: Deserializing from file etc/zwave/1.6/node10.xml 2014-09-21 12:31:09.198 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:31:09.214 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-21 12:31:09.229 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:31:09.246 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MULTI_INSTANCE to the list of supported command classes. 2014-09-21 12:31:09.258 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 12:31:09.271 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:31:09.287 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:31:09.301 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 12:31:09.318 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 10: Restored from config. 2014-09-21 12:31:09.331 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:31:09.347 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-21 12:31:09.364 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:09.374 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 5 2014-09-21 12:31:09.386 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:09.398 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:09.406 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:09.425 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 851ms/2676ms. 2014-09-21 12:31:09.431 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:09.458 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0B B1 2014-09-21 12:31:09.479 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0B B1 2014-09-21 12:31:09.517 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 12 02 6D 2014-09-21 12:31:09.569 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 12 02 2014-09-21 12:31:09.584 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 11: ProtocolInfo 2014-09-21 12:31:09.602 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 11: Listening = false 2014-09-21 12:31:09.620 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 11: Routing = true 2014-09-21 12:31:09.632 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 11: Version = 4 2014-09-21 12:31:09.644 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 11: fLIRS = false 2014-09-21 12:31:09.664 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 11: Basic = Routing Slave 0x04 2014-09-21 12:31:09.687 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 11: Generic = Remote Switch 0x12 2014-09-21 12:31:09.720 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 11: Specific = Multilevel Remote Switch 0x02 2014-09-21 12:31:09.728 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 11: Deserializing from file etc/zwave/1.6/node11.xml 2014-09-21 12:31:10.170 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:31:10.192 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:31:10.209 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 12:31:10.225 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BATTERY to the list of supported command classes. 2014-09-21 12:31:10.244 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 12:31:10.262 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:31:10.276 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 12:31:10.295 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:31:10.312 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 11: Restored from config. 2014-09-21 12:31:10.332 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:31:10.351 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 11: Creating new message for application command No Operation 2014-09-21 12:31:10.371 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:10.392 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 6 2014-09-21 12:31:10.405 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:10.425 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:10.438 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:10.452 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 963ms/2676ms. 2014-09-21 12:31:10.460 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:10.485 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0C B6 2014-09-21 12:31:10.502 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0C B6 2014-09-21 12:31:10.525 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 11 01 ED 2014-09-21 12:31:10.578 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 11 01 2014-09-21 12:31:10.591 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 12: ProtocolInfo 2014-09-21 12:31:10.601 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 12: Listening = true 2014-09-21 12:31:10.611 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 12: Routing = true 2014-09-21 12:31:10.622 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 12: Version = 4 2014-09-21 12:31:10.630 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 12: fLIRS = false 2014-09-21 12:31:10.657 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 12: Basic = Routing Slave 0x04 2014-09-21 12:31:10.671 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 12: Generic = Multi-Level Switch 0x11 2014-09-21 12:31:10.684 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 12: Specific = Multilevel Power Switch 0x01 2014-09-21 12:31:10.695 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 12: Deserializing from file etc/zwave/1.6/node12.xml 2014-09-21 12:31:11.173 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:31:11.192 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:31:11.210 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 12:31:11.227 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:31:11.249 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:31:11.267 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 12:31:11.283 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class SWITCH_MULTILEVEL to the list of supported command classes. 2014-09-21 12:31:11.301 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 12: Restored from config. 2014-09-21 12:31:11.323 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:31:11.343 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 12: Creating new message for application command No Operation 2014-09-21 12:31:11.366 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:11.379 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 7 2014-09-21 12:31:11.397 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:11.412 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:11.428 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:11.445 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 930ms/2676ms. 2014-09-21 12:31:11.449 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:11.478 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0D B7 2014-09-21 12:31:11.506 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0D B7 2014-09-21 12:31:11.528 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 08 04 71 2014-09-21 12:31:11.619 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 08 04 2014-09-21 12:31:11.634 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 13: ProtocolInfo 2014-09-21 12:31:11.650 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 13: Listening = false 2014-09-21 12:31:11.665 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 13: Routing = true 2014-09-21 12:31:11.684 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 13: Version = 4 2014-09-21 12:31:11.699 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 13: fLIRS = false 2014-09-21 12:31:11.721 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 13: Basic = Routing Slave 0x04 2014-09-21 12:31:11.745 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 13: Generic = Thermostat 0x08 2014-09-21 12:31:11.771 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 13: Specific = Setpoint Thermostat 0x04 2014-09-21 12:31:11.788 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 13: Deserializing from file etc/zwave/1.6/node13.xml 2014-09-21 12:31:11.839 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 7 - deferring HEAL. 2014-09-21 12:31:12.298 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:31:12.319 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:31:12.332 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 12:31:12.345 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class THERMOSTAT_SETPOINT to the list of supported command classes. 2014-09-21 12:31:12.359 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BATTERY to the list of supported command classes. 2014-09-21 12:31:12.373 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:31:12.385 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:31:12.398 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 13: Restored from config. 2014-09-21 12:31:12.414 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:31:12.430 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 13: Creating new message for application command No Operation 2014-09-21 12:31:12.444 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:12.456 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 8 2014-09-21 12:31:12.470 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:12.483 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:12.493 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:12.508 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 988ms/2676ms. 2014-09-21 12:31:12.514 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:12.535 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0E B4 2014-09-21 12:31:12.556 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0E B4 2014-09-21 12:31:12.576 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-21 12:31:12.632 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-21 12:31:12.643 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 14: ProtocolInfo 2014-09-21 12:31:12.655 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 14: Listening = false 2014-09-21 12:31:12.666 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 14: Routing = true 2014-09-21 12:31:12.679 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 14: Version = 4 2014-09-21 12:31:12.689 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 14: fLIRS = false 2014-09-21 12:31:12.711 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 14: Basic = Routing Slave 0x04 2014-09-21 12:31:12.723 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 14: Generic = Binary Sensor 0x20 2014-09-21 12:31:12.741 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 14: Specific = Routing Binary Sensor 0x01 2014-09-21 12:31:12.756 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 14: Deserializing from file etc/zwave/1.6/node14.xml 2014-09-21 12:31:13.308 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class VERSION to the list of supported command classes. 2014-09-21 12:31:13.333 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_ALARM to the list of supported command classes. 2014-09-21 12:31:13.351 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BASIC to the list of supported command classes. 2014-09-21 12:31:13.372 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 12:31:13.397 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BATTERY to the list of supported command classes. 2014-09-21 12:31:13.417 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-21 12:31:13.444 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 12:31:13.462 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 12:31:13.481 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_MULTILEVEL to the list of supported command classes. 2014-09-21 12:31:13.496 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 12:31:13.515 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 12:31:13.534 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 14: Restored from config. 2014-09-21 12:31:13.551 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 12:31:13.576 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 14: Creating new message for application command No Operation 2014-09-21 12:31:13.594 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:13.608 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 9 2014-09-21 12:31:13.624 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:13.638 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:13.649 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:13.665 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 1098ms/2676ms. 2014-09-21 12:31:13.669 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:13.703 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 04 C3 2014-09-21 12:31:13.733 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 04 C3 2014-09-21 12:31:13.760 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:13.774 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:13.794 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:13.817 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 04 00 ED 2014-09-21 12:31:13.852 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 04 00 2014-09-21 12:31:13.891 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 4 2014-09-21 12:31:13.902 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:13.917 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Ping Node, requested = Node Information 2014-09-21 12:31:13.928 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:13.941 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class METER 2014-09-21 12:31:13.954 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 12:31:13.966 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:13.976 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 12:31:13.988 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:13.998 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 12:31:14.008 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:14.017 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 12:31:14.029 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:14.038 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 10 2014-09-21 12:31:14.047 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:14.056 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 11 2014-09-21 12:31:14.068 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 12:31:14.076 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 12 2014-09-21 12:31:14.084 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-21 12:31:14.094 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 13 2014-09-21 12:31:14.104 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 11 2014-09-21 12:31:14.120 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class SWITCH_BINARY 2014-09-21 12:31:14.135 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 7 2014-09-21 12:31:14.152 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:14.161 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 14 2014-09-21 12:31:14.170 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 12 2014-09-21 12:31:14.194 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:14.201 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:14.216 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 474ms/2676ms. 2014-09-21 12:31:14.220 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 11 2014-09-21 12:31:14.366 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 0A EE 2014-09-21 12:31:14.406 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 0A EE 2014-09-21 12:31:14.437 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:14.493 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:14.501 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:14.527 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0A 00 E3 2014-09-21 12:31:14.597 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0A 00 2014-09-21 12:31:14.624 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 10 2014-09-21 12:31:14.644 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:14.688 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 12:31:14.793 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 12:31:14.819 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:14.845 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 12:31:14.865 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 12:31:14.880 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 12:31:14.897 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 12:31:14.918 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 12:31:14.964 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 12:31:14.979 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:14.991 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:15.009 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 12:31:15.073 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:15.096 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:15.111 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:15.131 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 709ms/2676ms. 2014-09-21 12:31:15.135 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 10 2014-09-21 12:31:15.167 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 20 25 0B DF 2014-09-21 12:31:15.191 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 20 25 0B DF 2014-09-21 12:31:15.211 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:15.244 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:15.247 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:15.271 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0B 00 E2 2014-09-21 12:31:15.292 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0B 00 2014-09-21 12:31:15.297 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 11 2014-09-21 12:31:15.303 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:15.334 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 64 00 03 8A 05 83 2014-09-21 12:31:15.390 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 64 00 03 8A 05 2014-09-21 12:31:15.400 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:15.409 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 12:31:15.419 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 12:31:15.428 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 12:31:15.440 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 12:31:15.446 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = V (0x04) 2014-09-21 12:31:15.466 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (231.941000) 2014-09-21 12:31:15.475 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:15.481 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:15.496 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 231.941 2014-09-21 12:31:15.513 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:15.528 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:15.536 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:15.546 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 343ms/2676ms. 2014-09-21 12:31:15.551 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-21 12:31:15.569 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 28 25 0C D0 2014-09-21 12:31:15.589 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 28 25 0C D0 2014-09-21 12:31:15.605 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:15.615 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:15.630 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:15.647 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0C 00 E5 2014-09-21 12:31:15.679 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0C 00 2014-09-21 12:31:15.688 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 12 2014-09-21 12:31:15.710 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:15.726 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 6C 00 00 00 01 06 2014-09-21 12:31:15.794 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 6C 00 00 00 01 2014-09-21 12:31:15.806 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:15.823 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 12:31:15.835 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 12:31:15.847 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 12:31:15.857 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 12:31:15.865 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = A (0x05) 2014-09-21 12:31:15.878 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.001000) 2014-09-21 12:31:15.886 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:15.894 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:15.905 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.001 2014-09-21 12:31:15.921 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:15.928 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:15.938 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:15.948 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 351ms/2676ms. 2014-09-21 12:31:15.953 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 12:31:15.974 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 00 25 0D F9 2014-09-21 12:31:15.995 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 00 25 0D F9 2014-09-21 12:31:16.010 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:16.024 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:16.031 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:16.046 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0D 00 E4 2014-09-21 12:31:16.078 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0D 00 2014-09-21 12:31:16.085 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 13 2014-09-21 12:31:16.095 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:16.118 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 14 00 04 00 07 0E 32 02 21 64 00 00 00 0F B2 DE 00 00 00 0F FF 2014-09-21 12:31:16.168 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 0E 32 02 21 64 00 00 00 0F B2 DE 00 00 00 0F 2014-09-21 12:31:16.179 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:16.202 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 12:31:16.217 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 12:31:16.229 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 12:31:16.243 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 12:31:16.262 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = kWh (0x00) 2014-09-21 12:31:16.291 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.015000) 2014-09-21 12:31:16.305 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:16.320 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:16.338 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.015 2014-09-21 12:31:16.353 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:16.380 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:16.387 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:16.402 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 399ms/2676ms. 2014-09-21 12:31:16.407 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:16.425 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 07 02 25 02 25 0E EC 2014-09-21 12:31:16.441 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 07 02 25 02 25 0E EC 2014-09-21 12:31:16.455 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:16.473 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:16.476 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:16.493 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0E 00 E7 2014-09-21 12:31:16.515 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0E 00 2014-09-21 12:31:16.519 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 14 2014-09-21 12:31:16.526 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:16.543 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 07 03 25 03 00 D0 2014-09-21 12:31:16.565 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 03 25 03 00 2014-09-21 12:31:16.569 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:16.579 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class SWITCH_BINARY (0x25) 2014-09-21 12:31:16.591 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 7 2014-09-21 12:31:16.601 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 7, value = 0x00 2014-09-21 12:31:16.610 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:16.618 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:16.626 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-21 12:31:16.653 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:16.668 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 7: Serializing to file etc/zwave/1.6/node7.xml 2014-09-21 12:31:16.843 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 7 - deferring HEAL. 2014-09-21 12:31:17.251 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 7: Initialisation complete. 2014-09-21 12:31:17.261 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:17.271 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:17.281 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 834ms/2676ms. 2014-09-21 12:31:17.286 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-21 12:31:17.299 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 05 CF 2014-09-21 12:31:17.314 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 05 CF 2014-09-21 12:31:17.329 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:17.341 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:17.349 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:17.367 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 05 00 EC 2014-09-21 12:31:17.381 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 05 00 2014-09-21 12:31:17.400 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 5 2014-09-21 12:31:17.404 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:17.418 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Ping Node, requested = Node Information 2014-09-21 12:31:17.442 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:17.454 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-21 12:31:17.460 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-21 12:31:17.472 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:17.479 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 15 2014-09-21 12:31:17.488 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-21 12:31:17.500 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-21 12:31:17.508 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-21 12:31:17.519 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:17.528 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 1 2014-09-21 12:31:17.540 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 1 2014-09-21 12:31:17.549 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 16 2014-09-21 12:31:17.558 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 12:31:17.570 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-21 12:31:17.577 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-21 12:31:17.589 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:17.598 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 2 2014-09-21 12:31:17.606 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 2 2014-09-21 12:31:17.615 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 17 2014-09-21 12:31:17.626 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 12:31:17.635 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:17.644 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:17.654 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 332ms/2676ms. 2014-09-21 12:31:17.658 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 12:31:17.675 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0A 02 25 02 25 0F E0 2014-09-21 12:31:17.688 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0A 02 25 02 25 0F E0 2014-09-21 12:31:17.703 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:17.713 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:17.721 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:17.739 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0F 00 E6 2014-09-21 12:31:17.755 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0F 00 2014-09-21 12:31:17.775 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 15 2014-09-21 12:31:17.790 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:17.799 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0A 03 25 03 00 DD 2014-09-21 12:31:17.816 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 03 25 03 00 2014-09-21 12:31:17.823 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:17.836 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class SWITCH_BINARY (0x25) 2014-09-21 12:31:17.845 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-21 12:31:17.853 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-21 12:31:17.862 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:17.871 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:17.880 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-21 12:31:17.902 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:17.909 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:17.917 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:17.927 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 231ms/2676ms. 2014-09-21 12:31:17.932 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 12:31:17.949 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 10 92 2014-09-21 12:31:17.963 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 10 92 2014-09-21 12:31:17.978 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:17.991 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:18.001 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:18.015 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 10 00 F9 2014-09-21 12:31:18.033 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 10 00 2014-09-21 12:31:18.042 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 16 2014-09-21 12:31:18.051 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:18.065 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 01 01 25 03 00 B0 2014-09-21 12:31:18.104 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 01 01 25 03 00 2014-09-21 12:31:18.111 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:18.123 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-21 12:31:18.134 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-21 12:31:18.148 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-21 12:31:18.159 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 1, calling handleApplicationCommandRequest. 2014-09-21 12:31:18.168 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-21 12:31:18.178 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-21 12:31:18.187 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:18.196 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:18.204 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-21 12:31:18.222 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:18.235 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:18.242 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:18.253 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 282ms/2676ms. 2014-09-21 12:31:18.257 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-21 12:31:18.274 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 11 90 2014-09-21 12:31:18.296 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 11 90 2014-09-21 12:31:18.310 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:18.322 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:18.333 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:18.347 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 11 00 F8 2014-09-21 12:31:18.363 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 11 00 2014-09-21 12:31:18.375 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 17 2014-09-21 12:31:18.390 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:18.428 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 02 01 25 03 00 B3 2014-09-21 12:31:18.459 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 02 01 25 03 00 2014-09-21 12:31:18.467 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:18.477 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-21 12:31:18.486 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-21 12:31:18.496 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-21 12:31:18.506 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 2, calling handleApplicationCommandRequest. 2014-09-21 12:31:18.514 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-21 12:31:18.523 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-21 12:31:18.531 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:18.541 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:18.550 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 2, command class = SWITCH_BINARY, value = 0 2014-09-21 12:31:18.570 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:18.583 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 10: Serializing to file etc/zwave/1.6/node10.xml 2014-09-21 12:31:18.830 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 10: Initialisation complete. 2014-09-21 12:31:18.837 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:18.853 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:18.867 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 564ms/2676ms. 2014-09-21 12:31:18.872 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-21 12:31:18.894 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0C 01 00 25 07 CB 2014-09-21 12:31:18.911 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0C 01 00 25 07 CB 2014-09-21 12:31:18.928 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:18.941 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:18.948 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:18.962 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 07 00 EE 2014-09-21 12:31:18.986 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 07 00 2014-09-21 12:31:18.993 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 7 2014-09-21 12:31:19.001 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:19.012 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Ping Node, requested = Node Information 2014-09-21 12:31:19.024 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:19.041 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 12: Found dynamic state command class SWITCH_MULTILEVEL 2014-09-21 12:31:19.057 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:128]- Creating new message for application command SWITCH_MULTILEVEL_GET for node 12 2014-09-21 12:31:19.074 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:31:19.086 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 18 2014-09-21 12:31:19.101 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-21 12:31:19.113 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:19.123 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:19.137 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 216ms/2676ms. 2014-09-21 12:31:19.141 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-21 12:31:19.157 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0C 02 26 02 25 12 F8 2014-09-21 12:31:19.172 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0C 02 26 02 25 12 F8 2014-09-21 12:31:19.185 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:19.222 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:19.230 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:19.242 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 12 00 FB 2014-09-21 12:31:19.259 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 12 00 2014-09-21 12:31:19.265 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 18 2014-09-21 12:31:19.273 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:31:19.293 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-21 12:31:19.310 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-21 12:31:19.319 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:31:19.330 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-21 12:31:19.342 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-21 12:31:19.351 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-21 12:31:19.359 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:19.369 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:19.378 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-21 12:31:19.389 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-21 12:31:19.400 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:31:19.412 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 12: Serializing to file etc/zwave/1.6/node12.xml 2014-09-21 12:31:19.536 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 12: Initialisation complete. 2014-09-21 12:31:19.550 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:19.559 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:19.574 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 396ms/2676ms. 2014-09-21 12:31:19.578 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 4 2014-09-21 12:31:19.594 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 02 01 00 25 02 C0 2014-09-21 12:31:19.607 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 02 01 00 25 02 C0 2014-09-21 12:31:19.620 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:19.651 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:19.662 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:21.850 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 4 - deferring HEAL. 2014-09-21 12:31:24.631 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 12:31:24.642 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 12:31:24.657 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 12:31:24.680 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 2: Timeout while sending message. Requeueing 2014-09-21 12:31:24.695 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-21 12:31:24.703 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 03 01 00 25 03 C0 2014-09-21 12:31:24.725 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 03 01 00 25 03 C0 2014-09-21 12:31:24.741 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:24.758 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:24.777 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:25.741 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 02 01 EA 2014-09-21 12:31:25.756 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 02 01 2014-09-21 12:31:25.768 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 2 2014-09-21 12:31:25.773 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 12:31:25.778 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 12:31:27.024 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-21 12:31:29.164 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 03 01 EB 2014-09-21 12:31:29.182 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 03 01 2014-09-21 12:31:29.194 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 3 2014-09-21 12:31:29.204 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 12:31:29.213 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:29.222 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:31:29.232 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 4497ms/4497ms. 2014-09-21 12:31:29.235 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-21 12:31:29.252 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0B 01 00 25 06 CD 2014-09-21 12:31:29.264 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0B 01 00 25 06 CD 2014-09-21 12:31:29.277 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:29.291 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:29.297 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:32.027 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 2 - deferring HEAL. 2014-09-21 12:31:34.291 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 12:31:34.299 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 12:31:34.306 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 12:31:34.330 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 11: Timeout while sending message. Requeueing 2014-09-21 12:31:34.334 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 12:31:34.343 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0D 01 00 25 08 C5 2014-09-21 12:31:34.351 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0D 01 00 25 08 C5 2014-09-21 12:31:34.363 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:34.372 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:34.377 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:35.285 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 06 01 EE 2014-09-21 12:31:35.301 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 06 01 2014-09-21 12:31:35.307 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 6 2014-09-21 12:31:35.312 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 12:31:35.317 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 12:31:39.371 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 12:31:39.380 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 12:31:39.386 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 12:31:39.410 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 12:31:39.419 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:31:39.434 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0E 01 00 25 09 C7 2014-09-21 12:31:39.442 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0E 01 00 25 09 C7 2014-09-21 12:31:39.452 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:31:39.461 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:31:39.465 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:31:40.175 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 08 01 E0 2014-09-21 12:31:40.196 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 08 01 2014-09-21 12:31:40.202 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 8 2014-09-21 12:31:40.207 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 12:31:40.213 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 12:31:44.461 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 12:31:44.470 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 12:31:44.492 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 12:31:44.507 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 14: Timeout while sending message. Requeueing 2014-09-21 12:31:45.264 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 09 01 E1 2014-09-21 12:31:45.276 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 09 01 2014-09-21 12:31:45.280 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 9 2014-09-21 12:31:45.286 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 12:31:45.291 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:31:45.296 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:32:27.035 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 6: Sending periodic PING. 2014-09-21 12:33:57.047 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:285]- NODE 7: Sending periodic PING. 2014-09-21 12:33:57.051 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-21 12:33:57.058 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:33:57.063 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 19 2014-09-21 12:33:57.068 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:33:57.074 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 12:33:57.081 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 13 D4 2014-09-21 12:33:57.091 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 13 D4 2014-09-21 12:33:57.102 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:33:57.111 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:33:57.120 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:33:57.143 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 13 00 FA 2014-09-21 12:33:57.163 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 13 00 2014-09-21 12:33:57.168 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 19 2014-09-21 12:33:57.173 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:33:57.178 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:33:57.182 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:33:57.188 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 93ms/4497ms. 2014-09-21 12:34:08.004 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-21 12:34:08.022 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-21 12:34:08.026 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Ping Node) 2014-09-21 12:34:08.033 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 12:34:08.040 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 12:34:08.046 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-21 12:34:08.051 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:08.056 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:08.060 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-21 12:34:08.076 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Ping Node, requested = Node Complete 2014-09-21 12:34:08.082 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:34:08.086 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-21 12:34:08.094 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 12:34:08.099 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:34:08.106 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 12:34:08.111 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class BATTERY 2014-09-21 12:34:08.116 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-21 12:34:08.122 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:34:08.127 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 12:34:08.137 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-21 12:34:08.149 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-21 12:34:08.152 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:34:08.156 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 12:34:08.160 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 12:34:08.171 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-21 12:34:08.176 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-21 12:34:08.191 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-21 12:34:08.195 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-21 12:34:08.210 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:08.214 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:08.218 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-21 12:34:08.231 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:34:08.247 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-21 12:34:08.305 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-21 12:34:08.311 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:34:08.317 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 12:34:08.330 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-21 12:34:08.340 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-21 12:34:08.350 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 12:34:08.359 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 12:34:08.371 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-21 12:34:08.390 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-21 12:34:08.393 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:34:08.398 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-21 12:34:08.406 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-21 12:34:08.413 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-21 12:34:08.423 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:08.430 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:08.440 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 2 messages in the wake-up queue. 2014-09-21 12:34:08.447 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 20 2014-09-21 12:34:08.454 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:34:08.458 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 12:34:08.468 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 14 99 2014-09-21 12:34:08.479 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 14 99 2014-09-21 12:34:08.493 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:34:08.503 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:34:08.509 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:34:08.531 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 14 00 FD 2014-09-21 12:34:08.558 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 14 00 2014-09-21 12:34:08.568 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 20 2014-09-21 12:34:08.577 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:34:08.585 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:08.590 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:08.600 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 21 2014-09-21 12:34:08.606 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:34:08.613 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 127ms/4497ms. 2014-09-21 12:34:08.617 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:34:08.635 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 15 58 2014-09-21 12:34:08.644 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 15 58 2014-09-21 12:34:08.641 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-21 12:34:08.673 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-21 12:34:08.678 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 12:34:08.691 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 12:34:08.695 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 12:34:08.710 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-21 12:34:08.714 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-21 12:34:08.719 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-21 12:34:08.728 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-21 12:34:08.741 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:08.745 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:08.749 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-21 12:34:08.767 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 12:34:08.772 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 13: Serializing to file etc/zwave/1.6/node13.xml 2014-09-21 12:34:08.890 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 13: Initialisation complete. 2014-09-21 12:34:08.893 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:08.896 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:08.904 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 249ms/4497ms. 2014-09-21 12:34:08.907 ERROR o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1062]- Message cancelled by controller (CAN), resending 2014-09-21 12:34:09.021 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 12:34:09.024 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:34:09.036 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 15 58 2014-09-21 12:34:09.063 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 15 58 2014-09-21 12:34:09.077 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:34:09.091 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 20ms/4497ms. 2014-09-21 12:34:09.098 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:34:09.101 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:34:09.112 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 15 00 FC 2014-09-21 12:34:09.133 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 15 00 2014-09-21 12:34:09.142 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 21 2014-09-21 12:34:09.150 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:34:09.162 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-21 12:34:09.189 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-21 12:34:09.203 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 12:34:09.212 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 12:34:09.219 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 12:34:09.229 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-21 12:34:09.236 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:09.245 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:09.263 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-21 12:34:09.279 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:09.290 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:11.301 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-21 12:34:11.308 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-21 12:34:11.318 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 12:34:11.327 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 22 2014-09-21 12:34:11.335 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 12:34:11.340 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 12:34:11.350 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 16 55 2014-09-21 12:34:11.357 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 16 55 2014-09-21 12:34:11.368 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 12:34:11.382 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 12:34:11.386 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 12:34:11.403 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 16 00 FF 2014-09-21 12:34:11.411 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 16 00 2014-09-21 12:34:11.415 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 22 2014-09-21 12:34:11.419 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 12:34:11.424 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 12:34:11.428 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 12:34:11.434 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-21 12:34:11.438 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 77ms/4497ms. OpenHAB:/openhab/current/logs #

cdjackson commented 10 years ago

Ohhh, it was because you were talking about the latest version on the HABmin website.

Sorry - I should have been clearer...

I got the 732 snapshot now, but unfortunately the sitemap is broken somehow. I noticed it also with snapshot 730 and I went back to an older version.

I appended the zwave log, it catches at least one update from the thermostat. Because of the missing website I can't change the value. I think I'm not the only one who has problems with the latest updates.

I’ve not pushed this change to the main repo as I’d prefer to make sure this works first, so please can you try the version on the HABmin size - the zwave binding this time :) Testing may be an issue though if you can’t update the sitemap - maybe you can roll back to an earlier version of OH core?=

Thomas38 commented 10 years ago

Sorry but I don't understand how to get the zwave binding you are talking about. What do you mean by "...try the version on the HABmin size" ? Could you provide me a link to get the binding ?

cdjackson commented 10 years ago

In the addons folder on the HABmin site there are 2 JARS - HABmin, and ZWave…

https://github.com/cdjackson/HABmin/blob/master/addons/org.openhab.binding.zwave-1.6.0-SNAPSHOT.jar

Thomas38 commented 10 years ago

Ahh, now I unerstand what you are talking about the HABmin site. Because I used automated scripts to pull the stuff I was not aware of the site names.

It works complete different than before, some changes are lost. After the first wake up I changed the value from 21.0 to 19.0 (I looged changes of this item): 13:09:12.279 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.5 13:09:13.000 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.0 13:09:13.762 INFO o.openhab.model.script.Update[:53]- Temperature set to 19.5 13:09:14.733 INFO o.openhab.model.script.Update[:53]- Temperature set to 19.0 After the second wakeup: 13:13:11.152 INFO o.openhab.model.script.Update[:53]- Temperature set to 21.0 13:13:11.815 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.5 The value remains at the first change....

2014-09-21 13:05:49.592 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:05:54.601 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:05:58.811 DEBUG o.o.b.z.i.ZWaveActivator[:36]- Z-Wave binding has been started. 2014-09-21 13:05:59.487 INFO o.o.b.z.i.ZWaveActiveBinding[:301]- Update config, port = /dev/ttyAMA0 2014-09-21 13:05:59.528 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:05:59.611 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:05:59.707 INFO o.o.b.z.i.p.ZWaveController[:136]- Starting Z-Wave controller 2014-09-21 13:05:59.711 INFO o.o.b.z.i.p.ZWaveController[:141]- Z-Wave timeout is set to 5000ms. 2014-09-21 13:05:59.727 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-21 13:05:59.783 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-21 13:05:59.792 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-21 13:05:59.795 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-21 13:06:01.135 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetVersion (0x15), type = Request (0x00) 2014-09-21 13:06:01.165 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:06:01.174 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:06:01.212 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 15 E9 2014-09-21 13:06:01.226 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = MemoryGetId (0x20), type = Request (0x00) 2014-09-21 13:06:01.239 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:06:01.243 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 15 E9 2014-09-21 13:06:01.279 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetCapabilities (0x07), type = Request (0x00) 2014-09-21 13:06:01.311 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 13:06:01.325 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 10 01 15 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 93 2014-09-21 13:06:01.343 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:30]- Get SUC NodeID 2014-09-21 13:06:01.373 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetSucNodeId (0x56), type = Request (0x00) 2014-09-21 13:06:01.389 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-21 13:06:01.559 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetVersion (0x15), type = Response (0x01), payload = 5A 2D 57 61 76 65 20 33 2E 34 32 00 01 2014-09-21 13:06:01.832 DEBUG o.o.b.z.i.p.s.GetVersionMessageClass[:39]- Got MessageGetVersion response. Version = Z-Wave 3.42, Library Type = 0x01 2014-09-21 13:06:01.847 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:01.859 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:01.904 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 641ms/641ms. 2014-09-21 13:06:01.912 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-21 13:06:01.944 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 20 DC 2014-09-21 13:06:01.968 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 20 DC 2014-09-21 13:06:01.988 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 01 20 CA 45 9E 37 01 F1 2014-09-21 13:06:02.035 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = MemoryGetId (0x20), type = Response (0x01), payload = CA 45 9E 37 01 2014-09-21 13:06:02.053 DEBUG o.o.b.z.i.p.s.MemoryGetIdMessageClass[:41]- Got MessageMemoryGetId response. Home id = 0xCA459E37, Controller Node id = 1 2014-09-21 13:06:02.062 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:02.072 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:02.098 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 118ms/641ms. 2014-09-21 13:06:02.105 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 13:06:02.118 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 07 FB 2014-09-21 13:06:02.136 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 07 FB 2014-09-21 13:06:02.231 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 2B 01 07 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 7C 2014-09-21 13:06:02.604 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetCapabilities (0x07), type = Response (0x01), payload = 04 02 01 47 00 02 00 03 FE 00 16 80 0C 00 00 00 E3 97 7D 80 07 00 00 80 00 00 00 00 00 00 00 00 00 00 02 00 00 80 07 00 2014-09-21 13:06:02.638 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:45]- API Version = 4.2 2014-09-21 13:06:02.663 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:46]- Manufacture ID = 0x147 2014-09-21 13:06:02.681 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:47]- Device Type = 0x2 2014-09-21 13:06:02.690 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:48]- Device ID = 0x3 2014-09-21 13:06:02.695 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetInitData 2014-09-21 13:06:02.701 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiApplicationNodeInfo 2014-09-21 13:06:02.706 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationCommandHandler 2014-09-21 13:06:02.712 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetControllerCapabilities 2014-09-21 13:06:02.718 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSetTimeouts 2014-09-21 13:06:02.723 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiGetCapabilities 2014-09-21 13:06:02.729 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SerialApiSoftReset 2014-09-21 13:06:02.748 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendNodeInfo 2014-09-21 13:06:02.754 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendData 2014-09-21 13:06:02.764 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetVersion 2014-09-21 13:06:02.774 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: MemoryGetId 2014-09-21 13:06:02.783 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReadMemory 2014-09-21 13:06:02.789 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: WriteMemory 2014-09-21 13:06:02.795 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IdentifyNode 2014-09-21 13:06:02.801 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetDefault 2014-09-21 13:06:02.806 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignReturnRoute 2014-09-21 13:06:02.812 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteReturnRoute 2014-09-21 13:06:02.817 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeNeighborUpdate 2014-09-21 13:06:02.823 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ApplicationUpdate 2014-09-21 13:06:02.828 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AddNodeToNetwork 2014-09-21 13:06:02.834 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveNodeFromNetwork 2014-09-21 13:06:02.839 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ControllerChange 2014-09-21 13:06:02.844 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetLearnMode 2014-09-21 13:06:02.849 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: AssignSucReturnRoute 2014-09-21 13:06:02.855 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNetworkUpdate 2014-09-21 13:06:02.860 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SetSucNodeID 2014-09-21 13:06:02.865 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: DeleteSUCReturnRoute 2014-09-21 13:06:02.870 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetSucNodeId 2014-09-21 13:06:02.876 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: SendSucId 2014-09-21 13:06:02.881 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RequestNodeInfo 2014-09-21 13:06:02.886 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: RemoveFailedNodeID 2014-09-21 13:06:02.899 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: IsFailedNodeID 2014-09-21 13:06:02.907 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: ReplaceFailedNode 2014-09-21 13:06:02.914 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:59]- Supports: GetRoutingInfo 2014-09-21 13:06:02.920 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xd2 2014-09-21 13:06:02.927 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf0 2014-09-21 13:06:02.933 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf1 2014-09-21 13:06:02.939 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf2 2014-09-21 13:06:02.945 DEBUG o.o.b.z.i.p.s.SerialApiGetCapabilitiesMessageClass[:56]- Supports: Unknown Class 0xf3 2014-09-21 13:06:02.950 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:02.956 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:02.962 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 819ms/819ms. 2014-09-21 13:06:02.967 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:06:02.982 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SerialApiGetInitData (0x02), type = Request (0x00) 2014-09-21 13:06:02.983 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 56 AA 2014-09-21 13:06:02.991 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:06:03.003 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 56 AA 2014-09-21 13:06:03.014 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 56 00 AC 2014-09-21 13:06:03.026 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetSucNodeId (0x56), type = Response (0x01), payload = 00 2014-09-21 13:06:03.030 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:41]- Got SUC NodeID response. 2014-09-21 13:06:03.035 DEBUG o.o.b.z.i.p.s.GetSucNodeIdMessageClass[:47]- No SUC Node is set 2014-09-21 13:06:03.039 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:03.044 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:03.048 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 40ms/819ms. 2014-09-21 13:06:03.055 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:06:03.068 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = GetControllerCapabilities (0x05), type = Request (0x00) 2014-09-21 13:06:03.076 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:06:03.071 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 02 FE 2014-09-21 13:06:03.097 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 02 FE 2014-09-21 13:06:03.169 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 25 01 02 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 9A 2014-09-21 13:06:03.254 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SerialApiGetInitData (0x02), type = Response (0x01), payload = 05 00 1D 67 3E 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 03 01 2014-09-21 13:06:03.261 DEBUG o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:39]- Got MessageSerialApiGetInitData response. 2014-09-21 13:06:03.266 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 1: Node found 2014-09-21 13:06:03.271 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 2: Node found 2014-09-21 13:06:03.277 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 3: Node found 2014-09-21 13:06:03.287 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 6: Node found 2014-09-21 13:06:03.295 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 7: Node found 2014-09-21 13:06:03.306 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 10: Node found 2014-09-21 13:06:03.314 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 11: Node found 2014-09-21 13:06:03.322 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 12: Node found 2014-09-21 13:06:03.331 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 13: Node found 2014-09-21 13:06:03.341 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:57]- NODE 14: Node found 2014-09-21 13:06:03.354 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:65]- ZWave Controller using Controller API 2014-09-21 13:06:03.362 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:66]- ZWave Controller is Primary Controller 2014-09-21 13:06:03.372 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:67]- ------------Number of Nodes Found Registered to ZWave Controller------------ 2014-09-21 13:06:03.382 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:68]- # Nodes = 10 2014-09-21 13:06:03.392 INFO o.o.b.z.i.p.s.SerialApiGetInitDataMessageClass[:69]- ---------------------------------------------------------------------------- 2014-09-21 13:06:03.402 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:03.411 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:03.422 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 320ms/819ms. 2014-09-21 13:06:03.427 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:06:03.456 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 05 F9 2014-09-21 13:06:03.476 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 03 00 05 F9 2014-09-21 13:06:04.532 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:04.614 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:05.854 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:05.878 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 1: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:05.884 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:06:05.891 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:05.902 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:05.906 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 13:06:05.912 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:05.919 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:05.924 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-21 13:06:05.932 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 6: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:05.939 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 6: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:05.943 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-21 13:06:05.950 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:05.956 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:05.961 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 5 2014-09-21 13:06:05.966 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:05.974 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:05.978 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-21 13:06:05.997 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:06.007 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:06.011 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-21 13:06:06.017 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:06.025 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:06.029 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:06.036 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:06.047 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:06.051 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 13:06:06.057 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Empty New Node, requested = Protocol Information 2014-09-21 13:06:06.065 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = IdentifyNode (0x41), type = Request (0x00) 2014-09-21 13:06:06.069 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-21 13:06:06.079 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 13:06:06.094 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 13:06:06.102 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 13:06:06.106 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 13:06:06.111 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 13:06:06.115 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 13:06:06.125 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 13:06:06.130 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:06.134 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:06.139 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 2652ms/2652ms. 2014-09-21 13:06:06.145 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-21 13:06:06.155 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 01 BB 2014-09-21 13:06:06.162 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 13:06:06.177 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 01 BB 2014-09-21 13:06:06.186 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 13:06:06.190 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 13:06:06.195 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 13:06:06.201 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 13:06:06.205 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 13:06:06.210 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 13:06:06.220 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 05 08 F7 2014-09-21 13:06:06.231 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = GetControllerCapabilities (0x05), type = Response (0x01), payload = 08 2014-09-21 13:06:06.235 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:54]- Controller is secondary = false 2014-09-21 13:06:06.240 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:55]- Controller is on other network = false 2014-09-21 13:06:06.245 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:56]- Node ID Server is present = false 2014-09-21 13:06:06.261 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:57]- Controller is real primary = true 2014-09-21 13:06:06.265 DEBUG o.o.b.z.i.p.s.GetControllerCapabilitiesMessageClass[:58]- Controller is SUC = false 2014-09-21 13:06:06.288 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 93 16 00 02 02 01 32 2014-09-21 13:06:06.342 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 93 16 00 02 02 01 2014-09-21 13:06:06.355 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 1: ProtocolInfo 2014-09-21 13:06:06.366 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 1: Listening = true 2014-09-21 13:06:06.375 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 1: Routing = false 2014-09-21 13:06:06.384 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 1: Version = 4 2014-09-21 13:06:06.393 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 1: fLIRS = false 2014-09-21 13:06:06.415 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 1: Basic = Static Controller 0x02 2014-09-21 13:06:06.430 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 1: Generic = Static Controller 0x02 2014-09-21 13:06:06.449 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 1: Specific = PC Controller 0x01 2014-09-21 13:06:06.462 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml 2014-09-21 13:06:06.471 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:127]- NODE 1: Deserializing from file etc/zwave/1.6/node1.xml failed, file does not exist. 2014-09-21 13:06:06.496 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-21 13:06:06.518 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:06.531 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-21 13:06:06.543 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 1: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:06.566 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 1: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:06.579 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:98]- NODE 1: Initialisation complete. 2014-09-21 13:06:06.588 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:06.598 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:06.608 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 421ms/2652ms. 2014-09-21 13:06:06.614 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 13:06:06.635 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 02 B8 2014-09-21 13:06:06.653 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 02 B8 2014-09-21 13:06:06.680 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-21 13:06:06.727 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-21 13:06:06.737 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 2: ProtocolInfo 2014-09-21 13:06:06.745 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 2: Listening = false 2014-09-21 13:06:06.754 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 2: Routing = true 2014-09-21 13:06:06.762 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 2: Version = 4 2014-09-21 13:06:06.770 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 2: fLIRS = false 2014-09-21 13:06:06.787 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 2: Basic = Routing Slave 0x04 2014-09-21 13:06:06.798 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 2: Generic = Binary Sensor 0x20 2014-09-21 13:06:06.809 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 2: Specific = Routing Binary Sensor 0x01 2014-09-21 13:06:06.819 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 2: Deserializing from file etc/zwave/1.6/node2.xml 2014-09-21 13:06:07.442 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BATTERY to the list of supported command classes. 2014-09-21 13:06:07.453 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:07.463 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-21 13:06:07.475 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:07.486 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:07.495 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 13:06:07.516 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:07.524 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 2: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:07.531 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 2: Restored from config. 2014-09-21 13:06:07.537 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 2: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:07.548 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 2: Creating new message for application command No Operation 2014-09-21 13:06:07.562 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 2: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:07.574 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 2 2014-09-21 13:06:07.583 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 13:06:07.591 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:07.599 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:07.611 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 950ms/2652ms. 2014-09-21 13:06:07.615 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 13:06:07.630 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 03 B9 2014-09-21 13:06:07.640 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 03 B9 2014-09-21 13:06:07.653 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-21 13:06:07.673 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-21 13:06:07.676 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 3: ProtocolInfo 2014-09-21 13:06:07.685 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 3: Listening = false 2014-09-21 13:06:07.693 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 3: Routing = true 2014-09-21 13:06:07.701 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 3: Version = 4 2014-09-21 13:06:07.709 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 3: fLIRS = false 2014-09-21 13:06:07.726 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 3: Basic = Routing Slave 0x04 2014-09-21 13:06:07.737 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 3: Generic = Binary Sensor 0x20 2014-09-21 13:06:07.750 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 3: Specific = Routing Binary Sensor 0x01 2014-09-21 13:06:07.756 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 3: Deserializing from file etc/zwave/1.6/node3.xml 2014-09-21 13:06:08.025 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BATTERY to the list of supported command classes. 2014-09-21 13:06:08.039 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:08.048 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-21 13:06:08.060 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:08.068 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:08.074 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 13:06:08.080 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:08.085 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 3: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:08.092 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 3: Restored from config. 2014-09-21 13:06:08.099 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:08.107 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 3: Creating new message for application command No Operation 2014-09-21 13:06:08.113 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:08.118 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 3 2014-09-21 13:06:08.124 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 13:06:08.128 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:08.134 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:08.139 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 495ms/2652ms. 2014-09-21 13:06:08.146 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 13:06:08.155 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 06 BC 2014-09-21 13:06:08.164 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 06 BC 2014-09-21 13:06:08.181 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 0F 01 F3 2014-09-21 13:06:08.198 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 0F 01 2014-09-21 13:06:08.202 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 6: ProtocolInfo 2014-09-21 13:06:08.207 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 6: Listening = true 2014-09-21 13:06:08.211 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 6: Routing = true 2014-09-21 13:06:08.216 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 6: Version = 4 2014-09-21 13:06:08.221 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 6: fLIRS = false 2014-09-21 13:06:08.239 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 6: Basic = Routing Slave 0x04 2014-09-21 13:06:08.250 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 6: Generic = Repeater Slave 0x0f 2014-09-21 13:06:08.257 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 6: Specific = Basic Repeater Slave 0x01 2014-09-21 13:06:08.263 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 6: Deserializing from file etc/zwave/1.6/node6.xml 2014-09-21 13:06:09.539 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:09.618 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:09.824 WARN o.o.b.z.i.p.ZWaveController$WatchDogTimerTask[:1114]- Threads not alive, respawning 2014-09-21 13:06:09.832 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:944]- Stopped Z-Wave send thread 2014-09-21 13:06:09.842 INFO o.o.b.z.i.p.ZWaveController[:381]- Disconnected from serial port 2014-09-21 13:06:09.845 INFO o.o.b.z.i.p.ZWaveController[:299]- Connecting to serial port /dev/ttyAMA0 2014-09-21 13:06:09.860 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1000]- Starting Z-Wave receive thread 2014-09-21 13:06:09.864 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:857]- Starting Z-Wave send thread 2014-09-21 13:06:09.863 INFO o.o.b.z.i.p.ZWaveController[:312]- Serial port is initialized 2014-09-21 13:06:09.877 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:09.888 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 07 BD 2014-09-21 13:06:09.897 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 07 BD 2014-09-21 13:06:09.911 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-21 13:06:09.930 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-21 13:06:09.934 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 7: ProtocolInfo 2014-09-21 13:06:09.938 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 7: Listening = true 2014-09-21 13:06:09.943 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 7: Routing = true 2014-09-21 13:06:09.948 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 7: Version = 4 2014-09-21 13:06:09.953 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 7: fLIRS = false 2014-09-21 13:06:09.971 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 7: Basic = Routing Slave 0x04 2014-09-21 13:06:09.981 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 7: Generic = Binary Switch 0x10 2014-09-21 13:06:09.992 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 7: Specific = Binary Power Switch 0x01 2014-09-21 13:06:10.004 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 7: Deserializing from file etc/zwave/1.6/node7.xml 2014-09-21 13:06:10.202 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:338]- NODE 7: Config file differs from controller information, ignoring config. 2014-09-21 13:06:10.216 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x00 2014-09-21 13:06:10.222 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:10.228 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x20 2014-09-21 13:06:10.234 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:10.240 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x25 2014-09-21 13:06:10.246 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-21 13:06:10.252 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x27 2014-09-21 13:06:10.259 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class SWITCH_ALL (0x27) 2014-09-21 13:06:10.265 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:10.275 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 7: Creating new message for application command No Operation 2014-09-21 13:06:10.287 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:10.296 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 4 2014-09-21 13:06:10.306 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:10.314 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:10.322 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:10.330 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 428ms/2652ms. 2014-09-21 13:06:10.337 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:10.356 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0A B0 2014-09-21 13:06:10.371 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0A B0 2014-09-21 13:06:10.385 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 10 01 EC 2014-09-21 13:06:10.422 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 10 01 2014-09-21 13:06:10.430 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 10: ProtocolInfo 2014-09-21 13:06:10.438 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 10: Listening = true 2014-09-21 13:06:10.445 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 10: Routing = true 2014-09-21 13:06:10.456 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 10: Version = 4 2014-09-21 13:06:10.464 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 10: fLIRS = false 2014-09-21 13:06:10.476 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 10: Basic = Routing Slave 0x04 2014-09-21 13:06:10.487 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 10: Generic = Binary Switch 0x10 2014-09-21 13:06:10.493 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 10: Specific = Binary Power Switch 0x01 2014-09-21 13:06:10.497 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 10: Deserializing from file etc/zwave/1.6/node10.xml 2014-09-21 13:06:10.826 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MULTI_INSTANCE to the list of supported command classes. 2014-09-21 13:06:10.835 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:10.840 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:10.846 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:10.853 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 13:06:10.858 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:10.864 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class SWITCH_BINARY to the list of supported command classes. 2014-09-21 13:06:10.875 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 10: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:10.884 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 10: Restored from config. 2014-09-21 13:06:10.891 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:10.901 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 10: Creating new message for application command No Operation 2014-09-21 13:06:10.907 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:10.913 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 5 2014-09-21 13:06:10.919 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:10.924 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:10.929 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:10.935 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 559ms/2652ms. 2014-09-21 13:06:10.940 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:10.950 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0B B1 2014-09-21 13:06:10.958 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0B B1 2014-09-21 13:06:10.974 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 12 02 6D 2014-09-21 13:06:10.996 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 12 02 2014-09-21 13:06:11.013 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 11: ProtocolInfo 2014-09-21 13:06:11.020 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 11: Listening = false 2014-09-21 13:06:11.028 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 11: Routing = true 2014-09-21 13:06:11.036 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 11: Version = 4 2014-09-21 13:06:11.045 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 11: fLIRS = false 2014-09-21 13:06:11.059 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 11: Basic = Routing Slave 0x04 2014-09-21 13:06:11.070 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 11: Generic = Remote Switch 0x12 2014-09-21 13:06:11.079 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 11: Specific = Multilevel Remote Switch 0x02 2014-09-21 13:06:11.092 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 11: Deserializing from file etc/zwave/1.6/node11.xml 2014-09-21 13:06:11.281 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BATTERY to the list of supported command classes. 2014-09-21 13:06:11.290 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:11.300 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:11.309 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:11.319 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 13:06:11.328 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 13:06:11.335 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:11.343 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 11: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:11.353 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 11: Restored from config. 2014-09-21 13:06:11.363 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 11: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:11.371 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 11: Creating new message for application command No Operation 2014-09-21 13:06:11.381 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 11: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:11.389 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 6 2014-09-21 13:06:11.396 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:11.404 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:11.411 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:11.420 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 459ms/2652ms. 2014-09-21 13:06:11.424 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:11.437 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0C B6 2014-09-21 13:06:11.445 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0C B6 2014-09-21 13:06:11.456 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 D3 9C 00 04 11 01 ED 2014-09-21 13:06:11.470 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = D3 9C 00 04 11 01 2014-09-21 13:06:11.473 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 12: ProtocolInfo 2014-09-21 13:06:11.476 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 12: Listening = true 2014-09-21 13:06:11.479 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 12: Routing = true 2014-09-21 13:06:11.483 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 12: Version = 4 2014-09-21 13:06:11.486 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 12: fLIRS = false 2014-09-21 13:06:11.498 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 12: Basic = Routing Slave 0x04 2014-09-21 13:06:11.522 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 12: Generic = Multi-Level Switch 0x11 2014-09-21 13:06:11.540 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 12: Specific = Multilevel Power Switch 0x01 2014-09-21 13:06:11.551 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 12: Deserializing from file etc/zwave/1.6/node12.xml 2014-09-21 13:06:11.754 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class SWITCH_MULTILEVEL to the list of supported command classes. 2014-09-21 13:06:11.773 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:11.784 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:11.799 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:11.813 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 13:06:11.823 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:11.842 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 12: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:11.848 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 12: Restored from config. 2014-09-21 13:06:11.859 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:11.871 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 12: Creating new message for application command No Operation 2014-09-21 13:06:11.883 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:11.891 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 7 2014-09-21 13:06:11.900 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:11.909 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:11.919 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:11.930 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 482ms/2652ms. 2014-09-21 13:06:11.934 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:11.949 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0D B7 2014-09-21 13:06:11.965 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0D B7 2014-09-21 13:06:11.985 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 08 04 71 2014-09-21 13:06:12.006 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 08 04 2014-09-21 13:06:12.010 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 13: ProtocolInfo 2014-09-21 13:06:12.014 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 13: Listening = false 2014-09-21 13:06:12.019 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 13: Routing = true 2014-09-21 13:06:12.024 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 13: Version = 4 2014-09-21 13:06:12.029 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 13: fLIRS = false 2014-09-21 13:06:12.037 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 13: Basic = Routing Slave 0x04 2014-09-21 13:06:12.042 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 13: Generic = Thermostat 0x08 2014-09-21 13:06:12.048 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 13: Specific = Setpoint Thermostat 0x04 2014-09-21 13:06:12.054 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 13: Deserializing from file etc/zwave/1.6/node13.xml 2014-09-21 13:06:12.187 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BATTERY to the list of supported command classes. 2014-09-21 13:06:12.196 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:12.201 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:12.207 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 13:06:12.214 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class THERMOSTAT_SETPOINT to the list of supported command classes. 2014-09-21 13:06:12.219 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:12.225 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 13: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:12.230 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 13: Restored from config. 2014-09-21 13:06:12.238 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:12.245 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 13: Creating new message for application command No Operation 2014-09-21 13:06:12.252 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:12.257 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 8 2014-09-21 13:06:12.262 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:12.267 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:12.272 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:12.278 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 305ms/2652ms. 2014-09-21 13:06:12.282 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:12.292 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 41 0E B4 2014-09-21 13:06:12.300 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 41 0E B4 2014-09-21 13:06:12.313 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 01 41 53 9C 00 04 20 01 5C 2014-09-21 13:06:12.337 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = IdentifyNode (0x41), type = Response (0x01), payload = 53 9C 00 04 20 01 2014-09-21 13:06:12.351 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:47]- NODE 14: ProtocolInfo 2014-09-21 13:06:12.359 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:56]- NODE 14: Listening = false 2014-09-21 13:06:12.367 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:57]- NODE 14: Routing = true 2014-09-21 13:06:12.376 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:58]- NODE 14: Version = 4 2014-09-21 13:06:12.383 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:59]- NODE 14: fLIRS = false 2014-09-21 13:06:12.397 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:71]- NODE 14: Basic = Routing Slave 0x04 2014-09-21 13:06:12.404 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:78]- NODE 14: Generic = Binary Sensor 0x20 2014-09-21 13:06:12.411 DEBUG o.o.b.z.i.p.s.IdentifyNodeMessageClass[:85]- NODE 14: Specific = Routing Binary Sensor 0x01 2014-09-21 13:06:12.416 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:124]- NODE 14: Deserializing from file etc/zwave/1.6/node14.xml 2014-09-21 13:06:12.571 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_ALARM to the list of supported command classes. 2014-09-21 13:06:12.582 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BATTERY to the list of supported command classes. 2014-09-21 13:06:12.588 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class BASIC to the list of supported command classes. 2014-09-21 13:06:12.593 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_BINARY to the list of supported command classes. 2014-09-21 13:06:12.598 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:12.604 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:12.612 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class WAKE_UP to the list of supported command classes. 2014-09-21 13:06:12.617 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 13:06:12.623 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class NO_OPERATION to the list of supported command classes. 2014-09-21 13:06:12.628 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:12.639 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 14: Adding command class SENSOR_MULTILEVEL to the list of supported command classes. 2014-09-21 13:06:12.647 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:364]- NODE 14: Restored from config. 2014-09-21 13:06:12.659 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Protocol Information, requested = Ping Node 2014-09-21 13:06:12.670 DEBUG o.o.b.z.i.p.c.ZWaveNoOperationCommandClass[:75]- NODE 14: Creating new message for application command No Operation 2014-09-21 13:06:12.678 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:12.683 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 9 2014-09-21 13:06:12.688 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:12.694 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:12.699 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:12.705 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 401ms/2652ms. 2014-09-21 13:06:12.711 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:12.725 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 07 01 00 25 04 C3 2014-09-21 13:06:12.750 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 07 01 00 25 04 C3 2014-09-21 13:06:12.772 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:12.818 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:12.826 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:12.848 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 04 00 ED 2014-09-21 13:06:12.858 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 04 00 2014-09-21 13:06:12.873 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 4 2014-09-21 13:06:12.877 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:12.883 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Ping Node, requested = Node Information 2014-09-21 13:06:12.891 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = RequestNodeInfo (0x60), type = Request (0x00) 2014-09-21 13:06:12.896 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:12.900 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:12.903 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:12.908 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 143ms/2652ms. 2014-09-21 13:06:12.912 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:12.919 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 04 00 60 07 9C 2014-09-21 13:06:12.926 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 04 00 60 07 9C 2014-09-21 13:06:12.936 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 60 01 9B 2014-09-21 13:06:12.946 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = RequestNodeInfo (0x60), type = Response (0x01), payload = 01 2014-09-21 13:06:12.951 DEBUG o.o.b.z.i.p.s.RequestNodeInfoMessageClass[:38]- Request node info successfully placed on stack. 2014-09-21 13:06:13.026 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 15 00 49 84 07 0F 04 10 01 25 32 27 2C 2B 70 85 56 72 86 EF 82 37 2014-09-21 13:06:13.072 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 07 0F 04 10 01 25 32 27 2C 2B 70 85 56 72 86 EF 82 2014-09-21 13:06:13.123 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 7: Application update request, node information received. 2014-09-21 13:06:13.137 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x25 2014-09-21 13:06:13.145 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x32 2014-09-21 13:06:13.150 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class METER to the list of supported command classes. 2014-09-21 13:06:13.155 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x27 2014-09-21 13:06:13.160 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class SWITCH_ALL (0x27) 2014-09-21 13:06:13.165 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x2C 2014-09-21 13:06:13.169 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class SCENE_ACTUATOR_CONF (0x2c) 2014-09-21 13:06:13.173 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x2B 2014-09-21 13:06:13.179 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class SCENE_ACTIVATION to the list of supported command classes. 2014-09-21 13:06:13.183 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x70 2014-09-21 13:06:13.188 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class CONFIGURATION to the list of supported command classes. 2014-09-21 13:06:13.209 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x85 2014-09-21 13:06:13.221 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class ASSOCIATION to the list of supported command classes. 2014-09-21 13:06:13.228 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x56 2014-09-21 13:06:13.234 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:199]- Unsupported command class 0x56 2014-09-21 13:06:13.240 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x72 2014-09-21 13:06:13.250 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class MANUFACTURER_SPECIFIC to the list of supported command classes. 2014-09-21 13:06:13.258 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x86 2014-09-21 13:06:13.263 DEBUG o.o.b.z.i.protocol.ZWaveNode[:457]- NODE 7: Adding command class VERSION to the list of supported command classes. 2014-09-21 13:06:13.271 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Node Information, requested = Manufacture Name and Product Identification 2014-09-21 13:06:13.279 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:103]- NODE 7: Creating new message for application command MANUFACTURER_SPECIFIC_GET 2014-09-21 13:06:13.284 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:13.290 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 10 2014-09-21 13:06:13.295 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:13.301 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:13.306 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:13.312 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 383ms/2652ms. 2014-09-21 13:06:13.316 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:13.332 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 07 02 72 04 25 0A B9 2014-09-21 13:06:13.347 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 07 02 72 04 25 0A B9 2014-09-21 13:06:13.360 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:13.378 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:13.392 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:13.401 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0A 00 E3 2014-09-21 13:06:13.419 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0A 00 2014-09-21 13:06:13.430 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 10 2014-09-21 13:06:13.435 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:13.448 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 72 05 00 86 00 03 00 18 10 2014-09-21 13:06:13.464 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 72 05 00 86 00 03 00 18 2014-09-21 13:06:13.474 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Manufacture Name and Product Identification) 2014-09-21 13:06:13.481 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class MANUFACTURER_SPECIFIC (0x72) 2014-09-21 13:06:13.487 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:66]- NODE 7: Received Manufacture Specific Information 2014-09-21 13:06:13.496 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:83]- NODE 7: Manufacturer ID = 0x0086 2014-09-21 13:06:13.500 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:84]- NODE 7: Device Type = 0x0003 2014-09-21 13:06:13.506 DEBUG o.o.b.z.i.p.c.ZWaveManufacturerSpecificCommandClass[:85]- NODE 7: Device ID = 0x0018 2014-09-21 13:06:13.513 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Manufacture Name and Product Identification, requested = Node Version 2014-09-21 13:06:13.522 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:167]- NODE 7: Creating new message for application command VERSION_COMMAND_CLASS_GET command class METER 2014-09-21 13:06:13.527 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:13.533 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 11 2014-09-21 13:06:13.538 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:13.543 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:13.549 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:13.555 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 202ms/2652ms. 2014-09-21 13:06:13.567 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:13.579 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 86 13 32 25 0B 6B 2014-09-21 13:06:13.597 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 86 13 32 25 0B 6B 2014-09-21 13:06:13.614 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:13.627 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:13.631 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:13.650 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0B 00 E2 2014-09-21 13:06:13.664 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0B 00 2014-09-21 13:06:13.669 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 11 2014-09-21 13:06:13.675 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:13.691 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 07 04 86 14 32 03 51 2014-09-21 13:06:13.703 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 04 86 14 32 03 2014-09-21 13:06:13.707 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Version) 2014-09-21 13:06:13.713 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class VERSION (0x86) 2014-09-21 13:06:13.717 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:77]- NODE 7: Received Version Request 2014-09-21 13:06:13.722 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:97]- Process Version Command Class Report 2014-09-21 13:06:13.743 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:107]- NODE 7: Requested Command Class = METER (0x32) 2014-09-21 13:06:13.764 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:108]- NODE 7: Version = 3 2014-09-21 13:06:13.787 DEBUG o.o.b.z.i.p.c.ZWaveVersionCommandClass[:124]- NODE 7: Version = 3, version set. Enabling extra functionality. 2014-09-21 13:06:13.814 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Node Version, requested = Command Class Instances 2014-09-21 13:06:13.852 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:178]- NODE 7: Found initializable command class METER 2014-09-21 13:06:13.870 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:239]- Creating new message for application command METER_SUPPORTED_GET for node 7 2014-09-21 13:06:13.887 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:13.898 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 12 2014-09-21 13:06:13.907 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:13.912 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:13.916 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:13.922 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 315ms/2652ms. 2014-09-21 13:06:13.925 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:13.936 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 07 02 32 03 25 0C F8 2014-09-21 13:06:13.952 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 07 02 32 03 25 0C F8 2014-09-21 13:06:13.965 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:13.981 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:13.985 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:14.001 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0C 00 E5 2014-09-21 13:06:14.011 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0C 00 2014-09-21 13:06:14.015 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 12 2014-09-21 13:06:14.019 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:14.041 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 07 04 32 04 81 35 70 2014-09-21 13:06:14.052 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 04 32 04 81 35 2014-09-21 13:06:14.058 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Static Information) 2014-09-21 13:06:14.061 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:06:14.076 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:06:14.088 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:174]- Identified meter type Electric (0x01) 2014-09-21 13:06:14.102 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:186]- Meter Scale = kWh (0x00) 2014-09-21 13:06:14.108 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:186]- Meter Scale = W (0x02) 2014-09-21 13:06:14.112 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:186]- Meter Scale = V (0x04) 2014-09-21 13:06:14.116 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:186]- Meter Scale = A (0x05) 2014-09-21 13:06:14.121 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Static Information, requested = Frequently Changed Information 2014-09-21 13:06:14.127 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class METER 2014-09-21 13:06:14.131 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:06:14.137 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:14.141 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:06:14.145 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:14.149 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:06:14.158 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:14.163 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:06:14.167 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:14.171 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 13 2014-09-21 13:06:14.175 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:14.180 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 14 2014-09-21 13:06:14.184 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 13:06:14.188 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 15 2014-09-21 13:06:14.193 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 10 2014-09-21 13:06:14.197 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 16 2014-09-21 13:06:14.201 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 11 2014-09-21 13:06:14.205 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 7: Found dynamic state command class SWITCH_BINARY 2014-09-21 13:06:14.210 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 7 2014-09-21 13:06:14.216 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:14.221 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 17 2014-09-21 13:06:14.225 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 12 2014-09-21 13:06:14.233 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:14.240 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:14.249 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 291ms/2652ms. 2014-09-21 13:06:14.252 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 11 2014-09-21 13:06:14.267 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 20 25 0D D9 2014-09-21 13:06:14.282 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 20 25 0D D9 2014-09-21 13:06:14.293 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:14.310 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:14.321 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:14.333 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0D 00 E4 2014-09-21 13:06:14.351 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0D 00 2014-09-21 13:06:14.357 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 13 2014-09-21 13:06:14.365 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:14.401 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 64 00 03 8E 1F 9D 2014-09-21 13:06:14.462 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 64 00 03 8E 1F 2014-09-21 13:06:14.471 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:14.489 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:06:14.495 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:06:14.501 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:06:14.506 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:06:14.512 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = V (0x04) 2014-09-21 13:06:14.522 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (232.991000) 2014-09-21 13:06:14.527 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:14.532 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:14.539 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 232.991 2014-09-21 13:06:14.546 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:14.572 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:14.585 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:14.599 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:14.612 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 325ms/2652ms. 2014-09-21 13:06:14.616 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 10 2014-09-21 13:06:14.622 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:14.637 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 0E EA 2014-09-21 13:06:14.650 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 0E EA 2014-09-21 13:06:14.668 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:14.692 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:14.696 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:14.711 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0E 00 E7 2014-09-21 13:06:14.719 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0E 00 2014-09-21 13:06:14.730 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 14 2014-09-21 13:06:14.742 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:14.763 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:06:14.775 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:06:14.786 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:14.793 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:06:14.798 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:06:14.804 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:06:14.809 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:06:14.815 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:06:14.821 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:06:14.825 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:14.831 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:14.836 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:06:14.851 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:14.859 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:14.863 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:14.870 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 214ms/2652ms. 2014-09-21 13:06:14.874 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 9 2014-09-21 13:06:14.884 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 28 25 0F D3 2014-09-21 13:06:14.892 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 28 25 0F D3 2014-09-21 13:06:14.907 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:14.925 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:14.929 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:14.938 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 0F 00 E6 2014-09-21 13:06:14.947 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 0F 00 2014-09-21 13:06:14.950 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 15 2014-09-21 13:06:14.955 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:14.982 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 A1 6C 00 00 00 01 06 2014-09-21 13:06:14.996 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 A1 6C 00 00 00 01 2014-09-21 13:06:15.000 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:15.005 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:06:15.012 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:06:15.017 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:06:15.023 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:06:15.028 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = A (0x05) 2014-09-21 13:06:15.036 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.001000) 2014-09-21 13:06:15.040 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:15.045 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:15.051 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.001 2014-09-21 13:06:15.059 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:15.064 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:15.069 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:15.075 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 179ms/2652ms. 2014-09-21 13:06:15.081 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 13:06:15.097 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 00 25 10 E4 2014-09-21 13:06:15.112 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 00 25 10 E4 2014-09-21 13:06:15.126 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:15.135 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:15.141 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:15.162 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 10 00 F9 2014-09-21 13:06:15.185 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 10 00 2014-09-21 13:06:15.209 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 16 2014-09-21 13:06:15.223 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:15.242 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 14 00 04 00 07 0E 32 02 21 64 00 00 00 0F 01 9D 00 00 00 0F 0F 2014-09-21 13:06:15.287 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 0E 32 02 21 64 00 00 00 0F 01 9D 00 00 00 0F 2014-09-21 13:06:15.294 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:15.311 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:06:15.319 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:06:15.331 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:06:15.340 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:06:15.347 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = kWh (0x00) 2014-09-21 13:06:15.366 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (0.015000) 2014-09-21 13:06:15.371 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:15.377 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:15.389 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0.015 2014-09-21 13:06:15.403 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:15.413 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:15.422 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:15.434 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 314ms/2652ms. 2014-09-21 13:06:15.438 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:15.458 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 07 02 25 02 25 11 F3 2014-09-21 13:06:15.477 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 07 02 25 02 25 11 F3 2014-09-21 13:06:15.492 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:15.516 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:15.522 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:15.540 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 11 00 F8 2014-09-21 13:06:15.554 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 11 00 2014-09-21 13:06:15.574 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 17 2014-09-21 13:06:15.619 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:15.629 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 07 03 25 03 00 D0 2014-09-21 13:06:15.658 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 03 25 03 00 2014-09-21 13:06:15.680 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:15.696 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class SWITCH_BINARY (0x25) 2014-09-21 13:06:15.716 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 7 2014-09-21 13:06:15.742 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 7, value = 0x00 2014-09-21 13:06:15.756 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:15.770 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:15.782 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-21 13:06:15.800 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 7: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:15.813 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 7: Serializing to file etc/zwave/1.6/node7.xml 2014-09-21 13:06:16.380 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 7: Initialisation complete. 2014-09-21 13:06:16.385 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:16.388 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:16.403 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 917ms/2652ms. 2014-09-21 13:06:16.408 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-21 13:06:16.415 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0A 01 00 25 05 CF 2014-09-21 13:06:16.422 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0A 01 00 25 05 CF 2014-09-21 13:06:16.433 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:16.441 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:16.444 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:16.468 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 05 00 EC 2014-09-21 13:06:16.475 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 05 00 2014-09-21 13:06:16.478 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 5 2014-09-21 13:06:16.493 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:16.502 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Ping Node, requested = Node Information 2014-09-21 13:06:16.512 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:16.519 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-21 13:06:16.523 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-21 13:06:16.527 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:16.532 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 1 2014-09-21 13:06:16.537 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 1 2014-09-21 13:06:16.542 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 18 2014-09-21 13:06:16.546 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 7 2014-09-21 13:06:16.551 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:260]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-21 13:06:16.555 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-21 13:06:16.559 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:16.563 DEBUG o.o.b.z.i.protocol.ZWaveNode[:553]- NODE 10: Encapsulating message, instance / endpoint 2 2014-09-21 13:06:16.567 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:499]- NODE 10: Creating new message for application command MULTI_CHANNEL_ENCAP endpoint 2 2014-09-21 13:06:16.571 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 19 2014-09-21 13:06:16.575 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 8 2014-09-21 13:06:16.579 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 10: Found dynamic state command class SWITCH_BINARY 2014-09-21 13:06:16.582 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:119]- Creating new message for application command SWITCH_BINARY_GET for node 10 2014-09-21 13:06:16.586 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 10: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:16.591 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 20 2014-09-21 13:06:16.595 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 9 2014-09-21 13:06:16.598 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:16.602 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:16.606 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 180ms/2652ms. 2014-09-21 13:06:16.609 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 8 2014-09-21 13:06:16.620 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 12 90 2014-09-21 13:06:16.626 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 01 25 02 25 12 90 2014-09-21 13:06:16.636 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:16.643 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:16.647 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:16.673 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 12 00 FB 2014-09-21 13:06:16.681 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 12 00 2014-09-21 13:06:16.685 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 18 2014-09-21 13:06:16.688 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:16.716 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 01 01 25 03 00 B0 2014-09-21 13:06:16.730 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 01 01 25 03 00 2014-09-21 13:06:16.733 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:16.737 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-21 13:06:16.740 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-21 13:06:16.745 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-21 13:06:16.749 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 1, calling handleApplicationCommandRequest. 2014-09-21 13:06:16.753 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-21 13:06:16.757 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-21 13:06:16.760 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:16.764 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:16.768 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-21 13:06:16.788 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:16.796 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:16.803 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:16.813 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 183ms/2652ms. 2014-09-21 13:06:16.817 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 7 2014-09-21 13:06:16.829 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 13 92 2014-09-21 13:06:16.843 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0A 06 60 0D 01 02 25 02 25 13 92 2014-09-21 13:06:16.857 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:16.872 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:16.875 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:16.894 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 13 00 FA 2014-09-21 13:06:16.908 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 13 00 2014-09-21 13:06:16.927 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 19 2014-09-21 13:06:16.940 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:16.949 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0A 07 60 0D 02 01 25 03 00 B3 2014-09-21 13:06:16.977 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 07 60 0D 02 01 25 03 00 2014-09-21 13:06:16.981 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:16.988 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class MULTI_INSTANCE (0x60) 2014-09-21 13:06:16.993 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:120]- NODE 10: Received Multi-instance/Multi-channel Request 2014-09-21 13:06:16.998 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:391]- NODE 10: Requested Command Class = SWITCH_BINARY (0x25) 2014-09-21 13:06:17.004 DEBUG o.o.b.z.i.p.c.ZWaveMultiInstanceCommandClass[:411]- NODE 10: Endpoint = 2, calling handleApplicationCommandRequest. 2014-09-21 13:06:17.009 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-21 13:06:17.015 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-21 13:06:17.027 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:17.036 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:17.045 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 2, command class = SWITCH_BINARY, value = 0 2014-09-21 13:06:17.083 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:17.087 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:17.093 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:17.103 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 253ms/2652ms. 2014-09-21 13:06:17.107 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 6 2014-09-21 13:06:17.121 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0A 02 25 02 25 14 FB 2014-09-21 13:06:17.134 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0A 02 25 02 25 14 FB 2014-09-21 13:06:17.147 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:17.161 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:17.167 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:17.182 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 14 00 FD 2014-09-21 13:06:17.197 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 14 00 2014-09-21 13:06:17.207 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 20 2014-09-21 13:06:17.216 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:17.236 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0A 03 25 03 00 DD 2014-09-21 13:06:17.251 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0A 03 25 03 00 2014-09-21 13:06:17.255 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 10: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:17.266 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 10: Incoming command class SWITCH_BINARY (0x25) 2014-09-21 13:06:17.273 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:72]- Received Switch Binary Request for Node ID = 10 2014-09-21 13:06:17.282 DEBUG o.o.b.z.i.p.c.ZWaveBinarySwitchCommandClass[:109]- Switch Binary report from nodeId = 10, value = 0x00 2014-09-21 13:06:17.293 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:17.301 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:17.306 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 10, endpoint = 1, command class = SWITCH_BINARY, value = 0 2014-09-21 13:06:17.321 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 10: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:17.328 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 10: Serializing to file etc/zwave/1.6/node10.xml 2014-09-21 13:06:17.490 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 10: Initialisation complete. 2014-09-21 13:06:17.498 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:17.513 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:17.519 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 379ms/2652ms. 2014-09-21 13:06:17.524 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-21 13:06:17.537 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0C 01 00 25 07 CB 2014-09-21 13:06:17.553 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0C 01 00 25 07 CB 2014-09-21 13:06:17.567 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:17.583 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:17.590 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:17.602 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 07 00 EE 2014-09-21 13:06:17.616 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 07 00 2014-09-21 13:06:17.626 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 7 2014-09-21 13:06:17.633 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:17.645 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Ping Node, requested = Node Information 2014-09-21 13:06:17.655 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:17.664 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 12: Found dynamic state command class SWITCH_MULTILEVEL 2014-09-21 13:06:17.676 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:128]- Creating new message for application command SWITCH_MULTILEVEL_GET for node 12 2014-09-21 13:06:17.686 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 12: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:06:17.695 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 21 2014-09-21 13:06:17.703 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-21 13:06:17.711 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:17.727 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:17.753 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 191ms/2652ms. 2014-09-21 13:06:17.756 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-21 13:06:17.784 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0C 02 26 02 25 15 FF 2014-09-21 13:06:17.810 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0C 02 26 02 25 15 FF 2014-09-21 13:06:17.827 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:17.841 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:17.849 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:17.863 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 15 00 FC 2014-09-21 13:06:17.878 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 15 00 2014-09-21 13:06:17.886 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 21 2014-09-21 13:06:17.894 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:06:17.915 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0C 03 26 03 00 D8 2014-09-21 13:06:17.925 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0C 03 26 03 00 2014-09-21 13:06:17.940 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 12: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:06:17.945 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 12: Incoming command class SWITCH_MULTILEVEL (0x26) 2014-09-21 13:06:17.953 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:88]- Received Switch Multi Level Request for Node ID = 12 2014-09-21 13:06:17.962 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:108]- Switch Multi Level report from nodeId = 12, value = 0x00 2014-09-21 13:06:17.976 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:17.985 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:17.991 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0 2014-09-21 13:06:18.006 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 12, endpoint = 1, command class = SWITCH_MULTILEVEL, value = 0, ignoring. 2014-09-21 13:06:18.021 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 12: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:06:18.033 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 12: Serializing to file etc/zwave/1.6/node12.xml 2014-09-21 13:06:18.232 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 12: Initialisation complete. 2014-09-21 13:06:18.245 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:18.257 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:18.280 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 460ms/2652ms. 2014-09-21 13:06:18.285 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 4 2014-09-21 13:06:18.302 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 02 01 00 25 02 C0 2014-09-21 13:06:18.319 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 02 01 00 25 02 C0 2014-09-21 13:06:18.335 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:18.360 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:18.363 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:19.555 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:19.628 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:23.342 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 13:06:23.350 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 13:06:23.355 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 13:06:23.380 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 2: Timeout while sending message. Requeueing 2014-09-21 13:06:23.386 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-21 13:06:23.393 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 03 01 00 25 03 C0 2014-09-21 13:06:23.400 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 03 01 00 25 03 C0 2014-09-21 13:06:23.412 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:23.421 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:23.425 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:24.558 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:24.632 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:25.422 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 02 01 EA 2014-09-21 13:06:25.435 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 02 01 2014-09-21 13:06:25.440 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 2 2014-09-21 13:06:25.445 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 13:06:25.451 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 13:06:27.816 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 03 01 EB 2014-09-21 13:06:27.827 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 03 01 2014-09-21 13:06:27.832 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 3 2014-09-21 13:06:27.838 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 13:06:27.844 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:27.849 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:27.856 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 4451ms/4451ms. 2014-09-21 13:06:27.860 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-21 13:06:27.871 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0B 01 00 25 06 CD 2014-09-21 13:06:27.877 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0B 01 00 25 06 CD 2014-09-21 13:06:27.898 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:27.911 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:27.914 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:29.564 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:29.635 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:32.911 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 13:06:32.927 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 13:06:32.944 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 13:06:32.970 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 11: Timeout while sending message. Requeueing 2014-09-21 13:06:32.973 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 13:06:32.981 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0D 01 00 25 08 C5 2014-09-21 13:06:32.988 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0D 01 00 25 08 C5 2014-09-21 13:06:32.998 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:33.011 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:33.014 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:33.806 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 06 01 EE 2014-09-21 13:06:33.818 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 06 01 2014-09-21 13:06:33.823 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 6 2014-09-21 13:06:33.828 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 13:06:33.833 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 13:06:34.569 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:34.641 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:38.011 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 13:06:38.019 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 13:06:38.025 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 13:06:38.050 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 13:06:38.054 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:06:38.062 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 08 00 13 0E 01 00 25 09 C7 2014-09-21 13:06:38.070 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 08 00 13 0E 01 00 25 09 C7 2014-09-21 13:06:38.080 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:06:38.092 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:06:38.095 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:06:38.701 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 08 01 E0 2014-09-21 13:06:38.713 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 08 01 2014-09-21 13:06:38.718 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 8 2014-09-21 13:06:38.723 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 13:06:38.728 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 13:06:39.574 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:39.598 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:06:39.610 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:06:39.615 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:06:39.629 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:06:39.642 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:06:39.645 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:39.661 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:06:39.671 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:06:39.680 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:06:39.689 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:39.694 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:43.092 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 13:06:43.100 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 13:06:43.106 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 13:06:43.130 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 14: Timeout while sending message. Requeueing 2014-09-21 13:06:44.110 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 09 01 E1 2014-09-21 13:06:44.122 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 09 01 2014-09-21 13:06:44.127 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 9 2014-09-21 13:06:44.132 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 13:06:44.137 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:06:44.143 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:06:44.656 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:44.699 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:44.704 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:06:44.710 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:06:44.716 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:06:44.722 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:06:44.733 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:06:44.743 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:06:44.755 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:06:44.764 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:06:44.775 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:44.781 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:49.661 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:49.787 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:49.793 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:06:49.802 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:06:49.813 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:06:49.823 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:06:49.836 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:06:49.843 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:06:49.855 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:06:49.872 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:06:49.884 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:49.891 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:54.666 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:54.900 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:06:54.905 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:06:54.916 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:06:54.926 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:06:54.935 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:06:54.950 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:06:54.959 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:06:54.969 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:06:54.979 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:06:54.987 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:54.998 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:06:59.670 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:00.006 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:00.012 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:00.032 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:00.057 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:00.084 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:00.108 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:00.134 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:00.157 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:00.176 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:00.202 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:00.225 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:04.673 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:05.238 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:05.242 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:05.248 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:05.254 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:05.261 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:05.268 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:05.274 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:05.279 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:05.288 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:05.294 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:05.299 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:09.678 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:10.305 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:10.313 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:10.319 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:10.325 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:10.331 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:10.341 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:10.351 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:10.362 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:10.369 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:10.375 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:10.382 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:14.682 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:15.388 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:15.398 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:15.411 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:15.425 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:15.440 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:15.458 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:15.467 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:15.491 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:15.518 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:15.533 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:15.563 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:19.687 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:20.577 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:20.585 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:20.592 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:20.597 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:20.604 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:20.610 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:20.616 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:20.622 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:20.635 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:20.646 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:20.654 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:24.691 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:25.659 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:25.668 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:25.676 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:25.681 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:25.687 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:25.694 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:25.700 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:25.706 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:25.712 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:25.718 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:25.725 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:29.696 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:30.729 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:30.737 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:30.743 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:30.749 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:30.757 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:30.764 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:30.772 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:30.777 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:30.783 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:30.790 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:30.795 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:34.700 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:35.801 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:35.805 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:35.812 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:35.818 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:35.825 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:35.831 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:35.838 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:35.843 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:35.849 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:35.855 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:35.862 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:39.704 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:40.868 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:40.879 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:40.886 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:40.905 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:40.913 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:40.920 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:40.927 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:40.932 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:40.939 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:40.944 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:40.951 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:44.711 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:45.957 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:45.965 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:45.972 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:45.977 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:45.984 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:45.991 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:45.998 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:46.004 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:46.010 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:46.016 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:46.023 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:49.715 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:51.027 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:51.035 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:51.048 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:51.053 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:51.060 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:51.066 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:51.072 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:51.078 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:51.085 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:51.092 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:51.099 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:54.720 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:56.103 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:07:56.109 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:07:56.133 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:07:56.145 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:07:56.165 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:07:56.179 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:07:56.194 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:07:56.206 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:07:56.226 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:07:56.248 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:56.266 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:07:59.724 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:01.290 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:01.298 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:08:01.305 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:08:01.311 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:08:01.321 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:08:01.335 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:08:01.346 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:08:01.357 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:08:01.368 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:08:01.378 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:08:01.387 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:08:04.732 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:06.395 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:06.403 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 13:06:06 CEST 2014 2014-09-21 13:08:06.409 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 13:06:07 CEST 2014 2014-09-21 13:08:06.418 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 13:06:08 CEST 2014 2014-09-21 13:08:06.425 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Protocol Information since Sun Sep 21 13:06:05 CEST 2014 2014-09-21 13:08:06.432 WARN o.o.b.z.i.p.ZWaveController[:512]- NODE 6: May be dead, setting stage to DEAD. 2014-09-21 13:08:06.438 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Complete since Sun Sep 21 13:06:15 CEST 2014 2014-09-21 13:08:06.444 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 13:06:17 CEST 2014 2014-09-21 13:08:06.460 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Ping Node since Sun Sep 21 13:06:11 CEST 2014 2014-09-21 13:08:06.466 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 13:06:18 CEST 2014 2014-09-21 13:08:06.474 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:08:06.485 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Ping Node since Sun Sep 21 13:06:12 CEST 2014 2014-09-21 13:08:06.493 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:06.500 DEBUG o.o.b.z.i.ZWaveActiveBinding[:374]- ZWaveIncomingEvent Called, Network Event, Init Done. Setting ZWave Network Ready. 2014-09-21 13:08:06.519 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:610]- Network initialised - starting network monitor. 2014-09-21 13:08:06.526 DEBUG o.o.b.z.i.p.ZWaveController[:530]- NODE 6: DEAD node. 2014-09-21 13:08:06.538 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:06.543 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:06.549 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:578]- NODE 6: Node Status event - Node is Dead 2014-09-21 13:08:06.557 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:591]- NODE 6: DEAD node - requesting network heal. 2014-09-21 13:08:09.737 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:11.572 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:375]- NODE 6: NETWORK HEAL - STARTING 2014-09-21 13:08:11.584 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:08:11.588 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:08:11.595 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:11.601 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 22 2014-09-21 13:08:11.606 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:11.611 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:08:11.621 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 16 F2 2014-09-21 13:08:11.629 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 16 F2 2014-09-21 13:08:11.641 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:08:11.658 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:08:11.667 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:08:11.686 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 16 00 FF 2014-09-21 13:08:11.699 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 16 00 2014-09-21 13:08:11.711 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 22 2014-09-21 13:08:11.721 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:08:11.738 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:08:11.767 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:08:11.777 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:08:11.788 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:08:11.797 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:08:11.807 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:08:11.817 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:08:11.828 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:08:11.837 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:08:11.851 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:11.861 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:11.870 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:08:11.889 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:11.898 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:11.910 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 276ms/4451ms. 2014-09-21 13:08:14.740 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:18.063 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-21 13:08:18.075 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-21 13:08:18.079 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Ping Node) 2014-09-21 13:08:18.086 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 13:08:18.094 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 13:08:18.102 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-21 13:08:18.107 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:18.112 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:18.116 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-21 13:08:18.129 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Ping Node, requested = Node Complete 2014-09-21 13:08:18.140 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:08:18.147 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class BATTERY 2014-09-21 13:08:18.151 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-21 13:08:18.157 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:18.164 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:08:18.169 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-21 13:08:18.175 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 13:08:18.180 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:18.185 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:08:18.190 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:18.194 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:18.204 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-21 13:08:18.216 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-21 13:08:18.219 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:08:18.224 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 13:08:18.229 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 13:08:18.236 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-21 13:08:18.240 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-21 13:08:18.247 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-21 13:08:18.251 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-21 13:08:18.256 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:18.260 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:18.264 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-21 13:08:18.280 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:08:18.296 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:18.302 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:18.315 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-21 13:08:18.335 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-21 13:08:18.373 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:08:18.390 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 13:08:18.408 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-21 13:08:18.423 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-21 13:08:18.432 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 13:08:18.446 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 13:08:18.456 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-21 13:08:18.493 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-21 13:08:18.512 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:08:18.536 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-21 13:08:18.559 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-21 13:08:18.573 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-21 13:08:18.593 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:18.607 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:18.627 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 2 messages in the wake-up queue. 2014-09-21 13:08:18.637 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 23 2014-09-21 13:08:18.650 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:18.656 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:08:18.675 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 17 5A 2014-09-21 13:08:18.693 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 17 5A 2014-09-21 13:08:18.709 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:08:18.723 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:08:18.748 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:08:18.769 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 17 00 FE 2014-09-21 13:08:18.778 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 17 00 2014-09-21 13:08:18.802 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 23 2014-09-21 13:08:18.808 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:08:18.831 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-21 13:08:18.857 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-21 13:08:18.870 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:08:18.884 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 13:08:18.895 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 13:08:18.904 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-21 13:08:18.912 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:18.920 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:18.929 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-21 13:08:18.952 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:08:18.976 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 13: Serializing to file etc/zwave/1.6/node13.xml 2014-09-21 13:08:19.207 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 13: Initialisation complete. 2014-09-21 13:08:19.235 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:19.246 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:19.265 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 24 2014-09-21 13:08:19.283 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:08:19.300 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 598ms/4451ms. 2014-09-21 13:08:19.303 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:19.325 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 18 95 2014-09-21 13:08:19.348 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 18 95 2014-09-21 13:08:19.372 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:08:19.403 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:08:19.420 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:08:19.430 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 18 00 F1 2014-09-21 13:08:19.455 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 18 00 2014-09-21 13:08:19.470 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 24 2014-09-21 13:08:19.479 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:08:19.485 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:19.492 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:19.510 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 145ms/4451ms. 2014-09-21 13:08:19.519 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-21 13:08:19.558 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-21 13:08:19.575 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:08:19.586 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 13:08:19.598 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 13:08:19.612 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-21 13:08:19.622 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-21 13:08:19.631 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-21 13:08:19.640 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-21 13:08:19.648 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:19.656 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:19.665 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-21 13:08:19.744 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:21.507 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep

Thomas38 commented 10 years ago

2nd part of the log...

2014-09-21 13:08:21.514 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-21 13:08:21.521 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:21.526 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 25 2014-09-21 13:08:21.532 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:21.537 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:08:21.543 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 19 5A 2014-09-21 13:08:21.553 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 19 5A 2014-09-21 13:08:21.563 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:08:21.571 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:08:21.575 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:08:21.598 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 19 00 F0 2014-09-21 13:08:21.607 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 19 00 2014-09-21 13:08:21.612 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 25 2014-09-21 13:08:21.617 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:08:21.625 DEBUG o.o.b.z.i.c.ZWaveBatteryConverter[:60]- Generating poll message for BATTERY for node 13 endpoint 1 2014-09-21 13:08:21.628 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:21.637 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:21.634 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-21 13:08:21.647 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:21.650 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-21 13:08:21.658 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 26 2014-09-21 13:08:21.662 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 105ms/4451ms. 2014-09-21 13:08:21.671 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:08:21.672 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:21.684 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:08:24.747 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:29.753 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:31.687 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:08:31.694 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:08:31.699 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:31.705 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 27 2014-09-21 13:08:31.710 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:31.715 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:08:31.723 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 1B FF 2014-09-21 13:08:31.733 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 1B FF 2014-09-21 13:08:31.745 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:08:31.752 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:08:31.756 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:08:31.780 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1B 00 F2 2014-09-21 13:08:31.789 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1B 00 2014-09-21 13:08:31.793 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 27 2014-09-21 13:08:31.799 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:08:31.824 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:08:31.836 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:08:31.840 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:08:31.846 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:08:31.850 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:08:31.855 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:08:31.859 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:08:31.865 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:08:31.871 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:08:31.876 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:31.882 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:31.887 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:08:31.909 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:31.923 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:31.932 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 194ms/4451ms. 2014-09-21 13:08:34.761 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:39.768 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:44.776 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:49.783 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:51.731 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:08:51.738 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:08:51.743 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:08:51.750 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 28 2014-09-21 13:08:51.755 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:08:51.760 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:08:51.766 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 1C F8 2014-09-21 13:08:51.776 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 1C F8 2014-09-21 13:08:51.787 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:08:51.801 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:08:51.805 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:08:51.822 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1C 00 F5 2014-09-21 13:08:51.828 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1C 00 2014-09-21 13:08:51.832 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 28 2014-09-21 13:08:51.835 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:08:51.866 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:08:51.878 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:08:51.881 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:08:51.885 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:08:51.889 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:08:51.896 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:08:51.899 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:08:51.904 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:08:51.908 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:08:51.912 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:51.916 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:51.920 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:08:51.931 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:08:51.937 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:08:51.942 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 162ms/4451ms. 2014-09-21 13:08:54.790 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:08:59.797 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:04.801 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:09.806 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:11.774 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:09:11.782 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:09:11.793 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:11.801 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 29 2014-09-21 13:09:11.810 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:09:11.815 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:09:11.822 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 1D F9 2014-09-21 13:09:11.840 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 1D F9 2014-09-21 13:09:11.854 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:09:11.868 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:09:11.889 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:09:11.900 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1D 00 F4 2014-09-21 13:09:11.912 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1D 00 2014-09-21 13:09:11.907 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:139]- NODE 13: Command received for 20.5 2014-09-21 13:09:11.923 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 29 2014-09-21 13:09:11.944 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:09:11.943 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-21 13:09:11.960 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:11.959 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:09:11.988 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:159]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 CD 2014-09-21 13:09:12.010 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:09:12.028 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:09:12.037 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 13:09:12.050 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:09:12.066 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:12.076 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:09:12.088 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:178]- NODE 13: sending update request !!!!!!! 2014-09-21 13:09:12.092 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:09:12.108 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:09:12.122 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:09:12.118 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:179]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 03 43 02 01 2014-09-21 13:09:12.141 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:09:12.136 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:09:12.160 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:09:12.176 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:09:12.194 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:09:12.208 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:09:12.242 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:09:12.262 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:09:12.281 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 434ms/4451ms. 2014-09-21 13:09:12.789 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:139]- NODE 13: Command received for 20.0 2014-09-21 13:09:12.809 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-21 13:09:12.824 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:12.840 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:159]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 C8 2014-09-21 13:09:12.850 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:09:12.869 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 13:09:12.884 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:12.901 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:178]- NODE 13: sending update request !!!!!!! 2014-09-21 13:09:12.925 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:179]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 03 43 02 01 2014-09-21 13:09:12.940 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:243]- NODE 13: Message already on the wake-up queue. Discarding. 2014-09-21 13:09:13.608 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:139]- NODE 13: Command received for 19.5 2014-09-21 13:09:13.615 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-21 13:09:13.622 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:13.632 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:159]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 C3 2014-09-21 13:09:13.638 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:09:13.650 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 13:09:13.663 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:13.675 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:178]- NODE 13: sending update request !!!!!!! 2014-09-21 13:09:13.689 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:179]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 03 43 02 01 2014-09-21 13:09:13.700 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:243]- NODE 13: Message already on the wake-up queue. Discarding. 2014-09-21 13:09:14.494 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:139]- NODE 13: Command received for 19.0 2014-09-21 13:09:14.504 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:279]- Creating new message for application command THERMOSTAT_SETPOINT_SET for node 13 2014-09-21 13:09:14.510 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:14.522 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:159]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 06 43 01 01 22 00 BE 2014-09-21 13:09:14.528 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 13: Putting message in wakeup queue. 2014-09-21 13:09:14.559 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 13:09:14.594 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:14.625 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:178]- NODE 13: sending update request !!!!!!! 2014-09-21 13:09:14.665 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:179]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 03 43 02 01 2014-09-21 13:09:14.682 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:243]- NODE 13: Message already on the wake-up queue. Discarding. 2014-09-21 13:09:14.813 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:19.816 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:24.823 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:29.827 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:31.833 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:09:31.837 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:09:31.843 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:31.849 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 30 2014-09-21 13:09:31.858 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:09:31.863 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:09:31.871 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 1E FA 2014-09-21 13:09:31.881 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 1E FA 2014-09-21 13:09:31.892 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:09:31.901 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:09:31.905 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:09:31.927 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1E 00 F7 2014-09-21 13:09:31.935 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1E 00 2014-09-21 13:09:31.939 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 30 2014-09-21 13:09:31.944 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:09:31.972 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:09:31.984 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:09:31.987 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:09:31.993 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:09:31.997 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:09:32.003 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:09:32.007 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:09:32.012 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:09:32.018 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:09:32.024 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:09:32.030 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:09:32.035 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:09:32.049 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:09:32.053 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:09:32.061 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 176ms/4451ms. 2014-09-21 13:09:34.834 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:39.837 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:44.843 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:49.848 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:51.880 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:09:51.887 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:09:51.894 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:09:51.898 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 31 2014-09-21 13:09:51.903 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:09:51.909 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:09:51.916 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 1F FB 2014-09-21 13:09:51.926 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 1F FB 2014-09-21 13:09:51.937 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:09:51.951 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:09:51.955 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:09:51.973 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 1F 00 F6 2014-09-21 13:09:51.981 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 1F 00 2014-09-21 13:09:51.984 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 31 2014-09-21 13:09:51.988 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:09:52.018 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:09:52.030 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:09:52.034 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:09:52.039 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:09:52.044 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:09:52.048 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:09:52.053 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:09:52.058 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:09:52.065 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:09:52.070 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:09:52.076 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:09:52.081 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:09:52.095 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:09:52.103 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:09:52.109 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 179ms/4451ms. 2014-09-21 13:09:54.854 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:09:59.857 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:04.861 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:09.867 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:11.925 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:10:11.932 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:10:11.941 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:10:11.946 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 32 2014-09-21 13:10:11.951 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:10:11.957 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:10:11.963 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 20 C4 2014-09-21 13:10:11.974 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 20 C4 2014-09-21 13:10:11.985 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:10:11.993 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:10:11.998 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:10:12.021 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 20 00 C9 2014-09-21 13:10:12.029 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 20 00 2014-09-21 13:10:12.033 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 32 2014-09-21 13:10:12.038 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:10:12.066 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:10:12.078 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:10:12.082 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:10:12.087 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:10:12.092 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:10:12.096 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:10:12.101 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:10:12.107 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:10:12.116 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:10:12.121 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:10:12.126 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:10:12.132 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:10:12.147 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:10:12.152 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:10:12.158 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 180ms/4451ms. 2014-09-21 13:10:14.872 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:19.876 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:24.880 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:29.884 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:31.975 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:10:31.982 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:10:31.988 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:10:31.993 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 33 2014-09-21 13:10:32.000 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:10:32.004 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:10:32.010 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 21 C5 2014-09-21 13:10:32.020 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 21 C5 2014-09-21 13:10:32.032 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:10:32.042 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:10:32.045 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:10:32.067 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 21 00 C8 2014-09-21 13:10:32.073 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 21 00 2014-09-21 13:10:32.076 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 33 2014-09-21 13:10:32.080 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:10:32.113 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:10:32.124 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:10:32.127 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:10:32.131 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:10:32.135 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:10:32.138 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:10:32.142 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:10:32.145 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:10:32.149 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:10:32.153 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:10:32.157 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:10:32.161 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:10:32.175 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:10:32.179 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:10:32.188 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 162ms/4451ms. 2014-09-21 13:10:34.890 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:39.899 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:44.906 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:49.919 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:52.026 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:10:52.033 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:10:52.039 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:10:52.045 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 34 2014-09-21 13:10:52.051 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:10:52.057 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:10:52.063 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 22 C6 2014-09-21 13:10:52.080 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 22 C6 2014-09-21 13:10:52.091 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:10:52.101 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:10:52.106 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:10:52.126 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 22 00 CB 2014-09-21 13:10:52.134 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 22 00 2014-09-21 13:10:52.138 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 34 2014-09-21 13:10:52.142 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:10:52.171 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:10:52.183 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:10:52.187 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:10:52.192 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:10:52.197 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:10:52.201 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:10:52.206 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:10:52.212 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:10:52.217 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:10:52.222 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:10:52.228 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:10:52.233 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:10:52.246 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:10:52.251 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:10:52.257 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 174ms/4451ms. 2014-09-21 13:10:54.923 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:10:59.928 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:04.932 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:09.936 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:12.075 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:11:12.082 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:11:12.088 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:12.094 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 35 2014-09-21 13:11:12.100 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:12.106 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:11:12.113 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 23 C7 2014-09-21 13:11:12.124 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 23 C7 2014-09-21 13:11:12.135 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:12.144 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:12.148 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:12.171 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 23 00 CA 2014-09-21 13:11:12.179 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 23 00 2014-09-21 13:11:12.183 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 35 2014-09-21 13:11:12.188 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:12.215 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:11:12.227 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:11:12.231 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:11:12.236 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:11:12.240 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:11:12.245 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:11:12.250 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:11:12.255 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:11:12.261 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:11:12.266 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:12.271 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:12.277 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:11:12.289 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:12.296 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:12.303 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 174ms/4451ms. 2014-09-21 13:11:14.941 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:19.947 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:24.951 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:29.956 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:32.123 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:11:32.130 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:11:32.136 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:32.141 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 36 2014-09-21 13:11:32.146 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:32.152 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:11:32.156 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 24 C0 2014-09-21 13:11:32.165 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 24 C0 2014-09-21 13:11:32.175 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:32.183 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:32.186 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:32.210 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 24 00 CD 2014-09-21 13:11:32.217 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 24 00 2014-09-21 13:11:32.221 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 36 2014-09-21 13:11:32.224 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:32.255 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:11:32.265 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:11:32.269 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:11:32.276 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:11:32.279 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:11:32.284 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:11:32.287 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:11:32.291 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:11:32.300 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:11:32.304 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:32.307 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:32.311 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:11:32.321 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:32.327 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:32.333 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 165ms/4451ms. 2014-09-21 13:11:34.959 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:39.963 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:44.967 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:49.971 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:52.165 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:11:52.172 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:11:52.177 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:52.183 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 37 2014-09-21 13:11:52.188 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:52.194 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:11:52.200 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 25 C1 2014-09-21 13:11:52.212 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 25 C1 2014-09-21 13:11:52.223 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:52.231 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:52.236 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:52.345 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 25 00 CC 2014-09-21 13:11:52.353 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 25 00 2014-09-21 13:11:52.357 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 37 2014-09-21 13:11:52.369 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:52.390 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:11:52.402 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:11:52.406 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:11:52.411 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:11:52.417 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:11:52.421 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:11:52.426 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:11:52.431 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:11:52.437 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:11:52.442 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:52.447 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:52.453 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:11:52.465 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:52.472 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:52.478 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 261ms/4451ms. 2014-09-21 13:11:52.488 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:11:52.500 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:11:52.504 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:11:52.509 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:11:52.513 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:11:52.519 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:11:52.525 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:11:52.531 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:11:52.538 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:11:52.543 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:52.547 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:52.553 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:11:52.567 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:52.571 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:53.693 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0E 02 84 07 7C 2014-09-21 13:11:53.706 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 02 84 07 2014-09-21 13:11:53.711 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Ping Node) 2014-09-21 13:11:53.717 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class WAKE_UP (0x84) 2014-09-21 13:11:53.722 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 14: Received Wake Up Request 2014-09-21 13:11:53.728 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 14: is awake 2014-09-21 13:11:53.734 INFO o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:187]- NODE 14: Got Wake Up Notification from node, continuing initialization. 2014-09-21 13:11:53.740 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Wake Up, requested = Node Information 2014-09-21 13:11:53.749 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:11:53.754 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_ALARM 2014-09-21 13:11:53.762 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:188]- Creating new message for application command SENSOR_ALARM_GET for node 14 2014-09-21 13:11:53.768 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:53.774 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-21 13:11:53.780 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class BATTERY 2014-09-21 13:11:53.785 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 14: Creating new message for application command BATTERY_GET 2014-09-21 13:11:53.791 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:53.797 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-21 13:11:53.803 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_BINARY 2014-09-21 13:11:53.810 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:117]- NODE 14: Creating new message for application command SENSOR_BINARY_GET 2014-09-21 13:11:53.816 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:53.823 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-21 13:11:53.828 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 14: Found dynamic state command class SENSOR_MULTILEVEL 2014-09-21 13:11:53.836 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:220]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_GET 2014-09-21 13:11:53.842 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:53.848 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSensorCommandClass[:220]- NODE 14: Creating new message for application command SENSOR_MULTI_LEVEL_GET 2014-09-21 13:11:53.855 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 14: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:11:53.860 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-21 13:11:53.868 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-21 13:11:53.873 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:53.878 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:53.884 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 14: Is awake with 5 messages in the wake-up queue. 2014-09-21 13:11:53.888 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 38 2014-09-21 13:11:53.893 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:53.897 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:11:53.902 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0E 03 9C 01 00 25 26 75 2014-09-21 13:11:53.910 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0E 03 9C 01 00 25 26 75 2014-09-21 13:11:53.920 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:53.931 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:53.935 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:53.973 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 26 00 CF 2014-09-21 13:11:53.979 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 26 00 2014-09-21 13:11:53.982 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 38 2014-09-21 13:11:53.986 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:54.028 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0D 00 04 00 0E 07 9C 02 0E 00 00 00 00 6F 2014-09-21 13:11:54.039 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 07 9C 02 0E 00 00 00 00 2014-09-21 13:11:54.065 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:11:54.069 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_ALARM (0x9c) 2014-09-21 13:11:54.087 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:81]- Received Sensor Alarm Request for Node ID = 14 2014-09-21 13:11:54.092 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:95]- Sensor Alarm report from nodeId = 14 2014-09-21 13:11:54.096 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:96]- Source node ID = 14 2014-09-21 13:11:54.102 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:97]- Value = 0x00 2014-09-21 13:11:54.107 DEBUG o.o.b.z.i.p.c.ZWaveAlarmSensorCommandClass[:110]- Alarm Type = General (0x00) 2014-09-21 13:11:54.111 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:54.115 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:54.118 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_ALARM, value = 0 2014-09-21 13:11:54.122 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_ALARM, value = 0, ignoring. 2014-09-21 13:11:54.127 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:11:54.133 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:54.136 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:54.141 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 39 2014-09-21 13:11:54.145 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:11:54.148 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 235ms/4451ms. 2014-09-21 13:11:54.152 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:54.158 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 80 02 25 27 69 2014-09-21 13:11:54.163 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 80 02 25 27 69 2014-09-21 13:11:54.173 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:54.181 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:54.185 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:54.224 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 27 00 CE 2014-09-21 13:11:54.230 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 27 00 2014-09-21 13:11:54.234 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 39 2014-09-21 13:11:54.238 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:54.278 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 80 03 64 18 2014-09-21 13:11:54.287 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 80 03 64 2014-09-21 13:11:54.291 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:11:54.296 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class BATTERY (0x80) 2014-09-21 13:11:54.300 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 14: Received Battery Request 2014-09-21 13:11:54.305 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 14: Battery report value = 0x64 2014-09-21 13:11:54.310 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:54.315 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:54.320 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = BATTERY, value = 100 2014-09-21 13:11:54.325 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = BATTERY, value = 100, ignoring. 2014-09-21 13:11:54.332 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:11:54.337 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:54.342 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:54.348 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 40 2014-09-21 13:11:54.353 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:11:54.358 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 192ms/4451ms. 2014-09-21 13:11:54.363 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:54.377 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0E 02 30 02 25 28 D6 2014-09-21 13:11:54.390 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0E 02 30 02 25 28 D6 2014-09-21 13:11:54.404 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:54.412 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:54.415 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:54.454 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 28 00 C1 2014-09-21 13:11:54.459 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 28 00 2014-09-21 13:11:54.463 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 40 2014-09-21 13:11:54.466 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:54.496 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0E 03 30 03 00 CC 2014-09-21 13:11:54.504 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0E 03 30 03 00 2014-09-21 13:11:54.507 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 14: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:11:54.511 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 14: Incoming command class SENSOR_BINARY (0x30) 2014-09-21 13:11:54.514 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 14: Received Sensor Binary Request (v0) 2014-09-21 13:11:54.527 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 14: Sensor Binary report, type=Unknown, value=0x00 2014-09-21 13:11:54.532 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:54.535 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:54.539 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 0 2014-09-21 13:11:54.543 WARN o.o.b.z.i.ZWaveActiveBinding[:421]- No item bound for event from nodeId = 14, endpoint = 1, command class = SENSOR_BINARY, value = 0, ignoring. 2014-09-21 13:11:54.549 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 14: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:11:54.553 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:11:54.557 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:11:54.563 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 41 2014-09-21 13:11:54.567 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:11:54.570 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 174ms/4451ms. 2014-09-21 13:11:54.573 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:11:54.579 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0E 03 31 04 01 25 29 D3 2014-09-21 13:11:54.585 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0E 03 31 04 01 25 29 D3 2014-09-21 13:11:54.594 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:11:54.601 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:11:54.605 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:11:54.647 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 29 00 C0 2014-09-21 13:11:54.654 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 29 00 2014-09-21 13:11:54.658 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 41 2014-09-21 13:11:54.661 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:11:54.978 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:11:59.604 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 13:11:59.619 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 13:11:59.630 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 13:11:59.650 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 14: Timeout while sending message. Requeueing 2014-09-21 13:11:59.655 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 14: Putting message in wakeup queue. 2014-09-21 13:11:59.984 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:04.987 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:09.992 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:12.208 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:12:12.215 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:12:12.221 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:12.226 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 42 2014-09-21 13:12:12.232 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:12:12.238 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:12:12.243 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 2A CE 2014-09-21 13:12:12.253 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 2A CE 2014-09-21 13:12:12.264 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:12:12.272 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:12:12.275 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:12:12.300 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2A 00 C3 2014-09-21 13:12:12.308 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2A 00 2014-09-21 13:12:12.313 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 42 2014-09-21 13:12:12.318 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:12:12.344 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:12:12.355 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:12:12.359 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:12:12.364 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:12:12.369 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:12:12.374 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:12:12.379 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:12:12.386 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:12:12.392 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:12:12.396 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:12.402 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:12.407 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:12:12.420 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:12.426 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:12.432 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 175ms/4451ms. 2014-09-21 13:12:14.996 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:20.000 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:25.004 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:28.976 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 03 02 84 07 71 2014-09-21 13:12:28.990 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 02 84 07 2014-09-21 13:12:28.995 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Ping Node) 2014-09-21 13:12:29.001 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class WAKE_UP (0x84) 2014-09-21 13:12:29.006 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 3: Received Wake Up Request 2014-09-21 13:12:29.012 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 3: is awake 2014-09-21 13:12:29.017 INFO o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:187]- NODE 3: Got Wake Up Notification from node, continuing initialization. 2014-09-21 13:12:29.023 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Wake Up, requested = Node Information 2014-09-21 13:12:29.031 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:12:29.037 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 3: Found dynamic state command class BATTERY 2014-09-21 13:12:29.042 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 3: Creating new message for application command BATTERY_GET 2014-09-21 13:12:29.048 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:29.054 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 3: Putting message in wakeup queue. 2014-09-21 13:12:29.060 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:233]- NODE 3: Found dynamic state command class SENSOR_BINARY 2014-09-21 13:12:29.066 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:117]- NODE 3: Creating new message for application command SENSOR_BINARY_GET 2014-09-21 13:12:29.072 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:29.078 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 3: Putting message in wakeup queue. 2014-09-21 13:12:29.084 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:29.089 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:29.096 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 3: Is awake with 2 messages in the wake-up queue. 2014-09-21 13:12:29.101 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 43 2014-09-21 13:12:29.106 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:12:29.112 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:12:29.117 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 03 02 80 02 25 2B 68 2014-09-21 13:12:29.128 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 03 02 80 02 25 2B 68 2014-09-21 13:12:29.138 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:12:29.151 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:12:29.155 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:12:29.190 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2B 00 C2 2014-09-21 13:12:29.197 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2B 00 2014-09-21 13:12:29.201 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 43 2014-09-21 13:12:29.206 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:12:29.231 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 03 03 80 03 64 15 2014-09-21 13:12:29.240 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 03 80 03 64 2014-09-21 13:12:29.244 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:12:29.249 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class BATTERY (0x80) 2014-09-21 13:12:29.253 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 3: Received Battery Request 2014-09-21 13:12:29.258 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 3: Battery report value = 0x64 2014-09-21 13:12:29.262 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:29.267 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:29.272 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 3, endpoint = 1, command class = BATTERY, value = 100 2014-09-21 13:12:29.288 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:12:29.295 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:29.304 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:29.309 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 44 2014-09-21 13:12:29.314 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:12:29.319 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 187ms/4451ms. 2014-09-21 13:12:29.323 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:12:29.330 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 03 02 30 02 25 2C DF 2014-09-21 13:12:29.336 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 03 02 30 02 25 2C DF 2014-09-21 13:12:29.346 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:12:29.361 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:12:29.365 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:12:29.398 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2C 00 C5 2014-09-21 13:12:29.403 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2C 00 2014-09-21 13:12:29.406 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 44 2014-09-21 13:12:29.410 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:12:29.438 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 03 03 30 03 FF 3E 2014-09-21 13:12:29.446 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 03 03 30 03 FF 2014-09-21 13:12:29.449 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 3: Application Command Request (Stage Frequently Changed Information) 2014-09-21 13:12:29.456 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 3: Incoming command class SENSOR_BINARY (0x30) 2014-09-21 13:12:29.460 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:75]- NODE 3: Received Sensor Binary Request (v1) 2014-09-21 13:12:29.463 DEBUG o.o.b.z.i.p.c.ZWaveBinarySensorCommandClass[:95]- NODE 3: Sensor Binary report, type=Unknown, value=0xFF 2014-09-21 13:12:29.466 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:29.469 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:29.472 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 3, endpoint = 1, command class = SENSOR_BINARY, value = 255 2014-09-21 13:12:29.486 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 3: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 13:12:29.496 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 3: Serializing to file etc/zwave/1.6/node3.xml 2014-09-21 13:12:29.635 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 3: Initialisation complete. 2014-09-21 13:12:29.646 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:29.656 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:29.670 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 330ms/4451ms. 2014-09-21 13:12:30.008 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:31.666 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 3: No more messages, go back to sleep 2014-09-21 13:12:31.674 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 3: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-21 13:12:31.683 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:31.692 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 45 2014-09-21 13:12:31.699 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:12:31.706 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:12:31.712 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 03 02 84 08 25 2D 60 2014-09-21 13:12:31.725 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 03 02 84 08 25 2D 60 2014-09-21 13:12:31.740 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:12:31.752 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:12:31.760 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:12:31.791 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2D 00 C4 2014-09-21 13:12:31.809 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2D 00 2014-09-21 13:12:31.813 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 45 2014-09-21 13:12:31.817 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:12:31.826 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:31.832 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:31.841 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 3: Went to sleep 2014-09-21 13:12:31.851 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 116ms/4451ms. 2014-09-21 13:12:32.259 DEBUG o.o.b.z.i.c.ZWaveBatteryConverter[:60]- Generating poll message for BATTERY for node 3 endpoint 1 2014-09-21 13:12:32.263 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 3: Creating new message for application command BATTERY_GET 2014-09-21 13:12:32.271 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 3: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:32.281 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:247]- NODE 3: Putting message in wakeup queue. 2014-09-21 13:12:32.291 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:12:32.299 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:12:32.309 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:32.316 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 46 2014-09-21 13:12:32.325 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:12:32.330 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:12:32.341 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 2E CA 2014-09-21 13:12:32.363 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 2E CA 2014-09-21 13:12:32.382 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:12:32.397 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:12:32.400 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:12:32.418 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2E 00 C7 2014-09-21 13:12:32.432 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2E 00 2014-09-21 13:12:32.440 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 46 2014-09-21 13:12:32.449 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:12:32.474 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:12:32.485 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:12:32.498 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:12:32.506 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:12:32.513 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:12:32.520 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:12:32.529 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:12:32.539 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:12:32.550 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:12:32.558 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:32.567 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:32.574 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:12:32.591 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:32.602 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:32.613 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 238ms/4451ms. 2014-09-21 13:12:35.012 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:40.015 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:45.020 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:50.024 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:12:52.358 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:12:52.362 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:12:52.367 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:12:52.373 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 47 2014-09-21 13:12:52.378 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:12:52.383 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:12:52.388 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 2F CB 2014-09-21 13:12:52.399 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 2F CB 2014-09-21 13:12:52.410 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:12:52.421 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:12:52.425 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:12:52.445 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 2F 00 C6 2014-09-21 13:12:52.451 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 2F 00 2014-09-21 13:12:52.455 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 47 2014-09-21 13:12:52.458 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:12:52.489 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:12:52.500 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:12:52.503 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:12:52.507 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:12:52.514 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:12:52.517 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:12:52.527 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:12:52.534 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:12:52.542 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:12:52.548 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:52.552 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:52.556 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:12:52.650 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:12:52.682 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:12:52.698 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 295ms/4451ms. 2014-09-21 13:12:55.029 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:00.033 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:05.038 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:10.043 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:10.936 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-21 13:13:10.951 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-21 13:13:10.956 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:13:10.963 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 13:13:10.968 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 13:13:10.973 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-21 13:13:10.978 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:10.983 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:10.987 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-21 13:13:10.998 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.006 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.015 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-21 13:13:11.027 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-21 13:13:11.031 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:13:11.037 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 13:13:11.042 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 13:13:11.047 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-21 13:13:11.052 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (21.000000) 2014-09-21 13:13:11.057 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-21 13:13:11.062 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 21 2014-09-21 13:13:11.066 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.071 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.076 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 21 2014-09-21 13:13:11.089 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.093 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.104 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0A 00 04 00 0D 04 46 08 00 7F C9 2014-09-21 13:13:11.122 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 04 46 08 00 7F 2014-09-21 13:13:11.130 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:13:11.141 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 13:13:11.144 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class CLIMATE_CONTROL_SCHEDULE (0x46) not found, trying to add it. 2014-09-21 13:13:11.156 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-21 13:13:11.161 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 13:13:11.164 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 13:13:11.174 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 08 00 04 00 0D 02 84 07 7F 2014-09-21 13:13:11.181 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 02 84 07 2014-09-21 13:13:11.184 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:13:11.188 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class WAKE_UP (0x84) 2014-09-21 13:13:11.191 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:128]- NODE 13: Received Wake Up Request 2014-09-21 13:13:11.194 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:181]- NODE 13: is awake 2014-09-21 13:13:11.197 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.200 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.205 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:403]- NODE 13: Is awake with 6 messages in the wake-up queue. 2014-09-21 13:13:11.208 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 48 2014-09-21 13:13:11.214 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:11.218 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:13:11.222 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 30 7D 2014-09-21 13:13:11.230 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 30 7D 2014-09-21 13:13:11.251 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:11.263 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:11.276 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:11.292 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 30 00 D9 2014-09-21 13:13:11.303 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 30 00 2014-09-21 13:13:11.311 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 48 2014-09-21 13:13:11.317 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:11.334 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4C 33 2014-09-21 13:13:11.347 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4C 2014-09-21 13:13:11.360 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:13:11.365 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 13:13:11.369 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 13:13:11.381 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4C 2014-09-21 13:13:11.388 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.395 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.403 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 76 2014-09-21 13:13:11.422 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.431 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.438 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 49 2014-09-21 13:13:11.445 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:13:11.453 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 215ms/4451ms. 2014-09-21 13:13:11.456 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:11.469 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 CD 25 31 52 2014-09-21 13:13:11.494 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 CD 25 31 52 2014-09-21 13:13:11.505 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:11.513 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:11.517 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:11.541 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 31 00 D8 2014-09-21 13:13:11.548 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 31 00 2014-09-21 13:13:11.552 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 49 2014-09-21 13:13:11.557 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:11.561 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.566 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.571 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 50 2014-09-21 13:13:11.576 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:13:11.580 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 82ms/4451ms. 2014-09-21 13:13:11.585 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:11.593 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 32 BF 2014-09-21 13:13:11.598 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 32 BF 2014-09-21 13:13:11.608 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:11.621 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:11.625 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:11.643 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 32 00 DB 2014-09-21 13:13:11.649 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 32 00 2014-09-21 13:13:11.652 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 50 2014-09-21 13:13:11.655 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:11.658 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.667 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.671 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 51 2014-09-21 13:13:11.674 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:13:11.678 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 76ms/4451ms. 2014-09-21 13:13:11.681 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:11.691 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 C8 25 33 55 2014-09-21 13:13:11.688 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 02 F5 2014-09-21 13:13:11.705 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 C8 25 33 55 2014-09-21 13:13:11.709 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 02 2014-09-21 13:13:11.712 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 13:13:11.716 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 13:13:11.719 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 13:13:11.723 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:154]- Thermostat Setpoint report from nodeId = 13, Scale = 0 2014-09-21 13:13:11.727 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:155]- Thermostat Setpoint Value = (20.500000) 2014-09-21 13:13:11.730 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:168]- Setpoint Type = Heating (0x01) 2014-09-21 13:13:11.733 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:170]- Thermostat Setpoint Report from Node ID = 13, value = 20.5 2014-09-21 13:13:11.736 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.739 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.744 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = THERMOSTAT_SETPOINT, value = 20.5 2014-09-21 13:13:11.762 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:11.769 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:11.775 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:11.782 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 33 00 DA 2014-09-21 13:13:11.792 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 33 00 2014-09-21 13:13:11.800 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 51 2014-09-21 13:13:11.807 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:11.812 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.819 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.827 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 52 2014-09-21 13:13:11.839 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:13:11.843 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 134ms/4451ms. 2014-09-21 13:13:11.846 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:11.852 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 C3 25 34 59 2014-09-21 13:13:11.858 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 C3 25 34 59 2014-09-21 13:13:11.868 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:11.881 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:11.885 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:11.907 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 34 00 DD 2014-09-21 13:13:11.915 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 34 00 2014-09-21 13:13:11.919 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 52 2014-09-21 13:13:11.923 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:11.926 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:11.939 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:11.949 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 53 2014-09-21 13:13:11.954 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 13:13:11.958 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 97ms/4451ms. 2014-09-21 13:13:11.961 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:11.968 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0D 00 13 0D 06 43 01 01 22 00 BE 25 35 25 2014-09-21 13:13:11.974 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0D 00 13 0D 06 43 01 01 22 00 BE 25 35 25 2014-09-21 13:13:11.991 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:12.012 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:12.017 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:12.028 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 35 00 DC 2014-09-21 13:13:12.042 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 35 00 2014-09-21 13:13:12.053 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 53 2014-09-21 13:13:12.060 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:12.065 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:12.077 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:12.088 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 110ms/4451ms. 2014-09-21 13:13:12.398 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:13:12.408 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:13:12.414 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:13:12.419 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 54 2014-09-21 13:13:12.425 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:12.430 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:13:12.435 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 36 D2 2014-09-21 13:13:12.445 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 36 D2 2014-09-21 13:13:12.459 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:12.472 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:12.476 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:12.495 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 36 00 DF 2014-09-21 13:13:12.503 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 36 00 2014-09-21 13:13:12.506 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 54 2014-09-21 13:13:12.511 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:12.539 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:13:12.551 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:13:12.555 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:13:12.560 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:13:12.565 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:13:12.575 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:13:12.584 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:13:12.590 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:13:12.596 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:13:12.601 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:12.606 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:12.611 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:13:12.628 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:12.633 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:12.639 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 187ms/4451ms. 2014-09-21 13:13:14.087 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:477]- NODE 13: No more messages, go back to sleep 2014-09-21 13:13:14.095 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-21 13:13:14.102 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:13:14.106 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 55 2014-09-21 13:13:14.112 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:14.117 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:13:14.124 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 37 74 2014-09-21 13:13:14.132 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 37 74 2014-09-21 13:13:14.143 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:14.151 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:14.156 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:14.179 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 37 00 DE 2014-09-21 13:13:14.189 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 37 00 2014-09-21 13:13:14.193 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 55 2014-09-21 13:13:14.197 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:14.202 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:14.206 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:14.211 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:364]- NODE 13: Went to sleep 2014-09-21 13:13:14.216 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 79ms/4451ms. 2014-09-21 13:13:15.047 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:20.051 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:25.057 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:30.061 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:32.446 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:13:32.453 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:13:32.459 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:13:32.466 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 56 2014-09-21 13:13:32.472 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:32.477 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:13:32.482 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 38 DC 2014-09-21 13:13:32.492 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 38 DC 2014-09-21 13:13:32.501 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:32.512 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:32.515 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:32.537 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 38 00 D1 2014-09-21 13:13:32.543 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 38 00 2014-09-21 13:13:32.546 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 56 2014-09-21 13:13:32.549 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:32.581 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:13:32.592 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:13:32.595 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:13:32.599 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:13:32.602 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:13:32.608 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:13:32.612 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:13:32.615 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:13:32.620 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:13:32.623 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:32.627 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:32.631 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:13:32.640 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:32.646 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:32.651 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 157ms/4451ms. 2014-09-21 13:13:35.065 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:40.069 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:45.076 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:50.080 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:13:52.497 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:13:52.509 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:13:52.518 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:13:52.526 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 57 2014-09-21 13:13:52.533 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:13:52.539 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:13:52.544 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 39 DD 2014-09-21 13:13:52.554 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 39 DD 2014-09-21 13:13:52.567 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:13:52.574 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:13:52.577 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:13:52.600 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 39 00 D0 2014-09-21 13:13:52.610 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 39 00 2014-09-21 13:13:52.614 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 57 2014-09-21 13:13:52.620 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:13:52.645 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:13:52.657 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:13:52.661 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:13:52.666 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:13:52.671 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:13:52.676 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:13:52.681 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:13:52.687 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:13:52.693 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:13:52.697 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:52.703 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:52.708 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:13:52.720 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:13:52.725 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:13:52.732 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 173ms/4451ms. 2014-09-21 13:13:55.084 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:00.089 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:05.099 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:10.103 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:12.555 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:363]- NODE 6: Network heal has exceeded maximum retries 2014-09-21 13:14:12.563 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:14:12.568 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:14:12.574 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:14:12.579 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 58 2014-09-21 13:14:12.584 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:14:12.590 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:14:12.595 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 3A DE 2014-09-21 13:14:12.603 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 3A DE 2014-09-21 13:14:12.613 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:14:12.621 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:14:12.625 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 13:14:12.649 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 3A 00 D3 2014-09-21 13:14:12.655 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 3A 00 2014-09-21 13:14:12.658 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 58 2014-09-21 13:14:12.661 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 13:14:12.693 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0E 00 04 00 07 08 32 02 21 74 00 00 00 00 9F 2014-09-21 13:14:12.707 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 07 08 32 02 21 74 00 00 00 00 2014-09-21 13:14:12.711 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 7: Application Command Request (Stage Node Complete) 2014-09-21 13:14:12.714 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 7: Incoming command class METER (0x32) 2014-09-21 13:14:12.718 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:97]- Received Meter Request for Node ID = 7 2014-09-21 13:14:12.721 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:110]- Meter report from nodeId = 7 2014-09-21 13:14:12.724 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:119]- Meter Type = Electric (0x01) 2014-09-21 13:14:12.727 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:135]- Meter Scale = W (0x02) 2014-09-21 13:14:12.731 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:143]- Meter Value = (00.000000) 2014-09-21 13:14:12.735 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:14:12.739 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:14:12.743 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 7, endpoint = 1, command class = METER, value = 0E+1 2014-09-21 13:14:12.758 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 13:14:12.765 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 13:14:12.769 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 163ms/4451ms. 2014-09-21 13:14:15.107 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:20.115 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:25.120 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:30.122 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 13:14:32.605 DEBUG o.o.b.z.i.c.ZWaveMeterConverter[:69]- Generating poll message for METER for node 7 endpoint 1 2014-09-21 13:14:32.608 DEBUG o.o.b.z.i.p.c.ZWaveMeterCommandClass[:223]- Creating new message for application command METER_GET for node 7 2014-09-21 13:14:32.611 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 7: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 13:14:32.614 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 59 2014-09-21 13:14:32.617 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 13:14:32.621 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 13:14:32.623 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 07 03 32 01 10 25 3B DF 2014-09-21 13:14:32.630 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 07 03 32 01 10 25 3B DF 2014-09-21 13:14:32.640 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 13:14:32.651 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 13:14:32.656 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack.

cdjackson commented 10 years ago

It works complete different than before, some changes are lost.

After the first wake up I changed the value from 21.0 to 19.0 (I looged changes of this item): 13:09:12.279 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.5 13:09:13.000 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.0 13:09:13.762 INFO o.openhab.model.script.Update[:53]- Temperature set to 19.5 13:09:14.733 INFO o.openhab.model.script.Update[:53]- Temperature set to 19.0 After the second wakeup: 13:13:11.152 INFO o.openhab.model.script.Update[:53]- Temperature set to 21.0 13:13:11.815 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.5 The value remains at the first change….

Ok - so it needs a little more thought. The change I made is working, but as you note it only works for the first update. There is some code in the binding to drop messages being queued if they are already queued. What is therefore happening is after the first command, I queue the update request, but after that it’s dropped. The queue then looks like -:

SET 20.5 GET UPDATE SET 20.0 SET 19.5 etc

So we get the update after the first set. I’ll have a look at changing this so that it moves the request in the queue (i.e. it keeps the last one). I’m just a little worried that this might cause problems elsewhere in the code, although doing this might be a good thing as the other issue that this causes is that your last “Temperature set to 20.5” will also be dropped since it is set at the beginning. I think that the last message should be kept…

I’ll see if I can change this without a major change to the binding, and we can test it…

Chris=

cdjackson commented 10 years ago

I've actually uploaded this change to the HABmin site, so please try the latest version there...

Thomas38 commented 10 years ago

Looks good ! Temperature changes from 19.0 to 21.5: 14:52:28.915 INFO o.openhab.model.script.Update[:53]- Temperature set to 19.5 14:52:30.034 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.0 14:52:30.725 INFO o.openhab.model.script.Update[:53]- Temperature set to 20.5 14:52:31.366 INFO o.openhab.model.script.Update[:53]- Temperature set to 21.0 14:52:32.094 INFO o.openhab.model.script.Update[:53]- Temperature set to 21.5 after the wakeup: 14:55:41.903 INFO o.openhab.model.script.Update[:53]- Temperature set to 19.0 14:55:42.726 INFO o.openhab.model.script.Update[:53]- Temperature set to 21.5

Log sent private.

cdjackson commented 10 years ago

Great - I’ll take a look at the log when it arrives, but looks good :)

cdjackson commented 10 years ago

Got the log (I’m on a Mac, so linefeeds are ok). All looks good. The change I made to the wakeup queue seems to be working and the update request is going out at the end of the wakeup period, and it immediately gets the response.

If you’re happy that this is fixed, I’ll tidy up (remove some debug) and push to the main repo.

Thanks.

Cheers Chris

Thomas38 commented 10 years ago

Chris, this is what I was looking for, thanks. Maybe you find some time and the possibility to start working on the main topic, the multi_cmd ! What I have read new battery powered device starts to send multi_cmd to save energy !

cdjackson commented 10 years ago

What device are you using that supports multi_cmd? I’ve not looked at this before, but the class looks relatively simple…

Thomas38 commented 10 years ago

It is the same device 13, it starts sending multi cmd if the batteries are removed and inserterted again. After writing the wake up cycle time (even if it is the same as before) it avoids multi cmd. The message is described at the very beginning opening this issue.

I tried to set i up again set way, but i did not see again the muli_cmd command in the openhab.log, everything works. The last zwave binding I copied does not manage multi_cmd ?

cdjackson commented 10 years ago

It is the same device 13, it starts sending multi cmd if the batteries are removed and inserterted again. After writing the wake up cycle time (even if it is the same as before) it avoids multi cmd. The message is described at the very beginning opening this issue.

I tried to set i up again set way, but i did not see again the muli_cmd command in the openhab.log, everything works.

Ok - thanks. I’ll see if I can find some time to take a look later in the week.

Probably removing the batteries doesn’t restore the multi_cmd function as the wakeup is still configured. You’d probably need to completely reset the device… (just a guess).

The last zwave binding I copied does not manage multi_cmd ?

No - only a better handling of the thermostat and wakeup classes…

Thomas38 commented 10 years ago

Got it:

17:17:24.042 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_CMD (0x8f) 17:17:24.052 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class MULTI_CMD (0x8f)

I have stop the zwave binding, recycle the battery power und restore every thing back. Mybe the thermostat falls back to the multi cmd if it gets no direct response after the first wakeup.

cdjackson commented 10 years ago

This message doesn’t say that the command class is being used - all this means is that when the binding starts, the device reports which classes it can support, and at this point the binding is saying it doesn’t handle this class. It doesn’t mean that the class is actually used by the device…

Obviously it would be used (or it wouldn’t report it) but there’s often many ways to do something, so it may be that this isn’t actually needed… (I hope that makes sense).

In any case, I’ll take a look at implementing it later in the week…

Thomas38 commented 10 years ago

Yes it is used because I don't get the setpoint from the device, so I can't use it all until it avoids sending multi cmd !

cdjackson commented 10 years ago

Ok - I’m only explaining what this message means.

Is it possible to capture a zwave message received with this command?

Thomas38 commented 10 years ago

During this cycle the temp should be set to 18.0, it is still 21.0 on the device and can't be changed:

2014-09-21 17:47:13.992 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:13.996 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:14.000 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:14.005 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:14.010 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:14.015 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:14.032 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:14.038 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:14.043 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:14.048 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:14.053 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:15.262 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:16.018 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:16.878 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:17.598 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:17.829 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:17.850 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:18.065 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:18.547 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 16 00 49 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 18 2014-09-21 17:47:18.578 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 2014-09-21 17:47:18.585 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 13: Application update request, node information received. 2014-09-21 17:47:18.594 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x80 2014-09-21 17:47:18.602 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x46 2014-09-21 17:47:18.610 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLIMATE_CONTROL_SCHEDULE (0x46) 2014-09-21 17:47:18.617 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x81 2014-09-21 17:47:18.625 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class CLOCK (0x81) 2014-09-21 17:47:18.635 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x72 2014-09-21 17:47:18.645 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x8F 2014-09-21 17:47:18.652 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_CMD (0x8f) 2014-09-21 17:47:18.662 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x75 2014-09-21 17:47:18.669 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class PROTECTION (0x75) 2014-09-21 17:47:18.677 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x43 2014-09-21 17:47:18.688 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x86 2014-09-21 17:47:18.697 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x84 2014-09-21 17:47:18.712 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Frequently Changed Information, requested = Manufacture Name and Product Identification 2014-09-21 17:47:18.715 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:18.720 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:18.725 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:404]- NODE 13: Is awake with 0 messages in the wake-up queue. 2014-09-21 17:47:19.058 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:19.061 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:19.067 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:19.071 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:19.077 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:19.082 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:19.087 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:19.093 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:19.099 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:19.104 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:19.110 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:20.265 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:20.730 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:478]- NODE 13: No more messages, go back to sleep 2014-09-21 17:47:20.736 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-21 17:47:20.741 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 17:47:20.745 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 38 2014-09-21 17:47:20.749 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 17:47:20.755 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 17:47:20.761 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 26 65 2014-09-21 17:47:20.768 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 26 65 2014-09-21 17:47:20.778 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 17:47:20.791 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 17:47:20.795 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 17:47:20.813 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 26 00 CF 2014-09-21 17:47:20.820 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 26 00 2014-09-21 17:47:20.823 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 38 2014-09-21 17:47:20.827 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 17:47:20.831 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:20.835 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:20.839 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:365]- NODE 13: Went to sleep 2014-09-21 17:47:20.843 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 71ms/4438ms. 2014-09-21 17:47:21.022 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:21.881 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:22.601 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:22.838 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:22.853 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:23.069 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:24.115 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:24.122 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:24.127 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:24.132 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:24.138 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:24.143 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:24.148 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:24.154 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:24.159 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:24.164 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:24.171 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:25.269 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:26.026 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:26.885 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:27.605 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:27.842 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:27.856 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:28.073 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:29.175 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:29.177 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:29.180 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:29.183 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:29.186 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:29.189 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:29.192 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:29.195 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:29.198 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:29.201 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:29.205 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:30.273 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:31.031 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:31.889 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:32.607 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:32.843 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:32.858 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:33.075 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:34.207 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:34.209 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:34.216 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:34.219 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:34.222 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:34.226 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:34.228 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:34.231 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:34.234 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:34.237 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:34.241 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:35.275 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:36.033 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:36.891 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:37.609 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:37.845 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:37.862 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:38.077 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:39.243 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:39.245 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:39.248 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:39.250 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:39.253 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:39.256 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:39.260 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:39.262 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:39.266 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:39.268 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:39.272 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:40.277 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:41.036 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:41.893 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:42.611 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:42.847 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:42.864 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:43.079 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:44.274 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:44.277 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 1: Has been in Stage Node Complete since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:44.279 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 2: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:44.282 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 3: Has been in Stage Ping Node since Sun Sep 21 17:44:08 CEST 2014 2014-09-21 17:47:44.285 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 6: Has been in Stage Node Dead since Sun Sep 21 17:44:07 CEST 2014 2014-09-21 17:47:44.288 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 7: Has been in Stage Node Version since Sun Sep 21 17:45:23 CEST 2014 2014-09-21 17:47:44.291 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 10: Has been in Stage Node Complete since Sun Sep 21 17:44:16 CEST 2014 2014-09-21 17:47:44.294 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 11: Has been in Stage Node Dead since Sun Sep 21 17:44:32 CEST 2014 2014-09-21 17:47:44.297 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 12: Has been in Stage Node Complete since Sun Sep 21 17:45:33 CEST 2014 2014-09-21 17:47:44.300 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 13: Has been in Stage Frequently Changed Information since Sun Sep 21 17:45:43 CEST 2014 2014-09-21 17:47:44.303 WARN o.o.b.z.i.p.ZWaveController[:512]- NODE 13: May be dead, setting stage to DEAD. 2014-09-21 17:47:44.306 DEBUG o.o.b.z.i.p.ZWaveController[:499]- NODE 14: Has been in Stage Node Dead since Sun Sep 21 17:45:12 CEST 2014 2014-09-21 17:47:44.309 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:44.311 DEBUG o.o.b.z.i.ZWaveActiveBinding[:374]- ZWaveIncomingEvent Called, Network Event, Init Done. Setting ZWave Network Ready. 2014-09-21 17:47:44.321 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-21 17:47:44.324 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = RCBat, command class name = battery, using 0 refresh interval. 2014-09-21 17:47:44.328 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:610]- Network initialised - starting network monitor. 2014-09-21 17:47:44.335 DEBUG o.o.b.z.i.p.ZWaveController[:530]- NODE 6: DEAD node. 2014-09-21 17:47:44.340 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:44.346 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:44.352 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:578]- NODE 6: Node Status event - Node is Dead 2014-09-21 17:47:44.362 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:591]- NODE 6: DEAD node - requesting network heal. 2014-09-21 17:47:44.396 DEBUG o.o.b.z.i.p.ZWaveController[:530]- NODE 11: DEAD node. 2014-09-21 17:47:44.403 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:44.412 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:44.419 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:578]- NODE 11: Node Status event - Node is Dead 2014-09-21 17:47:44.424 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:591]- NODE 11: DEAD node - requesting network heal. 2014-09-21 17:47:44.433 DEBUG o.o.b.z.i.p.ZWaveController[:530]- NODE 13: DEAD node. 2014-09-21 17:47:44.438 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:44.444 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:44.449 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:578]- NODE 13: Node Status event - Node is Dead 2014-09-21 17:47:44.454 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:591]- NODE 13: DEAD node - requesting network heal. 2014-09-21 17:47:44.459 DEBUG o.o.b.z.i.p.ZWaveController[:530]- NODE 14: DEAD node. 2014-09-21 17:47:44.464 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:44.469 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:44.473 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:578]- NODE 14: Node Status event - Node is Dead 2014-09-21 17:47:44.478 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:591]- NODE 14: DEAD node - requesting network heal. 2014-09-21 17:47:45.279 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:46.038 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:46.895 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:47.613 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:47.849 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:47.866 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:48.081 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:49.488 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:375]- NODE 6: NETWORK HEAL - STARTING 2014-09-21 17:47:50.281 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:51.040 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:51.812 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 22 00 04 00 0D 1C 8F 01 06 03 80 03 4A 06 43 03 01 42 08 34 04 46 08 00 7F 02 81 05 02 46 04 02 84 07 C1 2014-09-21 17:47:51.832 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 1C 8F 01 06 03 80 03 4A 06 43 03 01 42 08 34 04 46 08 00 7F 02 81 05 02 46 04 02 84 07 2014-09-21 17:47:51.835 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Dead) 2014-09-21 17:47:51.838 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:75]- NODE 13: Setting stage. current = Frequently Changed Information, requested = Node Complete 2014-09-21 17:47:51.841 DEBUG o.o.b.z.i.p.i.ZWaveNodeSerializer[:94]- NODE 13: Serializing to file etc/zwave/1.6/node13.xml 2014-09-21 17:47:51.897 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:51.946 DEBUG o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:291]- NODE 13: Initialisation complete. 2014-09-21 17:47:51.949 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:51.951 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:51.954 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:578]- NODE 13: Node Status event - Node is Alive 2014-09-21 17:47:51.957 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:42]- NODE 13: Node has risen from the DEAD. Set stage to DONE. 2014-09-21 17:47:51.960 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class MULTI_CMD (0x8f) 2014-09-21 17:47:51.963 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:61]- NODE 13: Command class MULTI_CMD (0x8f) not found, trying to add it. 2014-09-21 17:47:51.966 DEBUG o.o.b.z.i.p.c.ZWaveCommandClass[:195]- Creating new instance of command class 0x8F 2014-09-21 17:47:51.969 WARN o.o.b.z.i.p.c.ZWaveCommandClass[:205]- Unsupported command class MULTI_CMD (0x8f) 2014-09-21 17:47:51.972 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 13: Unsupported command class MULTI_CMD (0x8f) 2014-09-21 17:47:52.615 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:52.851 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:52.868 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:53.083 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:54.493 DEBUG o.o.b.z.i.c.ZWaveBatteryConverter[:60]- Generating poll message for BATTERY for node 13 endpoint 1 2014-09-21 17:47:54.495 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-21 17:47:54.498 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 17:47:54.506 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 39 2014-09-21 17:47:54.513 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 17:47:54.517 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 27 6A 2014-09-21 17:47:54.520 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 17:47:54.527 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 27 6A 2014-09-21 17:47:54.539 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 17:47:54.551 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 17:47:54.553 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 17:47:54.574 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 27 00 CE 2014-09-21 17:47:54.585 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 27 00 2014-09-21 17:47:54.589 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 39 2014-09-21 17:47:54.592 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 17:47:54.618 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4A 35 2014-09-21 17:47:54.633 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4A 2014-09-21 17:47:54.640 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 17:47:54.642 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 17:47:54.644 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 17:47:54.646 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4A 2014-09-21 17:47:54.648 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:54.650 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:54.652 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 74 2014-09-21 17:47:54.662 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 17:47:54.668 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 17:47:54.672 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 140ms/4438ms. 2014-09-21 17:47:55.283 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:56.042 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:56.899 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:57.617 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:57.853 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:57.870 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:47:58.085 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:00.286 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:01.044 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:01.901 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:02.619 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:02.855 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:02.875 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:03.087 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:05.289 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:06.046 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:06.903 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:07.623 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:07.857 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:07.877 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:08.089 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:10.291 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:11.048 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:11.905 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:12.626 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:12.859 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:12.880 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 17:48:13.092 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet!

cdjackson commented 10 years ago

I don’t see the command to set the temperature - maybe the problem was elsewhere in OH (or maybe I missed it).

However, this does show the MULTI_CMD packet so I’ll take a look at that.=

Thomas38 commented 10 years ago

Another one, this should include setting the new value:

2014-09-21 18:06:22.967 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:139]- NODE 13: Command received for 19.5 2014-09-21 18:06:22.972 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:238]- Creating new message for application command THERMOSTAT_SETPOINT_SUPPORTED_GET for node 13 2014-09-21 18:06:22.979 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:22.987 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:159]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 02 43 04 2014-09-21 18:06:22.993 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 87 2014-09-21 18:06:23.000 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 18:06:23.005 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 18:06:23.009 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 57 DF 2014-09-21 18:06:23.026 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:238]- Creating new message for application command THERMOSTAT_SETPOINT_SUPPORTED_GET for node 13 2014-09-21 18:06:23.027 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 57 DF 2014-09-21 18:06:23.043 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:23.047 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:23.059 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:178]- NODE 13: sending update request !!!!!!! 2014-09-21 18:06:23.072 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:23.083 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:23.086 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:179]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 02 43 04 2014-09-21 18:06:23.105 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 88 2014-09-21 18:06:23.125 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 18:06:23.247 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:23.861 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:139]- NODE 13: Command received for 20.0 2014-09-21 18:06:23.867 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:238]- Creating new message for application command THERMOSTAT_SETPOINT_SUPPORTED_GET for node 13 2014-09-21 18:06:23.874 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:23.883 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:159]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 02 43 04 2014-09-21 18:06:23.888 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 89 2014-09-21 18:06:23.895 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 18:06:23.907 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:238]- Creating new message for application command THERMOSTAT_SETPOINT_SUPPORTED_GET for node 13 2014-09-21 18:06:23.918 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:23.928 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:178]- NODE 13: sending update request !!!!!!! 2014-09-21 18:06:23.942 DEBUG o.o.b.z.i.c.ZWaveThermostatSetpointConverter[:179]- Sending Message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 02 43 04 2014-09-21 18:06:23.952 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 90 2014-09-21 18:06:23.964 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 3 2014-09-21 18:06:24.732 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-21 18:06:25.343 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:26.190 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:26.964 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:27.690 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:27.917 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:27.942 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:28.064 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 18:06:28.072 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 18:06:28.076 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 18:06:28.100 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 18:06:28.103 ERROR o.o.b.z.i.p.s.SendDataMessageClass[:128]- NODE 13: Got an error while sending data. Resending message. 2014-09-21 18:06:28.108 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 91 2014-09-21 18:06:28.112 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-21 18:06:28.116 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-21 18:06:28.121 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 5B D3 2014-09-21 18:06:28.128 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 5B D3 2014-09-21 18:06:28.138 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:28.151 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:28.154 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:28.273 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:28.677 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 57 01 BF 2014-09-21 18:06:28.688 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 57 01 2014-09-21 18:06:28.691 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 87 2014-09-21 18:06:28.696 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 18:06:28.701 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 18:06:29.736 DEBUG o.o.b.z.i.ZWaveNetworkMonitor[:261]- Queue length is 3 - deferring HEAL. 2014-09-21 18:06:30.349 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:31.194 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:31.967 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:32.671 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 16 00 49 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 18 2014-09-21 18:06:32.691 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 2014-09-21 18:06:32.694 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:32.700 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 13: Application update request, node information received. 2014-09-21 18:06:32.705 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:58]- NODE 13: Application update request, requesting node state. 2014-09-21 18:06:32.709 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class BATTERY 2014-09-21 18:06:32.714 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-21 18:06:32.719 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:32.728 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 92 2014-09-21 18:06:32.731 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 4 2014-09-21 18:06:32.737 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-21 18:06:32.741 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class SWITCH_MULTILEVEL 2014-09-21 18:06:32.746 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:128]- Creating new message for application command SWITCH_MULTILEVEL_GET for node 13 2014-09-21 18:06:32.751 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:32.755 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 93 2014-09-21 18:06:32.760 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 5 2014-09-21 18:06:32.765 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:32.769 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:32.775 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:404]- NODE 13: Is awake with 0 messages in the wake-up queue. 2014-09-21 18:06:32.924 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:32.946 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:33.150 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 18:06:33.158 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 18:06:33.164 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 18:06:33.180 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 18:06:33.183 ERROR o.o.b.z.i.p.s.SendDataMessageClass[:128]- NODE 13: Got an error while sending data. Resending message. 2014-09-21 18:06:33.187 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 94 2014-09-21 18:06:33.193 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 6 2014-09-21 18:06:33.198 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 5 2014-09-21 18:06:33.205 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 5E D6 2014-09-21 18:06:33.211 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 5E D6 2014-09-21 18:06:33.221 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:33.231 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:33.235 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:33.243 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 5B 01 B3 2014-09-21 18:06:33.250 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 5B 01 2014-09-21 18:06:33.254 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 91 2014-09-21 18:06:33.258 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete, no ACK received. (0x01) 2014-09-21 18:06:33.262 WARN o.o.b.z.i.p.s.SendDataMessageClass[:61]- Already processed another send data request for this callback Id, ignoring. 2014-09-21 18:06:33.270 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 5E 00 B7 2014-09-21 18:06:33.276 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:33.280 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 5E 00 2014-09-21 18:06:33.284 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 94 2014-09-21 18:06:33.289 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:33.298 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 43 05 02 B8 2014-09-21 18:06:33.306 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 43 05 02 2014-09-21 18:06:33.310 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:06:33.314 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 18:06:33.319 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 18:06:33.323 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:100]- Process Thermostat Supported Setpoint Report 2014-09-21 18:06:33.329 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:117]- Added setpoint type Heating (0x01) 2014-09-21 18:06:33.334 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Node Complete, requested = Frequently Changed Information 2014-09-21 18:06:33.338 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:33.344 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:33.350 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 135ms/4579ms. 2014-09-21 18:06:33.355 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 4 2014-09-21 18:06:33.362 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 58 D0 2014-09-21 18:06:33.373 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 58 D0 2014-09-21 18:06:33.385 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:33.395 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:33.398 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:33.420 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 58 00 B1 2014-09-21 18:06:33.427 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 58 00 2014-09-21 18:06:33.431 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 88 2014-09-21 18:06:33.435 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:33.460 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 43 05 02 B8 2014-09-21 18:06:33.468 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 43 05 02 2014-09-21 18:06:33.472 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:06:33.476 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 18:06:33.480 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 18:06:33.484 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:100]- Process Thermostat Supported Setpoint Report 2014-09-21 18:06:33.488 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:117]- Added setpoint type Heating (0x01) 2014-09-21 18:06:33.492 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Node Complete, requested = Frequently Changed Information 2014-09-21 18:06:33.496 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:33.500 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:33.504 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 125ms/4579ms. 2014-09-21 18:06:33.509 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 3 2014-09-21 18:06:33.516 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 59 D1 2014-09-21 18:06:33.522 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 59 D1 2014-09-21 18:06:33.531 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:33.542 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:33.545 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:33.566 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 59 00 B0 2014-09-21 18:06:33.572 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 59 00 2014-09-21 18:06:33.574 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 89 2014-09-21 18:06:33.577 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:33.606 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 43 05 02 B8 2014-09-21 18:06:33.614 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 43 05 02 2014-09-21 18:06:33.618 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:06:33.621 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 18:06:33.625 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 18:06:33.627 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:100]- Process Thermostat Supported Setpoint Report 2014-09-21 18:06:33.631 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:117]- Added setpoint type Heating (0x01) 2014-09-21 18:06:33.634 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Node Complete, requested = Frequently Changed Information 2014-09-21 18:06:33.637 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:33.640 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:33.645 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 120ms/4579ms. 2014-09-21 18:06:33.648 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 2 2014-09-21 18:06:33.653 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 43 04 25 5A D2 2014-09-21 18:06:33.657 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 43 04 25 5A D2 2014-09-21 18:06:33.671 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:33.681 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:33.684 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:33.704 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 5A 00 B3 2014-09-21 18:06:33.709 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 5A 00 2014-09-21 18:06:33.712 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 90 2014-09-21 18:06:33.715 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:33.744 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 43 05 02 B8 2014-09-21 18:06:33.752 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 43 05 02 2014-09-21 18:06:33.755 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:06:33.759 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 18:06:33.763 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13 2014-09-21 18:06:33.766 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:100]- Process Thermostat Supported Setpoint Report 2014-09-21 18:06:33.769 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:117]- Added setpoint type Heating (0x01) 2014-09-21 18:06:33.773 WARN o.o.b.z.i.p.i.ZWaveNodeStageAdvancer[:71]- NODE 13: Already in or beyond node stage, ignoring. current = Node Complete, requested = Frequently Changed Information 2014-09-21 18:06:33.776 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:33.779 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:33.788 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 126ms/4579ms. 2014-09-21 18:06:33.790 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 18:06:33.796 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 5C 11 2014-09-21 18:06:33.800 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 5C 11 2014-09-21 18:06:33.810 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:33.821 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:33.824 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:33.845 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 5C 00 B5 2014-09-21 18:06:33.850 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 5C 00 2014-09-21 18:06:33.853 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 92 2014-09-21 18:06:33.856 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:33.885 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4A 35 2014-09-21 18:06:33.894 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4A 2014-09-21 18:06:33.897 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:06:33.901 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 18:06:33.905 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 18:06:33.909 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4A 2014-09-21 18:06:33.913 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:33.916 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:33.924 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 74 2014-09-21 18:06:33.933 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:33.937 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:33.948 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 145ms/4579ms. 2014-09-21 18:06:33.951 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 18:06:33.959 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 26 02 25 5D B6 2014-09-21 18:06:33.967 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 26 02 25 5D B6 2014-09-21 18:06:33.979 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:33.992 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:33.995 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:34.014 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 5D 00 B4 2014-09-21 18:06:34.026 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 5D 00 2014-09-21 18:06:34.032 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 93 2014-09-21 18:06:34.037 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:35.352 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:35.948 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:478]- NODE 13: No more messages, go back to sleep 2014-09-21 18:06:35.953 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:210]- NODE 13: Creating new message for application command WAKE_UP_NO_MORE_INFORMATION 2014-09-21 18:06:35.959 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:06:35.964 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 95 2014-09-21 18:06:35.968 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 18:06:36.198 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:36.971 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:37.699 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:37.928 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:37.949 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:38.279 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:38.991 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 18:06:38.993 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 18:06:38.996 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 18:06:39.010 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 18:06:39.012 ERROR o.o.b.z.i.p.s.SendDataMessageClass[:128]- NODE 13: Got an error while sending data. Resending message. 2014-09-21 18:06:39.014 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 96 2014-09-21 18:06:39.017 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 18:06:39.019 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 18:06:39.023 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 26 02 25 60 8B 2014-09-21 18:06:39.029 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 26 02 25 60 8B 2014-09-21 18:06:39.038 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:39.051 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:39.053 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:39.072 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 60 00 89 2014-09-21 18:06:39.077 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 60 00 2014-09-21 18:06:39.079 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 96 2014-09-21 18:06:39.081 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:40.356 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:41.201 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:41.975 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:42.702 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:42.935 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:42.952 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:43.283 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:44.051 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 18:06:44.053 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 18:06:44.056 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 18:06:44.070 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 18:06:44.072 ERROR o.o.b.z.i.p.s.SendDataMessageClass[:128]- NODE 13: Got an error while sending data. Resending message. 2014-09-21 18:06:44.074 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 97 2014-09-21 18:06:44.077 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 18:06:44.079 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 18:06:44.083 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 26 02 25 61 8A 2014-09-21 18:06:44.087 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 26 02 25 61 8A 2014-09-21 18:06:44.098 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:44.111 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:44.114 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:44.135 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 61 00 88 2014-09-21 18:06:44.140 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 61 00 2014-09-21 18:06:44.142 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 97 2014-09-21 18:06:44.146 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:45.358 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:46.203 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:46.977 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:47.704 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:47.939 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:47.954 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:48.285 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:49.111 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 18:06:49.113 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 18:06:49.116 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 18:06:49.130 ERROR o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:923]- NODE 13: Timeout while sending message. Requeueing 2014-09-21 18:06:49.132 ERROR o.o.b.z.i.p.s.SendDataMessageClass[:128]- NODE 13: Got an error while sending data. Resending message. 2014-09-21 18:06:49.134 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 98 2014-09-21 18:06:49.137 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 18:06:49.139 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 18:06:49.143 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 26 02 25 62 89 2014-09-21 18:06:49.147 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 26 02 25 62 89 2014-09-21 18:06:49.156 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:49.171 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:49.173 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:49.191 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 62 00 8B 2014-09-21 18:06:49.196 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 62 00 2014-09-21 18:06:49.199 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 98 2014-09-21 18:06:49.201 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:50.360 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:51.205 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:51.979 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:52.706 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:52.941 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:52.956 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:53.287 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:54.171 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 255: Creating empty message of class = SendDataAbort (0x16), type = Request (0x00) 2014-09-21 18:06:54.174 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 03 00 16 EA 2014-09-21 18:06:54.176 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:910]- Sending Message = 01 03 00 16 EA 2014-09-21 18:06:54.199 WARN o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:930]- NODE 13: Discarding message: Message: class = SendData (0x13), type = Request (0x00), payload = 0D 02 26 02 2014-09-21 18:06:54.202 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 18:06:54.206 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 84 08 25 5F 1C 2014-09-21 18:06:54.210 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 84 08 25 5F 1C 2014-09-21 18:06:54.221 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:06:54.234 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:06:54.236 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:06:54.254 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 5F 00 B6 2014-09-21 18:06:54.258 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 5F 00 2014-09-21 18:06:54.260 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 95 2014-09-21 18:06:54.266 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:06:54.268 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:06:54.270 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:06:54.273 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:365]- NODE 13: Went to sleep 2014-09-21 18:06:54.275 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 62ms/4579ms. 2014-09-21 18:06:55.362 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:56.207 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:56.981 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:57.708 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:57.943 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:57.958 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:06:58.289 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:00.364 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:01.209 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:01.983 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:02.710 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:02.945 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:02.960 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:03.291 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:05.366 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:06.211 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:06.985 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:07.712 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:07.947 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:07.961 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:08.293 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:10.368 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:11.215 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:11.987 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:12.715 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:12.949 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:12.963 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:13.295 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:15.371 DEBUG o.o.b.z.i.ZWaveActiveBinding[:98]- Zwave Network isn't ready yet! 2014-09-21 18:07:15.515 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 16 00 49 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 18 2014-09-21 18:07:15.528 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationUpdate (0x49), type = Request (0x00), payload = 84 0D 10 04 08 04 80 46 81 72 8F 75 43 86 84 EF 46 81 8F 2014-09-21 18:07:15.531 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:46]- NODE 13: Application update request, node information received. 2014-09-21 18:07:15.534 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:58]- NODE 13: Application update request, requesting node state. 2014-09-21 18:07:15.536 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class BATTERY 2014-09-21 18:07:15.538 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:104]- Node 13: Creating new message for application command BATTERY_GET 2014-09-21 18:07:15.541 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:07:15.544 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 99 2014-09-21 18:07:15.547 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 18:07:15.550 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 80 02 25 63 2E 2014-09-21 18:07:15.551 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 0 2014-09-21 18:07:15.555 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class THERMOSTAT_SETPOINT 2014-09-21 18:07:15.557 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:220]- Creating new message for application command THERMOSTAT_SETPOINT_GET for node 13 2014-09-21 18:07:15.562 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 80 02 25 63 2E 2014-09-21 18:07:15.564 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:07:15.567 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 100 2014-09-21 18:07:15.569 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 1 2014-09-21 18:07:15.571 DEBUG o.o.b.z.i.p.s.ApplicationUpdateMessageClass[:117]- NODE 13: Found dynamic state command class SWITCH_MULTILEVEL 2014-09-21 18:07:15.573 DEBUG o.o.b.z.i.p.c.ZWaveMultiLevelSwitchCommandClass[:128]- Creating new message for application command SWITCH_MULTILEVEL_GET for node 13 2014-09-21 18:07:15.575 DEBUG o.o.b.z.i.p.SerialMessage[:108]- NODE 13: Creating empty message of class = SendData (0x13), type = Request (0x00) 2014-09-21 18:07:15.578 DEBUG o.o.b.z.i.p.ZWaveController[:645]- Callback ID = 101 2014-09-21 18:07:15.580 DEBUG o.o.b.z.i.p.ZWaveController[:390]- Enqueueing message. Queue length = 2 2014-09-21 18:07:15.583 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:07:15.585 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:07:15.588 DEBUG o.o.b.z.i.p.c.ZWaveWakeUpCommandClass[:404]- NODE 13: Is awake with 0 messages in the wake-up queue. 2014-09-21 18:07:15.593 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:07:15.607 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:07:15.609 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:07:15.613 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 63 00 8A 2014-09-21 18:07:15.618 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 63 00 2014-09-21 18:07:15.620 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 99 2014-09-21 18:07:15.622 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:07:15.646 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 09 00 04 00 0D 03 80 03 4A 35 2014-09-21 18:07:15.668 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 03 80 03 4A 2014-09-21 18:07:15.671 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:07:15.674 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class BATTERY (0x80) 2014-09-21 18:07:15.676 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:74]- Node 13: Received Battery Request 2014-09-21 18:07:15.679 DEBUG o.o.b.z.i.p.c.ZWaveBatteryCommandClass[:84]- Node 13: Battery report value = 0x4A 2014-09-21 18:07:15.681 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:07:15.684 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:07:15.687 DEBUG o.o.b.z.i.ZWaveActiveBinding[:405]- Got a value event from Z-Wave network for nodeId = 13, endpoint = 1, command class = BATTERY, value = 74 2014-09-21 18:07:15.696 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:07:15.698 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:07:15.702 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 137ms/4579ms. 2014-09-21 18:07:15.703 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 1 2014-09-21 18:07:15.707 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 0A 00 13 0D 03 43 02 01 25 64 E9 2014-09-21 18:07:15.711 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 0A 00 13 0D 03 43 02 01 25 64 E9 2014-09-21 18:07:15.720 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:07:15.731 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:07:15.734 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:07:15.755 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 05 00 13 64 00 8D 2014-09-21 18:07:15.759 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Request (0x00), payload = 64 00 2014-09-21 18:07:15.762 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:57]- CallBack ID = 100 2014-09-21 18:07:15.764 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:58]- Status = Transmission complete and ACK received. (0x00) 2014-09-21 18:07:15.765 DEBUG o.o.b.z.i.p.ZWaveController[:405]- Notifying event listeners 2014-09-21 18:07:15.767 DEBUG o.o.b.z.i.ZWaveActiveBinding[:384]- ZwaveIncomingEvent 2014-09-21 18:07:15.770 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:937]- Response processed after 57ms/4579ms. 2014-09-21 18:07:15.772 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:862]- Took message from queue for sending. Queue length = 0 2014-09-21 18:07:15.775 DEBUG o.o.b.z.i.p.SerialMessage[:226]- Assembled message buffer = 01 09 00 13 0D 02 26 02 25 65 8E 2014-09-21 18:07:15.779 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveSendThread[:891]- Sending Message = 01 09 00 13 0D 02 26 02 25 65 8E 2014-09-21 18:07:15.792 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 04 01 13 01 E8 2014-09-21 18:07:15.804 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = SendData (0x13), type = Response (0x01), payload = 01 2014-09-21 18:07:15.810 DEBUG o.o.b.z.i.p.s.SendDataMessageClass[:36]- Sent Data successfully placed on stack. 2014-09-21 18:07:15.914 DEBUG o.o.b.z.i.p.ZWaveController$ZWaveReceiveThread[:1047]- Receive Message = 01 0C 00 04 00 0D 06 43 03 01 42 08 34 C3 2014-09-21 18:07:15.927 DEBUG o.o.b.z.i.p.ZWaveController[:158]- Message: class = ApplicationCommandHandler (0x04), type = Request (0x00), payload = 00 0D 06 43 03 01 42 08 34 2014-09-21 18:07:15.930 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:37]- NODE 13: Application Command Request (Stage Node Complete) 2014-09-21 18:07:15.933 DEBUG o.o.b.z.i.p.s.ApplicationCommandMessageClass[:55]- NODE 13: Incoming command class THERMOSTAT_SETPOINT (0x43) 2014-09-21 18:07:15.939 DEBUG o.o.b.z.i.p.c.ZWaveThermostatSetpointCommandClass[:90]- Received Thermostat Setpoint Request for Node ID = 13

cdjackson commented 10 years ago

Thanks - I’ve managed to reverse engineer the multi command packet, so I now know what’s going on :)

I’ll try and get a version to play with some time soon (an hour or two maybe - depending on dinner time!).=

Thomas38 commented 10 years ago

I want to confirm that the pre release I got with multi command implemented works without problems on different installations for several days !

electronick86 commented 10 years ago

Hello Chris, hello Thomas,

I'm also trying to use a Danfoss LC13 with openhab.

Could you tell me if the updated binding discussed in this thread is available for me to test?

Thanks in advance,

Samuel

snizzleorg commented 10 years ago

Hi,

I also have DanFoss Living Connect FW2.51 Thermostats and can not even set the temperature. My Item definition looks like this:

Number thermostat2_setpoint "Thermostat2 [%s]" <heating> { zwave="33:1:command=thermostat_setpoint,respond_to_basic=true" }

11:43:50.899 WARN o.o.b.z.i.c.ZWaveConverterHandler[:263]- No command class found for item = thermostat2_setpoint, command class name = thermostat_setpoint, using 0 refresh interval.

I also get

11:48:19.364 ERROR o.o.b.z.i.p.s.ApplicationCommandMessageClass[:74]- NODE 8: Unsupported command class MULTI_CMD (0x8f)

although using the 1.6 version of wave.binding class

am I missing something obvious?

Thanks