From 57cae4c7f476663050bf8e6f44a198a381ac856f Mon Sep 17 00:00:00 2001 From: Christopher Spencer Date: Fri, 7 Jun 2024 09:04:35 -0500 Subject: [PATCH] Decide settings to use in production --- main.py | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/main.py b/main.py index dd5b0b6..6abb0c6 100644 --- a/main.py +++ b/main.py @@ -12,13 +12,21 @@ # ZIMBEL_MELODY = 'cagfd' # descending # ZIMBEL_MELODY = 'dfgacagf' # ascending and descending -FADE_VOLUME_START = True -FADE_TEMPO_START = True +FADE_VOLUME_START = False +FADE_TEMPO_START = False FADE_IN_DURATION = 3 # seconds tempo = 300 # bpm STARTING_TEMPO = tempo-60 # bpm -PLAY_SECOND_NOTE = False -SECOND_NOTE_DELAY = 0 # ms +PLAY_SECOND_NOTE = True +SECOND_NOTE_DELAY = 30 # ms + +# FADE_VOLUME_START = False +# FADE_TEMPO_START = True +# FADE_IN_DURATION = 0 # seconds +# tempo = 400 # bpm +# STARTING_TEMPO = tempo-60 # bpm +# PLAY_SECOND_NOTE = False +# SECOND_NOTE_DELAY = 30 # ms # FOR DEBUGGING ONLY # Set to False if needed for disabling certain features