Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- 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; }
-
- }
- }
|