#include <Audio/VolumeControl.hpp>
A class for controlling the volume of AudioMixer4 objects using a potentiometer.
| N | The number of mixers. |
Definition at line 23 of file VolumeControl.hpp.
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. | |
Main initialization and updating methods | |
| static void | beginAll () |
| Begin all enabled instances of this class. | |
| static void | updateAll () |
| Update all enabled instances of this class. | |
Public Member Functions | |
| VolumeControl (const Array< AudioMixer4 *, N > &mixers, pin_t analogPin, float maxGain=1.0) | |
| Create a new VolumeControl object. | |
| void | update () override |
| Read the potentiometer value, and adjust the gain of the mixers. | |
| void | begin () override |
| Initialize. | |
| void | map (MappingFunction fn) |
| Specify a mapping function that is applied to the raw analog value before setting the volume. | |
| void | invert () |
| Invert the analog value. | |
Protected Attributes | |
| Updatable< NormalUpdatable > * | next |
| Updatable< NormalUpdatable > * | previous |
Static Protected Attributes | |
| static DoublyLinkedList< Updatable< NormalUpdatable > > | updatables |
Private Attributes | |
| Array< AudioMixer4 *, N > | mixers |
| AH::FilteredAnalog | filteredAnalog |
| const float | maxGain |
|
inline |
Create a new VolumeControl object.
| mixers | An array of pointers to audio mixers. Only the pointers are saved, so the mixers should outlive this object. |
| analogPin | The analog pin with the potentiometer connected. |
| maxGain | The maximum gain for the mixers. |
Definition at line 37 of file VolumeControl.hpp.
|
inlineoverridevirtual |
Read the potentiometer value, and adjust the gain of the mixers.
Implements Updatable< T >.
Definition at line 44 of file VolumeControl.hpp.
|
inlineoverridevirtual |
Initialize.
Implements Updatable< T >.
Definition at line 56 of file VolumeControl.hpp.
|
inline |
Specify a mapping function that is applied to the raw analog value before setting the volume.
| fn | A function pointer to the mapping function. This function should take the filtered analog value of \( 16 - \mathrm{ANALOG\_FILTER\_SHIFT\_FACTOR} \) bits as a parameter, and should return a value in the same range. |
Definition at line 70 of file VolumeControl.hpp.
|
inline |
Invert the analog value.
Definition at line 73 of file VolumeControl.hpp.
|
inlinestaticinherited |
Begin all enabled instances of this class.
Definition at line 182 of file Updatable.hpp.
|
inlinestaticinherited |
Update all enabled instances of this class.
Definition at line 186 of file Updatable.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.
|
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.
|
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.
|
private |
Definition at line 76 of file VolumeControl.hpp.
|
private |
Definition at line 77 of file VolumeControl.hpp.
|
private |
Definition at line 78 of file VolumeControl.hpp.
|
staticprotectedinherited |
Definition at line 152 of file Updatable.hpp.
|
protectedinherited |
Definition at line 320 of file LinkedList.hpp.
|
protectedinherited |
Definition at line 321 of file LinkedList.hpp.