Class ArduinoConfiguration
Represents configuration settings used to initialize a Firmata serial connection.
public class ArduinoConfiguration
- Inheritance
-
ArduinoConfiguration
- Inherited Members
Constructors
ArduinoConfiguration()
Initializes a new instance of the ArduinoConfiguration class.
public ArduinoConfiguration()
Properties
BaudRate
Gets or sets the serial baud rate.
[TypeConverter(typeof(BaudRateConverter))]
public int BaudRate { get; set; }
Property Value
PortName
Gets or sets the name of the serial port.
[TypeConverter(typeof(SerialPortNameConverter))]
public string PortName { get; set; }
Property Value
SamplingInterval
Gets or sets the sampling interval, in milliseconds, between analog and I2C measurements.
public int SamplingInterval { get; set; }