Files
ENIGProtocol/enigprotocol/Commands.cs
backuppc 1eb59a0127 ..
2025-11-05 14:28:32 +09:00

39 lines
663 B
C#

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