mirror of
https://github.com/BotChain-Robots/ui.git
synced 2026-07-08 15:07:22 +02:00
19 lines
413 B
C#
19 lines
413 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
[System.Serializable]
|
|
public class ServoCommand
|
|
{
|
|
public string ModuleId;
|
|
public string Type = "Servo";
|
|
public float TargetAngle;
|
|
}
|
|
|
|
[System.Serializable]
|
|
public class DCCommand
|
|
{
|
|
public string ModuleId;
|
|
public string Type = "DC";
|
|
public float RotateByDegrees;
|
|
public string Direction; // "Clockwise" or "CounterClockwise"
|
|
} |