From 336c4ee36f7f85fed17a11ce4f78890817bdd231 Mon Sep 17 00:00:00 2001 From: Jacob Babor Date: Thu, 30 Jan 2025 04:03:20 -0600 Subject: [PATCH] Clarify constant, try a lower BPM --- autopon.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autopon.py b/autopon.py index 7ea5cc8..2355296 100755 --- a/autopon.py +++ b/autopon.py @@ -63,11 +63,11 @@ def main(): args = parser.parse_args() # Schedule out our beat interval - # 120 Naiive, does not work + # 120.000 Naiive, does not work # 119.905 Still fast # 119.900 Still fast # 119.890 - bpm_constant = 119.890 + bpm_constant = 119.000 beat_interval = 60 / (bpm_constant * args.bpm * 2) print(f"Beat interval: {beat_interval}")