Replies: 1 comment 3 replies
-
|
Hi, I forked the library to add some features I wanted to use: https://github.com/marcel-licence/AC101 That should do the trick. Hope this helps |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I downloaded ml_synth_organ:e xample and the ML_SynthTools in library folder.
Compilation runs errorless with different hardware options:
//#define BOARD_ML_V1 /* activate this when using the ML PCB V1 /
#define BOARD_ESP32_AUDIO_KIT_AC101 / activate this when using the ESP32 Audio Kit v2.2 with the AC101 codec */
//#define BOARD_ESP32_AUDIO_KIT_ES8388
But there are errors when I apply BOARD_ESP32_AUDIO_KIT_AC101, that I will use.
D:\Dok\Arduino\libraries\ML_SynthTools\src/esp32_audio_kit_module.h: In function 'void ac101_setup()':
D:\Dok\Arduino\libraries\ML_SynthTools\src/esp32_audio_kit_module.h:188:8: error: 'class AC101' has no member named 'SetLineSource'
ac.SetLineSource();
^
D:\Dok\Arduino\libraries\ML_SynthTools\src/esp32_audio_kit_module.h: In function 'void ac101_setSourceMic()':
D:\Dok\Arduino\libraries\ML_SynthTools\src/esp32_audio_kit_module.h:218:8: error: 'class AC101' has no member named 'SetMicSource'
ac.SetMicSource();
^
D:\Dok\Arduino\libraries\ML_SynthTools\src/esp32_audio_kit_module.h: In function 'void ac101_setSourceLine()':
D:\Dok\Arduino\libraries\ML_SynthTools\src/esp32_audio_kit_module.h:226:8: error: 'class AC101' has no member named 'SetLineSource'
ac.SetLineSource();
I tried it with different libraries of AC101 on github, Usually I use:
url=https://github.com/Yveaux/AC101
Do you have any proposal?
Beta Was this translation helpful? Give feedback.
All reactions