namespace AmrControl.Vo { /// /// 工站状态输出函数 /// public class StationStateVO { /// /// 工站编号 /// public int stationPosNo { get; set; } /// /// 电源状态,true-开启;false-关闭 /// public bool power { set; get; } /// /// 三色灯状态,0:关闭所有灯;1:开启绿灯;2:开启黄灯;3:开启红灯 /// public short triColorLight { set; get; } /// /// 静电手环1状态;0:没有静电手环连接;1:未佩戴静电手环;2:已穿戴静电手环 /// public short wsristStrapMonitorCh1 { set; get; } /// /// 静电手环2状态;0:没有静电手环连接;1:未佩戴静电手环;2:已穿戴静电手环 /// public short wsristStrapMonitorCh2 { set; get; } /// /// 烟雾净化器开关 输出:TRUE:烟雾净化器开;FALSE:烟雾净化器关; /// public bool smokePurifier { set; get; } /// /// 大臂编码值 /// public short bigArm_encoding { set; get; } /// /// 大臂角度 /// public float bigArm_angle { set; get; } /// /// 小臂编码值 /// public short smallArm_encoding { set; get; } /// /// 小臂角度 /// public float smallArm_angle { set; get; } } }