This commit is contained in:
chi
2025-05-27 16:34:08 +09:00
parent f9cd5543dd
commit 90c91fd1c8
3 changed files with 247 additions and 24 deletions

17
enigprotocol/Commands.cs Normal file
View File

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