상속: NodeReport
예제 #1
0
        protected internal override void HandleEvent(Command command)
        {
            base.HandleEvent(command);

            if (command.CommandID == Convert.ToByte(WakeUp.command.Notification))
            {
                var report = new WakeUpReport(Node);
                OnChanged(new ReportEventArgs <WakeUpReport>(report));
                return;
            }
        }
예제 #2
0
파일: WakeUp.cs 프로젝트: roblans/ZWave4Net
        protected internal override void HandleEvent(Command command)
        {
            base.HandleEvent(command);

            if (command.CommandID == Convert.ToByte(WakeUp.command.Notification))
            {
                var report = new WakeUpReport(Node);
                OnChanged(new ReportEventArgs<WakeUpReport>(report));
                return;
            }
        }