Table of Contents

Class ReceiveSysex

Namespace
Bonsai.Arduino
Assembly
Bonsai.Arduino.dll

Represents an operator that generates a sequence of system exclusive messages received from the specified Arduino.

public class ReceiveSysex : Source<byte[]>
Inheritance
ReceiveSysex
Inherited Members

Properties

Feature

Gets or sets the feature ID used to identify the system exclusive message payload.

public int Feature { get; set; }

Property Value

int

PortName

Gets or sets the name of the serial port used to communicate with the Arduino.

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

Property Value

string

Methods

Generate()

Generates an observable sequence of all the system exclusive messages with the specified feature ID received from the Arduino.

public override IObservable<byte[]> Generate()

Returns

IObservable<byte[]>

A sequence of byte arrays containing the payload data which was included with each system exclusive message received from the Arduino.