using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BPASmartClient.Model.乐白机器人
{
///
/// 获取机器人输入DI状态
///
public class LebaiRobot_GetInputEvent : BaseEvent
{
public int Pin { get; set; } = 0;
}
///
/// ///
/// 获取机器人输入TCPDI状态
///
///
public class LebaiRobot_GetTCPInputEvent : BaseEvent
{
public int Pin { get; set; } = 1;
}
///
/// 输入机器人信号
///
public class LebaiRobot_SetValueEvent : BaseEvent
{
public int RobotSetValue { get; set; }
}
///
/// 机器人控制
///
public class LebaiRobot_LebaiControlEvent : BaseEvent
{
public string LebaiControl { get; set; }
}
///
/// 选择乐白机器人场景
///
public class LebaiRobot_LebaiSenceEvent : BaseEvent
{
public int LebaiSence { get; set; }
}
public class LebaiRobot_SetOutPutEvent : BaseEvent
{
public int Pin { get; set; }
public bool Value { get; set; }
}
}