Files
ENIGProtocol/enigprotocol/Commands.cs
2025-05-27 16:34:08 +09:00

18 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ENIGProtocol
{
public enum AGVCommands
{
Goto = 100,
Stop = 101,
Reset,
SetCurrent,
Manual,
MarkStop,
LiftControl
}
}