Control Surface  1.1.1
MIDI Control Surface library for Arduino
NoteButton.hpp
Go to the documentation of this file.
1 #pragma once
2 
5 
7 
19 class NoteButton : public MIDIButton<DigitalNoteSender> {
20  public:
36  uint8_t velocity = 0x7F)
37  : MIDIButton{
38  pin,
39  address,
40  {velocity},
41  } {}
42 
44  void setVelocity(uint8_t velocity) { this->sender.setVelocity(velocity); }
46  uint8_t getVelocity() const { return this->sender.getVelocity(); }
47 };
48 
NoteButton::getVelocity
uint8_t getVelocity() const
Get the velocity of the MIDI Note events.
Definition: NoteButton.hpp:46
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
MIDIButton
An abstract class for momentary push buttons that send MIDI events.
Definition: Abstract/MIDIButton.hpp:17
MIDICNChannelAddress
A type-safe utility class for saving a MIDI address consisting of a 7-bit address,...
Definition: MIDICNChannelAddress.hpp:82
NoteButton::setVelocity
void setVelocity(uint8_t velocity)
Set the velocity of the MIDI Note events.
Definition: NoteButton.hpp:44
MIDIButton.hpp
DigitalNoteSender::getVelocity
uint8_t getVelocity() const
Definition: DigitalNoteSender.hpp:18
DigitalNoteSender.hpp
MIDIButton< DigitalNoteSender >::sender
DigitalNoteSender sender
Definition: Abstract/MIDIButton.hpp:55
NoteButton
A class of MIDIOutputElements that read the input of a momentary push button or switch,...
Definition: NoteButton.hpp:19
MIDIButton< DigitalNoteSender >::address
const MIDICNChannelAddress address
Definition: Abstract/MIDIButton.hpp:52
NoteButton::NoteButton
NoteButton(pin_t pin, const MIDICNChannelAddress &address, uint8_t velocity=0x7F)
Create a new NoteButton object with the given pin, note number and channel.
Definition: NoteButton.hpp:35