Example #1
0
 private static void ControllerStateChangedHandler(ZWControllerState state, ZWaveManager facade)
 {
     if (facade.OnNotification != null)
     {
         facade.OnControllerStateChanged(facade, new ControllerStateChangedEventArgs(facade, state));
     }
 }
Example #2
0
 private static void NotificationHandler(ZWNotification notification, ZWaveManager facade)
 {
     if (facade.OnNotification != null)
     {
         facade.OnNotification(facade, new NotificationEventArgs(facade, notification));
     }
 }