I don't remember what I did.

This commit is contained in:
Tristan Smith 2024-02-17 22:36:39 -05:00
parent 7546b12a91
commit 6547d12093

13
tap.py
View file

@ -16,8 +16,11 @@ def calculate_bpm():
#calculate difference between first and last click #calculate difference between first and last click
time_diff = click_times[-1] - click_times[-2] time_diff = click_times[-1] - click_times[-2]
#calculate bpm based on time difference #calculate bpm based on time difference
if time_diff > 0:
bpm = int(60 / time_diff) bpm = int(60 / time_diff)
bpm_label.config(text=f"BPM: + {bpm}") bpm_label.config(text=f"BPM: {bpm:.2f}")
else:
bpm_label.config(text="BPM: Max")
else: else:
bpm_label.config(text="BPM: N/A") bpm_label.config(text="BPM: N/A")
@ -46,14 +49,14 @@ root.geometry("300x200")
# Create and place bpm label # Create and place bpm label
bpm_label = tk.Label(root, text="BPM: N/A", font=("Helvetica", 24)) bpm_label = tk.Label(root, text="BPM: N/A", font=("Verdana", 24))
bpm_label.pack(pady=20) bpm_label.pack(pady=20)
# Create and place start/stop button # Create and place start/stop button
start_stop_button = tk.Button(root, text="Start", font=("Helvetica", 18), command=start_stops) start_stop_button = tk.Button(root, text="Start", font=("Verdana", 18), command=start_stops)
start_stop_button.pack(pady=20) start_stop_button.pack(pady=20)
root.bind("<Button-1>", handle_click) root.bind("<Button>", handle_click)
root.bind("<space>", handle_click) root.bind("<Key>", handle_click)
root.mainloop() root.mainloop()