We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a891e14 commit f5388e1Copy full SHA for f5388e1
1 file changed
tests/circuitpython-manual/synthio/note/biquad.py
@@ -51,6 +51,21 @@ def synthesize(synth):
51
synth.release_all()
52
yield 36
53
54
+ for waveform in (sine, None, noise):
55
+ n = synthio.Note(
56
+ frequency=555,
57
+ envelope=envelope,
58
+ waveform=waveform,
59
+ )
60
+ synth.press(n)
61
+ i = 220
62
+ while i < 1760:
63
+ n.filter = synth.band_pass_filter(i)
64
+ i *= 1.00579
65
+ yield 1
66
+ synth.release_all()
67
+ yield 6
68
+
69
70
with wave.open("biquad.wav", "w") as f:
71
f.setnchannels(1)
0 commit comments