Closed Trylan closed 1 year ago
It should be! The library is generic and relies only on the Arduino Wire library. There's no platform-specific code in there.
Great! Thank you for your response. Are there methods for reading and changing FIR filter coefficients?
The library doesn't support FIR filter out of the box, but if you either have or can crack the algorithm used by Sigma Studio, it's trivial to interface with any block in the DSP program by utilizing the safeload_write
function.
For instance, here's how dynamic bass boost is implemented. I found the algorithm online on a SigmaDSP-related forum I think:
safeload_write
is a nested, template-based function that can take arguments in 5.23 float or 28.0 int. It's pretty neat!
Hi is this library compatible with an ESP32-C3? Would like to control sigma studio parameters on an ADAU1701 through Bluetooth.
Additionally, does this library support changing FIR filter coefficients? Thanks!