#include <MIDI_Inputs/MCU/VU.hpp>
A MIDI input element that represents a Mackie Control Universal VU meter.
This version can be banked.
BankSize | The number of banks. |
Data access | |
uint8_t | getValue (uint8_t bank) const |
Get the most recent VU position that was received for the given bank. | |
bool | getOverload (uint8_t bank) const |
Get the status of the overload indicator for the given bank. | |
float | getFloatValue (uint8_t bank) const |
Get the most recent VU position for the given bank as a value between 0 and 1. | |
uint8_t | getValue () override |
Get the most recent VU position that was received for the active bank. | |
bool | getOverload () override |
Get the status of the overload indicator for the active bank. | |
float | getFloatValue () override |
Get the most recent VU position for the active bank as a value between 0 and 1. | |
Enabling and disabling updatables | |
void | enable () |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically. | |
void | disable () |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically. | |
bool | isEnabled () const |
Check if this updatable is enabled. | |
void | moveDown () |
Move down this element in the list. | |
static void | enable (UpdatableCRTP *element) |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically. | |
static void | enable (UpdatableCRTP &element) |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically. | |
static void | enable (U(&array)[N]) |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically. | |
static void | disable (UpdatableCRTP *element) |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically. | |
static void | disable (UpdatableCRTP &element) |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically. | |
static void | disable (U(&array)[N]) |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically. | |
Detecting changes | |
bool | getDirty () const |
Check if the value was updated since the last time the dirty flag was cleared. | |
void | clearDirty () |
Clear the dirty flag. | |
Public Types | |
using | Matcher = BankableVUMatcher<BankSize> |
using | Parent |
using | MessageType = typename MIDIInputElement<Type>::MessageType |
Public Member Functions | |
VU (BankConfig< BankSize > config, uint8_t track, MIDIChannelCable channelCN, unsigned int decayTime=VUDecay::Default) | |
Constructor. | |
VU (BankConfig< BankSize > config, uint8_t track, unsigned int decayTime=VUDecay::Default) | |
Constructor. | |
void | reset () override |
Reset all values to zero. | |
void | update () override |
Decay the VU meter. | |
bool | updateWith (MessageType midimsg) override |
Receive a new MIDI message and update the internal state. | |
virtual void | handleUpdate (typename Matcher::Result match)=0 |
virtual void | begin () |
Initialize the input element. | |
uint8_t | getMax () const |
Get the maximum value that this VU meter can return. | |
Static Public Member Functions | |
static bool | updateAllWith (MessageType midimsg) |
Update all. | |
static void | updateAll () |
Update all. | |
static void | beginAll () |
Begin all. | |
static void | resetAll () |
Reset all. | |
Protected Member Functions | |
bool | handleUpdateImpl (typename Matcher::Result match) |
void | handleUpdate (typename Matcher::Result match) override |
bool | decay () |
void | onBankSettingChange () override |
A function to be executed each time the bank setting changes. | |
uint8_t | getActiveBank () const |
Protected Attributes | |
Matcher | matcher |
Node * | next = nullptr |
BankSettingChangeCallback * | next |
Node * | previous = nullptr |
BankSettingChangeCallback * | previous |
uint8_t | max |
bool | alwaysDirty |
bool | dirty = true |
Static Protected Attributes | |
static DoublyLinkedList< MIDIInputElement< Type > > | updatables |
Private Attributes | |
AH::Array< VUState, BankSize > | states = {{}} |
AH::Timer< millis > | decayTimer |
using Matcher = BankableVUMatcher<BankSize> |
using Parent |
|
inherited |
Definition at line 93 of file MIDIInputElement.hpp.
|
inline |
Constructor.
config | The bank configuration to use. |
track | The track of the VU meter. [1, 8] |
channelCN | The MIDI channel [Channel_1, Channel_16] and Cable Number [Cable_1, Cable_16]. |
decayTime | The time in milliseconds it takes for the value to decay one step. The MCU protocol uses 300 ms per division, and two steps per division, so the default is 150 ms per step. Some software doesn't work if the VU meter decays automatically, in that case, you can set the decay time to zero to disable the decay. |
|
inline |
Constructor.
config | The bank configuration to use. |
track | The track of the VU meter. [1, 8] |
decayTime | The time in milliseconds it takes for the value to decay one step. The MCU protocol uses 300 ms per division, and two steps per division, so the default is 150 ms per step. Some software doesn't work if the VU meter decays automatically, in that case, you can set the decay time to zero to disable the decay. |
|
inlineprotected |
|
inlineoverrideprotected |
|
inlineoverridevirtual |
Reset all values to zero.
Reimplemented from MIDIInputElement< Type >.
Reimplemented in VULEDs< BankSize, NumLEDs >.
|
inlineoverridevirtual |
Decay the VU meter.
Reimplemented from MIDIInputElement< Type >.
Reimplemented in VULEDs< BankSize, NumLEDs >.
|
inlineoverrideprotectedvirtual |
A function to be executed each time the bank setting changes.
Think of an LED that indicates whether a track is muted or not. If this LED is bankable, let's say with 4 tracks per bank, 2 banks, and a base address of 3, then this LED object keeps the state of tracks 3 and 7. When the bank setting is 0, the LED displays the state of track 3, when the bank setting is 1, the LED displays the state of track 7. To know when to update the LED, this callback is used.
Reimplemented from BankSettingChangeCallback.
Reimplemented in VULEDs< BankSize, NumLEDs >.
|
inline |
|
inline |
|
inline |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineoverridevirtual |
|
inlineprotectedinherited |
Definition at line 126 of file MIDIInputElement.hpp.
|
inlineoverridevirtualinherited |
Receive a new MIDI message and update the internal state.
Implements MIDIInputElement< Type >.
Definition at line 95 of file MIDIInputElement.hpp.
|
pure virtualinherited |
Implemented in VPotRingLEDs< BankSize >, VULEDs< NumLEDs >, VULEDs< BankSize, NumLEDs >, NoteCCKPLED< Type, BankSize >, NoteCCKPLEDBar< Type, BankSize, NumLEDs >, NoteCCKPLEDPWM< Type, BankSize >, NoteCCKPRangeFastLED< Type, BankSize, RangeLen, ColorMapper >, and NoteCCKPRangeLEDs< Type, BankSize, RangeLen >.
|
inlinevirtualinherited |
Initialize the input element.
Reimplemented in VPotRingLEDs, VPotRingLEDs< BankSize >, VULEDs< NumLEDs >, VULEDs< BankSize, NumLEDs >, NoteCCKPLED< Type >, NoteCCKPLED< Type, BankSize >, NoteCCKPLEDBar< Type, NumLEDs >, NoteCCKPLEDBar< Type, BankSize, NumLEDs >, NoteCCKPLEDPWM< Type >, NoteCCKPLEDPWM< Type, BankSize >, NoteCCKPRangeFastLED< Type, RangeLen, ColorMapper >, NoteCCKPRangeFastLED< Type, BankSize, RangeLen, ColorMapper >, NoteCCKPRangeLEDs< Type, RangeLen >, NoteCCKPRangeLEDs< Type, BankSize, RangeLen >, LCD< BufferSize >, GenericProgramChangeSelector< N, Callback >, and GenericProgramChangeSelector< N, SelectorLEDsCallback< N > >.
Definition at line 34 of file MIDIInputElement.hpp.
|
inlinestaticinherited |
Update all.
Definition at line 46 of file MIDIInputElement.hpp.
|
inlinestaticinherited |
Update all.
Definition at line 57 of file MIDIInputElement.hpp.
|
inlinestaticinherited |
Begin all.
Definition at line 62 of file MIDIInputElement.hpp.
|
inlinestaticinherited |
Reset all.
Definition at line 67 of file MIDIInputElement.hpp.
|
inlineinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 96 of file Updatable.hpp.
|
inlinestaticinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 125 of file Updatable.hpp.
|
inlinestaticinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 127 of file Updatable.hpp.
|
inlinestaticinherited |
Enable this updatable: insert it into the linked list of instances, so it gets updated automatically.
Definition at line 130 of file Updatable.hpp.
|
inlineinherited |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 106 of file Updatable.hpp.
|
inlinestaticinherited |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 136 of file Updatable.hpp.
|
inlinestaticinherited |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 138 of file Updatable.hpp.
|
inlinestaticinherited |
Disable this updatable: remove it from the linked list of instances, so it no longer gets updated automatically.
Definition at line 141 of file Updatable.hpp.
|
inlineinherited |
Check if this updatable is enabled.
Definition at line 120 of file Updatable.hpp.
|
inlineinherited |
Move down this element in the list.
Definition at line 147 of file Updatable.hpp.
|
inlineinherited |
Check if the value was updated since the last time the dirty flag was cleared.
Definition at line 94 of file InterfaceMIDIInputElements.hpp.
|
inlineinherited |
Clear the dirty flag.
Definition at line 96 of file InterfaceMIDIInputElements.hpp.
|
inlineinherited |
Get the maximum value that this VU meter can return.
Definition at line 107 of file InterfaceMIDIInputElements.hpp.
|
private |
|
protectedinherited |
Definition at line 105 of file MIDIInputElement.hpp.
|
staticprotectedinherited |
Definition at line 152 of file Updatable.hpp.
|
protectedinherited |
Definition at line 320 of file LinkedList.hpp.
|
protectedinherited |
Definition at line 320 of file LinkedList.hpp.
|
protectedinherited |
Definition at line 321 of file LinkedList.hpp.
|
protectedinherited |
Definition at line 321 of file LinkedList.hpp.
|
protectedinherited |
Definition at line 110 of file InterfaceMIDIInputElements.hpp.
|
protectedinherited |
Definition at line 111 of file InterfaceMIDIInputElements.hpp.
|
protectedinherited |
Definition at line 112 of file InterfaceMIDIInputElements.hpp.