You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- using BPA.Helper;
-
- namespace BPASmartClient.FoodStationTest.Model.Par
- {
- /// <summary>
- /// 连接参数设置。
- /// </summary>
- public class ConnectParMode : NotifyBase
- {
- /// <summary>
- /// 海科PLC是否连接
- /// </summary>
- public bool HKPlcConnect { get { return _mHKPlcConnect; } set { _mHKPlcConnect = value; OnPropertyChanged(); } }
- private bool _mHKPlcConnect;
- /// <summary>
- /// 是否屏蔽料仓报警
- /// </summary>
- public bool ShieldStockbinAlarm { get { return _mShieldStockbinAlarm; } set { _mShieldStockbinAlarm = value; OnPropertyChanged(); } }
- private bool _mShieldStockbinAlarm;
-
- /// <summary>
- /// 进桶侧调速电机速度
- /// </summary>
- public short AxisLoadSpeed { get { return _mAxisLoadSpeed; } set { _mAxisLoadSpeed = value; OnPropertyChanged(); } }
- private short _mAxisLoadSpeed;
- /// <summary>
- /// 过度侧调速电机速度
- /// </summary>
- public short AxisMidSpeed { get { return _mAxisMidSpeed; } set { _mAxisMidSpeed = value; OnPropertyChanged(); } }
- private short _mAxisMidSpeed;
- /// <summary>
- /// 出桶侧调速电机速度
- /// </summary>
- public short AxisUnLoadSpeed { get { return _mAxisUnLoadSpeed; } set { _mAxisUnLoadSpeed = value; OnPropertyChanged(); } }
- private short _mAxisUnLoadSpeed;
- /// <summary>
- /// 进桶侧伺服电机速度
- /// </summary>
- public float Axis1Speed { get { return _mAxis1Speed; } set { _mAxis1Speed = value; OnPropertyChanged(); } }
- private float _mAxis1Speed;
- /// <summary>
- /// 出桶侧伺服电机速度
- /// </summary>
- public float Axis2Speed { get { return _mAxis2Speed; } set { _mAxis2Speed = value; OnPropertyChanged(); } }
- private float _mAxis2Speed;
- }
- }
|