From 3a87f0edb9d9f605d5081d0f2a9476adfca68b89 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Thu, 22 Feb 2018 13:31:45 +0000 Subject: [PATCH] add and correct some presets --- src/components/Main.vue | 72 +++++++++++++++++++++++++++++++++++++++-- 1 file changed, 69 insertions(+), 3 deletions(-) diff --git a/src/components/Main.vue b/src/components/Main.vue index 9be559c..739fc57 100644 --- a/src/components/Main.vue +++ b/src/components/Main.vue @@ -10,6 +10,15 @@ + + + + + + + + + @@ -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: '' } } }