31
Wirelings / Re: LRA Wireling Power Issue
« on: November 03, 2022, 12:26:01 PM »
With nothing in your loop(), the hardware has nothing to repeat or continue doing after the setup() loop runs. I'm not particularly familiar with the audio to vibrate mode you are using, but I assume you need to read the audio data and process it with the library repeatedly like you might do with the loop() logic.
You can try calling your setup() loop in the loop() to see if re-writing to those registers does what you need, but you might need to add something else for what you are trying to accomplish:
loop() {
setup();
}
You can try calling your setup() loop in the loop() to see if re-writing to those registers does what you need, but you might need to add something else for what you are trying to accomplish:
loop() {
setup();
}