This commit is contained in:
chi
2025-06-30 13:48:19 +09:00
parent 02e71d7446
commit 00dd50192b
29 changed files with 2397 additions and 1136 deletions

View File

@@ -6,12 +6,32 @@ using System.Threading.Tasks;
namespace AGVControl
{
public enum Direction
{
Forward = 0,
Backward = 1,
Stop = 2
}
public enum AGVMoveState
{
Stop = 0,
Run
}
public enum AgvSpeed
{
High,
Middle,
Low,
}
public enum AgvRunDirection
{
Straight,
Left,
Right,
}
public enum AGVActionReasonCode
{