Control Surface main
MIDI Control Surface library for Arduino
Loading...
Searching...
No Matches
PCButton.hpp
Go to the documentation of this file.
1#pragma once
2
5
7
19class PCButton : public MIDIButton<ProgramChangeSender> {
20 public:
33 PCButton(pin_t pin, MIDIAddress address) : MIDIButton(pin, address, {}) {}
34};
35
#define END_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
A type-safe utility class for saving a MIDI address consisting of a 7-bit address,...
An abstract class for momentary push buttons that send MIDI events.
A class of MIDIOutputElements that read the input of a momentary push button or switch,...
Definition PCButton.hpp:19
PCButton(pin_t pin, MIDIAddress address)
Create a new PCButton object with the given pin, program number and channel.
Definition PCButton.hpp:33