2021-02-24 08:05:11 +00:00
|
|
|
|
namespace MassiveKnob.Plugin.SerialDevice.Settings
|
|
|
|
|
{
|
|
|
|
|
public class SerialDeviceSettings
|
|
|
|
|
{
|
|
|
|
|
public string PortName { get; set; } = null;
|
|
|
|
|
public int BaudRate { get; set; } = 115200;
|
2021-02-28 10:55:23 +00:00
|
|
|
|
public bool DtrEnable { get; set; } = false;
|
2021-02-24 08:05:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|