How to use Equilizer3Bands? #227
-
Does anybody know how to use Equilizer3Bands, if so please tell me how to use it? |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 10 replies
-
You use the Equilizer3Bands as ouput class indicating the final output class in the constructor: e.g.
You configure the Equilizer like any other object:
You might also need to set the channels, bits_per_sample or sample_rate e.g. with eq.setAudioInfo(is2_cfg); or by assigning the values. Please note that I have never tested this class, so any feed-back is welcome... |
Beta Was this translation helpful? Give feedback.
-
I can reproduce your issue: I have committed a correction and it is compiling now w/o errors... |
Beta Was this translation helpful? Give feedback.
-
Hi! Is it possible to change the low/high frequency settings during runtime? I can only change the weight and that works fine but when I try to change the frequencies nothing happens. I can change them by re uploading the code with different values, but not when running. Any ideas? |
Beta Was this translation helpful? Give feedback.
-
Hi Sir, |
Beta Was this translation helpful? Give feedback.
-
The AudioKitStream is the input/output class used e.g. by the AI Thinker AudioKit board or ES8388 based solutions. So this not for your use case! Just use the I2SStream instead of the AudioKitStream and you are good to go. Don't forget the default pin assignments used by the A2DP library and I2SStream are different: https://github.com/pschatzmann/arduino-audio-tools/wiki/External-DAC ps. next time look at the README that you can find in the correspondig examples directory: https://github.com/pschatzmann/arduino-audio-tools/tree/main/examples/examples-audiokit |
Beta Was this translation helpful? Give feedback.
I can reproduce your issue: I have committed a correction and it is compiling now w/o errors...