| 
   
    MIDI Control Surface library for Arduino 
   | 
 
 
 
 
A type-safe utility class for saving a MIDI address consisting of a 7-bit address,...
 
void sendOff(MIDIAddress address)
Send a note off message to the given address with 0x7F as velocity.
 
void setVelocity(uint8_t velocity)
 
void sendNoteOn(MIDIAddress address, uint8_t velocity)
Send a MIDI Note On event.
 
#define BEGIN_CS_NAMESPACE
 
Control_Surface_ & Control_Surface
A predefined instance of the Control Surface to use in the Arduino sketches.
 
uint8_t getVelocity() const
 
Class that sends MIDI note on and off messages.
 
void sendNoteOff(MIDIAddress address, uint8_t velocity)
Send a MIDI Note Off event.
 
void sendOn(MIDIAddress address)
Send a note on message to the given address with this object's velocity as velocity.
 
DigitalNoteSender(uint8_t velocity=0x7F)