Skip to content

Commit 08637fd

Browse files
committed
openzwave handling notification alive type
1 parent 01a8ab8 commit 08637fd

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

hardware/OpenZWave.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,12 @@ void COpenZWave::OnZWaveNotification(OpenZWave::Notification const* _notificatio
596596
nodeInfo->eState = NSTATE_DEAD;
597597
}
598598
break;
599+
case OpenZWave::Notification::Code_Alive:
600+
if (NodeInfo* nodeInfo = GetNodeInfo(_notification))
601+
{
602+
nodeInfo->eState = NSTATE_AWAKE;
603+
}
604+
break;
599605
case OpenZWave::Notification::Code_Timeout:
600606
#ifdef _DEBUG
601607
_log.Log(LOG_STATUS, "OpenZWave: Received timeout notification from HomeID: %u, NodeID: %d (0x%02x)", _homeID, _nodeID, _nodeID);

www/html5.appcache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# ref 672
2+
# ref 673
33

44
CACHE:
55
# CSS

0 commit comments

Comments
 (0)