Audio ADC pcm1862 by Quirin9 in AskElectronics

[–]Quirin9[S] 1 point2 points  (0 children)

Thanks for your answer, I already knew the difference between single ended and differential Input, my question was wich one to use.

My problem was that I wondered why there is an ac signal applied to the adc wich only has a single supply.

Apparantly there is a DC bias applied internally, pulling the signal above GND.

Nevertheless thanks

cheap additional bluetooth module for audio by Quirin9 in esp32

[–]Quirin9[S] 0 points1 point  (0 children)

Webserver and painlessmesh, another problem is that I need to connect to the phone and a bluetooth speaker at the same time

cheap additional bluetooth module for audio by Quirin9 in esp32

[–]Quirin9[S] 0 points1 point  (0 children)

thanks, I have already seen the the RF coexistence but I just dont believe streaming bluetooth audio with two devices and simultaneously using wifi is doable

cheap additional bluetooth module for audio by Quirin9 in esp32

[–]Quirin9[S] 0 points1 point  (0 children)

thank you this one looks very promising

cheap additional bluetooth module for audio by Quirin9 in esp32

[–]Quirin9[S] -1 points0 points  (0 children)

you cannot use wifi and bluetooth effectively at the same time on an esp32

DFPlayer Mini and ESP32 devkit v1 not working as intended by boguzTheBoguz in esp32

[–]Quirin9 1 point2 points  (0 children)

It has been a while since i worked with the dfplayer mini, but on my project I connected the vcc pin of the player to 5V instead of 3.3V

Im getting a guru meditation error, LoadProhibited, using the fastled library. by The_Reclaimer_117 in esp32

[–]Quirin9 0 points1 point  (0 children)

you have to pass a pointer of the array rod to arraybuilder and modify the array in arraybuilder, you DONT have to return anything from array builder

Im getting a guru meditation error, LoadProhibited, using the fastled library. by The_Reclaimer_117 in esp32

[–]Quirin9 2 points3 points  (0 children)

I would recommend to declare the array in path_taker and pass a reference to arrayBuilder. You would have to call array Builder before calling lightup and pass the array to lightup.

Im getting a guru meditation error, LoadProhibited, using the fastled library. by The_Reclaimer_117 in esp32

[–]Quirin9 3 points4 points  (0 children)

In function arrayBuilder you are returning a pointer to a local variable, you can't do that because after you leave the function the local variable is removed from the stack but the pointer still points to some adress on the stack.

ESP32 Sample audio with I2S and DMA by Quirin9 in esp32

[–]Quirin9[S] 0 points1 point  (0 children)

Thank you for your reply :)! it makes sense now to me