I'm trying to understand if it's possibile to send voice in real-time between 2 Arduino via wireless.
Something like a unidirectional Walkie Talkie.
Something like that:
Assuming that is easy to find a AD/DA converter to be connected on the PWM, the other problem is the wireless transmission.
The first solution was Zigbee, but we concluded in other posts that is not a solution for the problem.
Any other ideas ?
You connect AUD to Analog Input 1 (A1) and do something like this: value = analogRead(A1);
Them you need to send that value to your wireless connection. In the other Arduino, you receive the value and do analogWrite(....) and a PWM output.