using System;
using System.Collections.Generic;
using System.Text;
namespace ENIGProtocol
{
///
/// host -> eq
///
public enum AGVCommandHE : byte
{
Goto = 100,
Stop = 101,
Reset,
SetCurrent,
Manual,
MarkStop,
LiftControl
}
///
/// eq -> host
///
public enum AGVCommandEH : byte
{
Error = 1,
Arrived = 2,
ReadRFID = 3,
Status=9,
}
public enum AGVErrorCode : byte
{
PredictFix,
TurnTimeout,
TurnError,
}
}