summaryrefslogtreecommitdiffstats
path: root/quantum/audio/vibrato_lut.h
blob: a2b1f3e5ceb1765e04f1033b2f7d6f4114d10d9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <avr/io.h>
#include <avr/interrupt.h>
#include <avr/pgmspace.h>

#define VIBRATO_LUT_LENGTH 20

const float VIBRATO_LUT[VIBRATO_LUT_LENGTH] = { \
1.00223368114872,
1.00425299436105,
1.00585842560279,
1.00689052852052,
1.0072464122237,
1.00689052852052,
1.00585842560279,
1.00425299436105,
1.00223368114872,
1,
0.99777129706302,
0.99576501699778,
0.994175695650927,
0.993156625943589,
0.992805720491269,
0.993156625943589,
0.994175695650927,
0.99576501699778,
0.99777129706302,
1
};