Arduino MIDI Library  Version 5.0.1
Thru Struct Reference

#include <midi_Defs.h>

Public Types

enum  Mode { Off = 0, Full = 1, SameChannel = 2, DifferentChannel = 3 }
 

Detailed Description

Enumeration of Thru filter modes

Definition at line 127 of file midi_Defs.h.

Member Enumeration Documentation

◆ Mode

enum Thru::Mode
Enumerator
Off 

Thru disabled (nothing passes through).

Full 

Fully enabled Thru (every incoming message is sent back).

SameChannel 

Only the messages on the Input Channel will be sent back.

DifferentChannel 

All the messages but the ones on the Input Channel will be sent back.

Definition at line 129 of file midi_Defs.h.

130  {
131  Off = 0,
132  Full = 1,
133  SameChannel = 2,
134  DifferentChannel = 3,
135  };

The documentation for this struct was generated from the following file:
Thru::Off
@ Off
Thru disabled (nothing passes through).
Definition: midi_Defs.h:131
Thru::SameChannel
@ SameChannel
Only the messages on the Input Channel will be sent back.
Definition: midi_Defs.h:133
Thru::DifferentChannel
@ DifferentChannel
All the messages but the ones on the Input Channel will be sent back.
Definition: midi_Defs.h:134
Thru::Full
@ Full
Fully enabled Thru (every incoming message is sent back).
Definition: midi_Defs.h:132