buzzer: make all note durations float64

This commit is contained in:
Lucas Bremgartner
2022-11-26 18:18:13 +01:00
committed by Ron Evans
parent 0ccd979f23
commit d27859453c
+3 -3
View File
@@ -1,9 +1,9 @@
package buzzer
const (
Whole = 4
Half = 2
Quarter = 1
Whole = 4.0
Half = 2.0
Quarter = 1.0
Eighth = 0.500
)