Table of Contents

Class ArduinoConfiguration

Namespace
Bonsai.Arduino
Assembly
Bonsai.Arduino.dll

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

int

PortName

Gets or sets the name of the serial port.

[TypeConverter(typeof(SerialPortNameConverter))]
public string PortName { get; set; }

Property Value

string

SamplingInterval

Gets or sets the sampling interval, in milliseconds, between analog and I2C measurements.

public int SamplingInterval { get; set; }

Property Value

int