Skip to content

Commit

Permalink
Decide settings to use in production
Browse files Browse the repository at this point in the history
  • Loading branch information
cmspencer109 committed Jun 7, 2024
1 parent cee7777 commit 57cae4c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57cae4c

Please sign in to comment.