scripts/examples: Fix Nano 33 audio example.

This commit is contained in:
iabdalkader 2023-11-29 17:35:27 +01:00
parent 1e454f4022
commit fb1dbdf1ba

View File

@ -12,7 +12,7 @@ SIZE = 256 // (2 * CHANNELS)
raw_buf = None
fb = image.Image(SIZE + 50, SIZE, image.RGB565, copy_to_fb=True)
audio.init(channels=CHANNELS, frequency=16000, gain_db=80, highpass=0.9883)
audio.init(channels=CHANNELS, frequency=16000, gain_db=80)
def audio_callback(buf):