audio.loop() not running when called out of an function other than loop() #591
Unanswered
TomCraftMC
asked this question in
Q&A
Replies: 1 comment 1 reply
-
In the simplest case, the audioI2S lib runs in the Arduino loop task and obtains the necessary computing time for the decoders from it. If you want it to be different, you can create your own task for the library. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When i call my function which only content is "audio.loop" out of the loop() function it all works.
Here the code:
But When I call the same function out of an function which is not loop() (I've also tried other than the one shown below) it does not work
Here The code:
Beta Was this translation helpful? Give feedback.
All reactions