Setting up Stream Webserver using AnalogAudioStream as input #370
-
Hello, I am very new to Arduino programming and audio recording but I found this wonderful library yesterday which looks like it could help in my project. I am using a MAX9814 microphone module hooked up to an ESP32. The pins are setup as:
I have modified one of the examples to look like this
Now when I run this this is the output I get
After printing that on the monitor it then just prints out doted lines What I am trying to do ?I feel it is important to explain what I am trying to achieve, I would like to set up a remote recorder(microphone) that streams the audio output to my raspberry pi. Any help will be highly appreciated. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I am afraid that this is not the right place to solve your infrastructure problems and I suggest that you take a step back. First try to connect to Wifi from an ESP32 w/o my framework. There are plenty of tutorials and Google is your friend: If you can't connect, it is usually because of a wrong ssid or password. Or your Wifi Access point is requiring a security protocol that the ESP32 can't support. Only after you succeed you can move to the next step! There are plenty of alternative possibilities to reach your goal:
But for all of them it is a precondition that the wifi is working properly! |
Beta Was this translation helpful? Give feedback.
-
@davidlutta i have almost the identical set-up as you. once you have managed to sort out your wifi issue, there are a few issues with your example code. here's a slightly modified version of your code that should work:
|
Beta Was this translation helpful? Give feedback.
I am afraid that this is not the right place to solve your infrastructure problems and I suggest that you take a step back. First try to connect to Wifi from an ESP32 w/o my framework.
There are plenty of tutorials and Google is your friend: If you can't connect, it is usually because of a wrong ssid or password. Or your Wifi Access point is requiring a security protocol that the ESP32 can't support.
Only after you succeed you can move to the next step!
There are plenty of alternative possibilities to reach your goal:
But for all of…