Mozzi  version v2.0
sound synthesis library for Arduino
ControlDelay.h
1 /*
2  * ControlDelay.h
3  *
4  * This file is part of Mozzi.
5  *
6  * Copyright 2012-2024 Tim Barrass and the Mozzi Team
7  *
8  * Mozzi is licensed under the GNU Lesser General Public Licence (LGPL) Version 2.1 or later.
9  *
10  */
11 
12 #ifndef CONTROLDELAY_H_
13 #define CONTROLDELAY_H_
14 
15 #include "AudioDelay.h"
16 
28 template <unsigned int NUM_BUFFER_SAMPLES, class T = int>
29 class ControlDelay: public AudioDelay<NUM_BUFFER_SAMPLES, T>
30 {
31 };
32 
38 #endif // #ifndef CONTROLDELAY_H_
Audio delay line for comb filter, flange, chorus and short echo effects.
Definition: AudioDelay.h:28
Control-rate delay line for delaying control signals.
Definition: ControlDelay.h:30