Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.DosingSystem
- {
- public class GlobalDevice
- {
- /// <summary>
- /// PLC 设备数据
- /// </summary>
- public static PlcToComputer PlcData { get; set; } = new PlcToComputer();
-
- /// <summary>
- /// 电机速度
- /// </summary>
- public static ushort[] MotorSpeed { get; set; } = new ushort[32];
-
- /// <summary>
- /// 输送带控制
- /// </summary>
- public static uint MotorControl { get; set; }
-
- /// <summary>
- /// 输送带控制反馈
- /// </summary>
- public static uint MotorControlFeedback { get; set; }
-
- }
- }
|