2013年3月10日

设备控制(反馈处理)

摘要: 因为项目的关系,经常需要程序控制各种设备并接收设备消息反馈,这里以中控为例,说下我对消息反馈的做法。首先需要根据具体的消息反馈建立对应的类,分别为总电源,大屏模式,灯光。View Code 1 public enum Power { Off, On } 2 3 public class PowerNotify : Notify { 4 public Power Power { get; set; } 5 } 6 7 public class ApolloModeNotify : Notify { 8 public int M... 阅读全文

posted @ 2013-03-10 12:05 cjfwu 阅读(483) 评论(1) 推荐(0) 编辑

导航