Control Surface main
MIDI Control Surface library for Arduino
Loading...
Searching...
No Matches
CCAbsoluteEncoder.hpp
Go to the documentation of this file.
1#pragma once
2
5
7
17class CCAbsoluteEncoder : public MIDIAbsoluteEncoder<ContinuousCCSender> {
18 public:
46 int16_t multiplier = 1, uint8_t pulsesPerStep = 4)
48 std::move(encoder), address, multiplier, pulsesPerStep, {}) {}
49};
50
#define END_CS_NAMESPACE
#define BEGIN_CS_NAMESPACE
Class for reading quadrature encoders, heavily influenced by http://www.pjrc.com/teensy/td_libs_Encod...
Definition AHEncoder.hpp:22
A class of MIDIOutputElements that read the input of a quadrature (rotary) encoder and send out absol...
CCAbsoluteEncoder(AHEncoder &&encoder, MIDIAddress address, int16_t multiplier=1, uint8_t pulsesPerStep=4)
Construct a new CCAbsoluteEncoder object with the given pins, address, channel, speed factor,...
Class that sends continuous MIDI control change messages with a resolution of 7 bits.
An abstract class for rotary encoders that send absolute MIDI events.
A type-safe utility class for saving a MIDI address consisting of a 7-bit address,...
An array wrapper for easy copying, comparing, and iterating.
Definition Array.hpp:32