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

11 lines
216 B
Python

from synthnotehelper import *
@synth_test
def gen(synth):
l = LFO(sweep, rate=4, once=True)
yield [l]
n = Note(128, ring_waveform=sine, ring_frequency=6, ring_bend=l)
synth.press(n)
yield 1 / 4