Simply3DScan
Arduino.cs
Go to the documentation of this file.
1 using PostSharp.Patterns.Contracts;
2 namespace Configuration
3 {
7  public class Arduino
8  {
15  public string Port { get; set; }
22  [StrictlyPositive]
23  public int BaudRate { get; set; }
24 
25  }
26 }
string Port
Gets or sets the port.
Definition: Arduino.cs:15
Class holding configuration to access an arduino
Definition: Arduino.cs:7
int BaudRate
Gets or sets the baud rate.
Definition: Arduino.cs:23