From a34b96549c7123147c8b87347c5c5f8b468214bc Mon Sep 17 00:00:00 2001 From: David Huss <dh@atoav.com> Date: Thu, 16 Nov 2023 11:12:29 +0100 Subject: [PATCH] Add base for InterpolatingLookup --- code/daisy-looper/daisy-looper.ino | 1 + 1 file changed, 1 insertion(+) diff --git a/code/daisy-looper/daisy-looper.ino b/code/daisy-looper/daisy-looper.ino index 2d84ecb..566ea0e 100644 --- a/code/daisy-looper/daisy-looper.ino +++ b/code/daisy-looper/daisy-looper.ino @@ -125,6 +125,7 @@ void AudioCallback(float **in, float **out, size_t size) { input_envelope_follower.Process(in[1][i]); // Process the Looper + // TODO: Add Saturating function here looper_out = looper.Process(); // Mix the dry/Wet of the looper -- GitLab