What do you put in the float *mem argument when initializing the looper in looper.h?

I’m trying to use the looper.h class but don’t get what to put in the first argument for *mem. Any help would be great!

You need to declare your own audio buffer (float array) for the Looper object to write to and read from; you’d pass that array, along with its length, as arguments to the Init method.

This example shows how to use the object: https://github.com/electro-smith/DaisyExamples/blob/master/patch_sm/Looper/Looper.cpp

Thanks so much that’s perfect!