| 
   
    MIDI Control Surface library for Arduino 
   | 
 
 
 
 
A type-safe utility class for saving a MIDI address consisting of a 7-bit address,...
 
void setOffValue(uint8_t offValue)
 
uint8_t getOffValue() const
 
#define BEGIN_CS_NAMESPACE
 
void sendOff(MIDIAddress address)
Send a control change message to the given address, with offValue as value.
 
Class that sends MIDI control change messages signifying either "on" or "off".
 
DigitalCCSender(uint8_t onValue=0x7F, uint8_t offValue=0x00)
 
void sendOn(MIDIAddress address)
Send a control change message to the given address, with onValue as value.
 
Control_Surface_ & Control_Surface
A predefined instance of the Control Surface to use in the Arduino sketches.
 
uint8_t getOnValue() const
 
void sendCC(MIDIAddress address, uint8_t value)
Send a MIDI Control Change event.
 
void setOnValue(uint8_t onValue)