add and correct some presets

master
Simon Bruder 2018-02-22 13:31:45 +00:00
parent 8cb2f4c956
commit 3a87f0edb9
1 changed files with 69 additions and 3 deletions

View File

@ -10,6 +10,15 @@
<option value="gamma">Gamma waves</option>
<option value="delta">Delta waves</option>
<option value="theta">Theta waves</option>
<option value="focus">Focus</option>
<option value="creativity">Creativity</option>
<option value="relaxation">Relaxation</option>
<option value="sleep">Sleep</option>
<option value="chanting">Chanting</option>
<option value="intuition">Intuition</option>
<option value="healing">Healing</option>
<option value="intelligence">Intelligence</option>
<option value="euphoria">Euphoria</option>
</select>
<button class="stop pure-u-1 pure-u-md-1-2" v-if="started" v-on:click="stop">Stop</button>
<button class="start pure-u-1 pure-u-md-1-2" v-else v-on:click="start">Start</button>
@ -52,13 +61,13 @@ export default {
alpha: {
waveform: 'sine',
left: 130,
right: 115,
right: 139,
description: 'mediating, daydreaming; routine tasks'
},
beta: {
waveform: 'sine',
left: 100,
right: 115,
right: 120,
description: 'awake, alert, active, engaged'
},
gamma: {
@ -70,7 +79,7 @@ export default {
delta: {
waveform: 'sine',
left: 120,
right: 124,
right: 122,
description: 'relaxation, healing, spiritual'
},
theta: {
@ -78,6 +87,63 @@ export default {
left: 150,
right: 155,
description: 'trance, daydreaming'
},
/*
* Preset based on http://www.guidedmeditationtreks.com/binauralwebapp.html
*/
focus: {
waveform: 'sine',
left: 256,
right: 270,
description: ''
},
creativity: {
waveform: 'sine',
left: 174.7,
right: 185.3,
description: ''
},
relaxation: {
waveform: 'sine',
left: 133,
right: 139,
description: ''
},
sleep: {
waveform: 'sine',
left: 139.3,
right: 142.7,
description: ''
},
chanting: {
waveform: 'sine',
left: 429.75,
right: 434.25,
description: ''
},
intuition: {
waveform: 'sine',
left: 208.25,
right: 213.75,
description: ''
},
healing: {
waveform: 'sine',
left: 145,
right: 154,
description: ''
},
intelligence: {
waveform: 'sine',
left: 485.5,
right: 498.5,
description: ''
},
euphoria: {
waveform: 'sine',
left: 200,
right: 220,
description: ''
}
}
}