-
Notifications
You must be signed in to change notification settings - Fork 0
/
presets.go
30 lines (29 loc) · 1.29 KB
/
presets.go
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
29
30
package main
var presets = map[string][2][2]float64{
"delta": {{0.5, 4}, {0.5, 4}},
"theta": {{4, 8}, {4, 8}},
"alpha": {{8, 13}, {8, 13}},
"beta": {{13, 30}, {13, 30}},
"gamma": {{30, 50}, {30, 50}},
"confidence": {{60, 30}, {30, 60}},
"relaxing": {{70, 35}, {35, 70}},
"higherconsciousness": {{85, 42.5}, {42.5, 85}},
"inspiration": {{90, 45}, {45, 90}},
"clarity": {{95, 47.5}, {47.5, 95}},
"stressrelief": {{20, 5}, {5, 20}},
"calm": {{30, 7.5}, {7.5, 30}},
"meditation": {{45, 11.25}, {11.25, 45}},
"creativity": {{50, 12.5}, {12.5, 50}},
"memoryrecall": {{55, 13.75}, {13.75, 55}},
"luciddreaming": {{65, 16.25}, {16.25, 65}},
"mindfulness": {{70, 17.5}, {17.5, 70}},
"productivity": {{75, 18.75}, {18.75, 75}},
"motivation": {{80, 20}, {20, 80}},
"positiveenergy": {{85, 21.25}, {21.25, 85}},
"anxietyrelief": {{95, 23.75}, {23.75, 95}},
"innerpeace": {{100, 25}, {25, 100}},
"positivity": {{115, 32.5}, {32.5, 115}},
"focus": {{120, 35}, {35, 120}},
"energy": {{125, 37.5}, {37.5, 125}},
"relaxation": {{130, 40}, {40, 130}},
}