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