This commit is contained in:
backuppc
2025-07-14 16:32:56 +09:00
parent fb8c488890
commit 4a45ae15d6
20 changed files with 663 additions and 153 deletions

View File

@@ -7,8 +7,26 @@ namespace arDev
public class AgvData
{
/// <summary>
/// S: Straight
/// L: Left
/// R: Right
/// </summary>
public char Sts { get; set; }
/// <summary>
/// H : High
/// M : Middle
/// L : Low
/// S : Mark Stop
/// </summary>
public char Speed { get; set; }
/// <summary>
/// F : Front
/// B : Back
/// </summary>
public char Direction { get; set; }
public int guidesensor { get; set; }