Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- 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; }
-
- }
- }
|