You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
537 B
19 lines
537 B
using System.Numerics; |
|
|
|
public class DataSetting |
|
{ |
|
public int DeviceID { set; get; } |
|
public int MoveSpeed { set; get; } |
|
public int MoveLowSpeed { set; get; } |
|
public int RotateSpeed { set; get; } |
|
public int TimeoutStop { set; get; } |
|
public float ColorOffset { set; get; } |
|
public Dictionary<int, Vector3> ColorMapping { set; get; } = new Dictionary<int, Vector3>(); |
|
} |
|
|
|
public class DataSerialPortSetting |
|
{ |
|
public string MotorDevicePort { set; get; } |
|
public string ColorSensorDevicePort { set; get; } |
|
} |
|
|
|
|