using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BPASmartClient.DosingSystemSingle { public class GlobalDevice { /// /// PLC 设备数据 /// public static PlcToComputer PlcData { get; set; } = new PlcToComputer(); /// /// 电机速度 /// public static ushort[] MotorSpeed { get; set; } = new ushort[32]; /// /// 输送带控制 /// public static uint MotorControl { get; set; } /// /// 输送带控制反馈 /// public static uint MotorControlFeedback { get; set; } } }