circuitpython/tests/circuitpython/synth_note_bend.py
2023-05-24 10:00:12 -05:00

11 lines
172 B
Python

from synthnotehelper import *
@synth_test
def gen(synth):
l = LFO(sweep, rate=4, once=True)
yield [l]
n = Note(32, bend=l)
synth.press(n)
yield 1 / 4