18 lines
284 B
C#
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
|
|
}
|
|
}
|