Control Surface  1.1.1
MIDI Control Surface library for Arduino
NoteButtonLatched.hpp
Go to the documentation of this file.
1 /* ✔ */
2 
3 #pragma once
4 
7 
9 
22 class NoteButtonLatched : public MIDIButtonLatched<DigitalNoteSender> {
23  public:
39  uint8_t velocity = 0x7F)
41  pin,
42  address,
43  {velocity},
44  } {}
45 
47  void setVelocity(uint8_t velocity) { this->sender.setVelocity(velocity); }
49  uint8_t getVelocity() const { return this->sender.getVelocity(); }
50 };
51 
NoteButtonLatched::setVelocity
void setVelocity(uint8_t velocity)
Set the velocity of the MIDI Note events.
Definition: NoteButtonLatched.hpp:47
NoteButtonLatched
A class of MIDIOutputElements that read the input of a momentary push button or toggle switch,...
Definition: NoteButtonLatched.hpp:22
AH::pin_t
uint16_t pin_t
The type for Arduino pins (and ExtendedIOElement pins).
Definition: Hardware-Types.hpp:17
DigitalNoteSender::setVelocity
void setVelocity(uint8_t velocity)
Definition: DigitalNoteSender.hpp:17
BEGIN_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
Definition: Settings/NamespaceSettings.hpp:9
END_CS_NAMESPACE
#define END_CS_NAMESPACE
Definition: Settings/NamespaceSettings.hpp:10
MIDICNChannelAddress
A type-safe utility class for saving a MIDI address consisting of a 7-bit address,...
Definition: MIDICNChannelAddress.hpp:82
MIDIButtonLatched< DigitalNoteSender >::address
const MIDICNChannelAddress address
Definition: Abstract/MIDIButtonLatched.hpp:72
MIDIButtonLatched< DigitalNoteSender >::sender
DigitalNoteSender sender
Definition: Abstract/MIDIButtonLatched.hpp:76
NoteButtonLatched::getVelocity
uint8_t getVelocity() const
Get the velocity of the MIDI Note events.
Definition: NoteButtonLatched.hpp:49
NoteButtonLatched::NoteButtonLatched
NoteButtonLatched(pin_t pin, const MIDICNChannelAddress &address, uint8_t velocity=0x7F)
Create a new NoteButtonLatched object on the given pin and with address.
Definition: NoteButtonLatched.hpp:38
DigitalNoteSender::getVelocity
uint8_t getVelocity() const
Definition: DigitalNoteSender.hpp:18
DigitalNoteSender.hpp
MIDIButtonLatched.hpp
MIDIButtonLatched
A class for momentary buttons and switches that send MIDI events.
Definition: Abstract/MIDIButtonLatched.hpp:20