ESP32 Walkie-Talkie: DIY Audio Magic

  Переглядів 98,693

atomic14

atomic14

День тому

We've made a Walkie-Talkie using the ESP32. Audio data is transmitted over either UDP broadcast or ESP-NOW. So the Walkie-Talkie will even work without a WiFi network!
The custom PCBs I've had made up were manufactured by PCBWay and as always they've done a really great job. You can order the boards directly from PCBWay here: www.pcbway.com/project/sharep...
And you can help support the channel by using my referral link: www.pcbway.com/setinvite.aspx... for other PCBs.
If you like ESP32 audio videos - I've got a complete set on this playlist: • ESP32 Audio
I'm using my own microphone board (available on Tindie: www.tindie.com/products/21519/) but the code will work equally well with any I2S microphone (e.g. the INMP441) and you can easily modify it to use the built-in ADC for analogue microphones.
For output, I'm using an I2S amplifier breakout board which I'm using the drive a 4ohm speaker. Once again, you can modify the code to use the built-in DAC for output which will let you use headphones or an analogue amplifier board.
As always, the code is on GitHub: github.com/atomic14/esp32-wal...
I've got a great series of videos on ESP32 Audio which are a great resource for anyone who wants to learn more about audio on the ESP32 which you can find here: • ESP32 Audio
For this project I've 3D printed a case - you can access the Fusion 360 project here: a360.co/2PXgAUS
You can access the PCB schematic here: easyeda.com/chris_9044/esp32-...
Thanks for watching - there are more videos coming - so don't forget to subscribe :)
Components:
TinyPico: amzn.to/3e525YR
Microphone: www.tindie.com/products/21519/ or amzn.to/3e2oIgy
Amplifier: amzn.to/3xC0yRF
Speakers: amzn.to/3xzRkp2
----
Patreon: / atomic14
ko-fi: ko-fi.com/atomic14

КОМЕНТАРІ: 254
@atomic14
@atomic14 2 роки тому
Interested in ESP32 Audio: ukposts.info/slow/PL5vDt5AALlRfGVUv2x7riDMIOX34udtKD Looking for all my ESP32 projects: ukposts.info/slow/PL5vDt5AALlRdN2KyL30l8j7kLCxhDUrNw
@sijojohnson
@sijojohnson 2 роки тому
update this project to ESP32-LyraT-Mini hardware , its using esp32S3 chipset , esp32wroom B module.
@xplode1344
@xplode1344 Рік тому
Could you please convert your code for Arduino IDE
@photopicker
@photopicker 2 роки тому
I appreciate your ESP32 project demonstrations and explanations here on YT. 20 years ago this type of prototype development required $$$ and a team. Today is available to anyone willing to spend the time.
@VinodPatel-uf1pi
@VinodPatel-uf1pi 2 місяці тому
Thank you for the amazing work. I used this on ESP32-C3, had to change the GPIO pins and it worked like a charm.
@SteveWrightNZ
@SteveWrightNZ Рік тому
Cool, ok, now we need a repeater pair of them running full duplex for the local hilltop...
@derrick_builds
@derrick_builds 19 днів тому
Who doesent like a cool little walkie-talkie project. Good work.
@Dazza_Doo
@Dazza_Doo Рік тому
Impressive for a audio data packet - the sound quality is really good
@bloodyspirit058
@bloodyspirit058 Рік тому
Thank you for sharing! I was trying to find a way to connect my PC and Radio for some wireless FT8 and this seems like a great start. Look forward to checking out your other videos.
@csongorvarga
@csongorvarga 3 роки тому
This is a very cool project. I was thinking about building a simple intercom in the house and this just fits perfectly. Broadcast just makes it easy, I don't have to worry about much at all. I remember seeing lot of ESP32 development board for mic and speaker output, those could be readily available hardware for this project.
@atomic14
@atomic14 3 роки тому
Yeah, there's a quite a few very nice boards. There's also quite a few with codec chips which would make compression possible.
@LiBlock
@LiBlock 8 місяців тому
I don't quite know which file should I upload to the ESP32. Is it the Application.cpp/h , config.cpp/h or main.cpp? Please help. Thanks!
@ei23de
@ei23de 3 роки тому
Great project! Very cool that you utilized ESP-NOW!
@atomic14
@atomic14 3 роки тому
Thanks - I do need to do a proper range test to see how far you can actually get it to go - I've seen all sorts of claims and want to test them.
@ei23de
@ei23de 3 роки тому
@@atomic14 It's highly dependent on antenna types. I never tested it on field, but in buildings (pcb antenna on R / external antenna on S) it's about the same as your normal wifi signal.
@dl8cy
@dl8cy 3 роки тому
awesome work - and a special thanx 2 u 4 sharing everything!
@atomic14
@atomic14 3 роки тому
Thanks! It was a fun project - I was very pleased that it actually worked :)
@xPsIXx
@xPsIXx 3 роки тому
Fantastic. This could be awesome for me with a directional antenna. This brings an idea to mind, two esp's transmitting their GPS location so that each of the esp's points to the other esp.
@atomic14
@atomic14 3 роки тому
That's an interesting idea - self aligning antenna.
@JasonWho
@JasonWho 3 роки тому
I really like this one, could also work as a short range child location beacon
@atomic14
@atomic14 3 роки тому
Always makes me think of the movement trackers from Aliens :)
@curtheisler1200
@curtheisler1200 7 днів тому
Great. I'm waiting on some ESPs for some wireless speakers. This should help
@njh
@njh 3 роки тому
Love this idea! Really cool! A common thing on Wifi is seeing packets repeated. Using RTP header on top of UDP could be a way of detecting out-of-order/missing/repeated packets.
@atomic14
@atomic14 3 роки тому
That’s a great idea. I did play with the idea of adding a simple packet number to detect repeated/out of order packets. You could get quite fancy and reorder packets as they arrive - assuming you have a large enough receive buffer.
@njh
@njh 3 роки тому
Started thinking about building one of these myself and had some more ideas: - simplest audio speech codec would be A-law (G.711) which gives 2:1 compression - use multicast to avoid spamming all devices on the network (although multicast can be a bit funny on Wifi) - you could have a channel selector (7-segment display?) that mapped to different multicast addresses - a door-bell type device that broadcasts a pre-recorded sound when a button is pressed - have a channel connected to a bridge to Alexa, so you can ask questions! - love the idea of a desktop Power over Ethernet powered base station (with gooseneck mic!) - implement Push to Talk SIP - might end up compatible with other types of devices - might even work in a web browser with WebRTC?
@atomic14
@atomic14 3 роки тому
@@njh Sounds very interesting - definitely, some kind of audio companding/compression would be good to fit the audio into 8 bits more effectively. And some simple compression to reduce bandwidth would be really nice. Multicast should be done - I had some issues with it working on my desktop Mac - it seemed to work between the ESP32s, but my computer refused to see any packets. As you say, there are some funny things around WiFi and multicast that may mean it's not feasible. Love the idea of a channel selector. I think it would look really cool! Getting it to work with WebRTC would be very interesting.
@njh
@njh 3 роки тому
@@atomic14 Are you doing setsockopt(... IP_ADD_MEMBERSHIP ...) to send an IGMP packet and tell the kernel to receive multicast packets? Some Switches/Routers/APs look for IGMP packets in order to filter out unwanted multicast.
@atomic14
@atomic14 3 роки тому
@@njh I tried several different examples, one in python and one in C and couldn't get them to work. The code looked pretty much the same as the Arduino code which did work. It also looked like the Mac thought it was a member of the group. So it feels like it's something to do with the router not forwarding the packets on. It might be due to my mac having both an IPV6 and IPV4 address. But that doesn't seem to stop the broadcast packets. Needs a bit more investigation.
@Madsynth1987
@Madsynth1987 2 місяці тому
I love this project! I'd like to build a set with my son. What will we need other than the TinyPico, Microphone, Amp, and speakers? We're fairly new to this sort of thing (don't even have a soldering iron yet).
@RaminAssadollahi
@RaminAssadollahi 3 роки тому
Love the explanations, great work! Enjoyed the video.
@atomic14
@atomic14 3 роки тому
Thanks! It was good fun making it.
@ekremhb
@ekremhb 3 роки тому
great project
@nickparr3153
@nickparr3153 2 роки тому
Extremely ambitious, although 3W audio amplification is a bit extreme. Very good video, well documented and you have every reason to be proud. As I'm being trolled, I apologise for disabling notifications
@degiseptiagi
@degiseptiagi 2 роки тому
Hello sir. Can u make demo or explaination for echo cancellation, or maybe about self-interference cancellation? I wanna learn more about full duplex system on esp device.
@redakouacem258
@redakouacem258 Рік тому
I have done it and it works great even without noise: the down sides 1. it deliver voice a little late. 2. it works only for few seconds and than no voice transmitted again, maybe i need to use powerfull power supply since i'm using the Tel charger only.
@StormBurnX
@StormBurnX Рік тому
I remember the ESP 8266 first releasing and being heralded as a 'wireless serial cable' essentially, so I picked up a pair to try and make a wireless audio cable. The built-in ADCs were so absolutely garbage that a quick 30 dollar project soon breached triple-digit prices and I realized why there wasn't anything on the market for lossless, latency-free short-range audio transmission that didn't already cost hundreds of dollars... with the ESP 32 series being significantly improved, I can't wait to see another generation or two from now and the possibilities with those :)
@juanpablotorres3522
@juanpablotorres3522 Рік тому
Amazing Project!! I was thinking how make a project with espnow...
@binitshah
@binitshah 3 роки тому
This is super cool! Did I see Manim doing the latency calculations? Great work!
@atomic14
@atomic14 3 роки тому
You did indeed :) Still learning how to use it so that animation was pretty much straight from the examples. But it’s really powerful.
@Jim_One-wl4ke
@Jim_One-wl4ke Місяць тому
Thanks for sharing ❤
@Arunkumar18
@Arunkumar18 3 роки тому
Excellent ! What is the range when esp-now is used ?
@niels-olekuhl9919
@niels-olekuhl9919 3 роки тому
Have you considered using an audio Codec / compression to achieve higher quality / smaller packet sizes? I think SBC is what bluetooth uses. Not sure how easy it would be to implement.
@atomic14
@atomic14 3 роки тому
I did look at an old GSM codec and got it running on the ESP32 - but it was a little bit slow - it took about 15ms to process 20ms of audio which only left about 5ms to do anything else. I'm taking a look at SBC now though as it's a lot more modern and I'm wondering if it might be a bit more lightweight. It would make a big difference - especially with the ESP-NOW transport where we have very small packets.
@andymouse
@andymouse 3 роки тому
Fantastic project !...cheers.
@atomic14
@atomic14 3 роки тому
Thanks!
@JasonWho
@JasonWho 3 роки тому
Love that you implemented ESP-NOW! I’m very impatient for it to become more accessible and easier to use, added to ESP-Home too 🙏🏼. Ideas: - voice detection to automatically open the mic maybe using an audio level sensor - home intercom system would be cool using a 110/220->3.3V step down at/in a light switch and/or front door communication - my mind is wandering into how could this be used with an Alexa?? - I mean… a toy or for real: an audio spying device - pest detection using a high sensitivity - okay, I’m probably going this far because of the ESP-NOW ability… great project!
@JasonWho
@JasonWho 3 роки тому
A slave (ESP-NOW terminology) device that serves as a hub for ESP devices all over the house would be amazing. A lot less power needed for that comm method, zero need for a router/WiFi AP, potentially more secure, longer distances than RF.
@atomic14
@atomic14 3 роки тому
@@JasonWho I had a few issues getting WiFi working at the same time as ESP-NOW - but I know it's definitely possible as other people have done it. Might be down to using the wrong channel as I know the channel has to match the WiFi channel for them to both work at the same time. ESP-MESH is another thing to look at - but I've been struggling to understand the documentation! I need to look more into the noise issues as well - the ESP32 doesn't seem to play very nicely with audio. There's a lot of noise going on!
@saysaki
@saysaki 2 роки тому
Hi Chris, l loved your projects on Arduino, on the walkie talkie project do we have any latency, a) if we use the intranet will there be any latency
@sharpbends
@sharpbends 3 роки тому
Great series glad you got it all working ok, I really enjoyed seeing how you overcame the Wifi noise issues etc. Many thanks for posting all the design files and code. Have you tried using more than 2 Walkie-Talkies at the same time as yet ?
@atomic14
@atomic14 3 роки тому
Not yet - but in theory it should work without any problems as both the transports are using broadcast so don’t really care how many other clients there are listening.
@chall3ng3r
@chall3ng3r 3 роки тому
Awesome project! Going to try soon.
@atomic14
@atomic14 3 роки тому
Let me know how you get on - if you get any issues add an issue on GitHub and we can work through it.
@chall3ng3r
@chall3ng3r 3 роки тому
@@atomic14 will sure do that.
@user-ny5be4lm8z
@user-ny5be4lm8z Рік тому
i wish to monitor sound using a microphone which is sent and accessed over the wifi using the esp 32...did you cover a video on this?
@felix41382
@felix41382 3 роки тому
Great project and nice job!
@atomic14
@atomic14 3 роки тому
Thanks! I had a lot of fun building it.
@nerjuz
@nerjuz 3 роки тому
Waiting for v2 ;)
@digitalartee
@digitalartee 3 роки тому
Great info! :) More please. Thanks.
@atomic14
@atomic14 3 роки тому
Thanks! I've got some more in the pipeline :)
@hygyke
@hygyke 5 місяців тому
I'm wondering is the new esp32 is good enough to create a wireless microphone trough bt?
@udobes
@udobes 2 роки тому
Great project! Thanks for sharing it. My question is: what about Bluetooth Headphones? Is it posible to use these for audio-output? Udo
@IndependentNewsMedia
@IndependentNewsMedia 3 місяці тому
Nice video.
@taloot123
@taloot123 2 роки тому
i love it,, what if i use lora u think it will work?
@narendrashiva9360
@narendrashiva9360 Рік тому
You're doing great sir! Your videos have very rear information. Could you make a video on how to implement this project with mobile and Walkie-Talkie. I mean that communication between mobile and one Walkie-Talkie over Wi-Fi through a webpage.
@sof_gio_19
@sof_gio_19 11 місяців тому
When attempting to run the code on the ESP32 board, the audio message seems to be broadcasting the data using UDP (confirmed using Wireshark) however, the audio is playing out of the board that sent the broadcast...ie using the mic from board 1, the audio captured is played out of the speaker from board 1, whereas we want the audio captured from the mic from board to be played out of the speaker on board 2...do you have any suggestions to fix this issue?
@peterlandin457
@peterlandin457 Рік тому
Hi. Great project! Is there a way to build a bluetooth monophone with ESP32? A monophone to connect to like a cell phone using Zello, group talk, kodiak etc, a button for transmitting and a mic and speaker? maby a function button as well?
@tablatronix
@tablatronix 2 роки тому
Love this, well done with all the testing and research, now I want to make one/2 ? lol
@atomic14
@atomic14 2 роки тому
If you're feeling adventurous then you can build one and use your desktop/laptop as the client (if you go the UDP route). Or even knock up a mobile app if you're feeling really adventurous!
@batubek
@batubek 2 роки тому
Hello! An excellent project, I thought about a similar project, but in a slightly different design. There is an open source program for communicating with a large number of correspondents called Mumble. It would be interesting to create a client to work with ESP. If ba then it would be possible to make a walkie-talkie, the server for which would be the Mumble server (you can use both provided by someone and your own running on your PC).
@garciaveejayd.r422
@garciaveejayd.r422 5 місяців тому
I'm wondering if the walkie talkie can support multiple people talking at the same time?
@mattikro
@mattikro Рік тому
I was looking to build something similar but I want the audio to be received by the browser of a phone, I was wondering if this is something that you have working?
@wimlenthevan5908
@wimlenthevan5908 11 місяців тому
Wouw Great! Would it also work with the esp8266 boards? What do you think?
@Mr8perezm
@Mr8perezm 2 роки тому
I was wondering where did you get the double width breadboard in your video at 2 mins 10 secs? I bought two breadboards, put them together and it was too wide for my ESP32. Great inspirational video. Thanks.
@atomic14
@atomic14 2 роки тому
Some breadboards let you remove the power strips, they just pop off and then you can join the breadboards together.
@LuizCarlos-td5vd
@LuizCarlos-td5vd 2 роки тому
Great project! Do you think would be possible to add a camera in a way to build a wireless Video Doorbell?
@atomic14
@atomic14 2 роки тому
Yes, it's on my list of things to do :)
@shamalchathuranga2079
@shamalchathuranga2079 2 роки тому
Sir please guide me can i use "ESP 32-30pin" module or "ESP 32 -WRROOM" -32 for this walkie talkie
@pepethefrog7193
@pepethefrog7193 2 роки тому
Try using a vocoder. The melpe 1200 will compress/decompress 8khz 16bit samples into a 1200bps stream. Each 540 samples of audio generate 11 bytes of data. You can find melpe 1200 source on git. I am testing compression with I2S audio and SD card at the moment, struggeling with audio levels. What C ide/compiler do you use on the PC? The melpe 2400 codec would fit way better, 180 samples into 8 bytes, but i cant find the source. Note the older melp2400 from 1996 is not arduino compilable, but the melpe1200 from 2001 is.
@JamesMyatt1
@JamesMyatt1 3 роки тому
This is a great project. I think I have enough hardware lying around for 1 1/2 walkie talkies! It would be great to use this hardware to build a mumble client so that can interoperate with Talkie Pi or any other mumble client. Looks like mumble uses the opus codec for low latency low bitrate VOIP so maybe that's a good option here too.
@atomic14
@atomic14 3 роки тому
Someone did find a port of opus to esp32 - github.com/XasWorks/esp-libopus definitely worth having a look at.
@Realcryptotalk
@Realcryptotalk 2 роки тому
what kind of range are you getting with esp now ?
@ayurash
@ayurash 3 роки тому
Very intuitive explications. Hm , i think you can apply a discrete FFT for audio high gain for the audio? Thanks for sharing.
@atomic14
@atomic14 3 роки тому
Thanks - yes, I think there's a lot of interesting DSP that could be applied to the audio signal. Need to do some more investigation of what's possible.
@WestVirginian
@WestVirginian 7 місяців тому
Is there a way to do this through Bluetooth? I am trying to learn how to set up a Bluetooth intercom system that I could connect and talk to friends similar to this. I know they make motorcycle intercom systems but I want to add some additional functionality to it.
@atomic14
@atomic14 6 місяців тому
Have a search for esp32 A2DP. That might be what you are looking for.
@TheTurmanDreams
@TheTurmanDreams 3 роки тому
Awesome!!!
@a.sanusinazareth9213
@a.sanusinazareth9213 Рік тому
how far can it go? i'm talking about max stable range. thank you
@juangonzales-kn1fw
@juangonzales-kn1fw Рік тому
And without a screen, how do you know in which broadcast you emit and/or receive?
@electrovoltmce
@electrovoltmce 2 місяці тому
t is possible to turn an ESP32 C6 into a WIFI DAC Adio - as a reference to play music from UKposts and with the help of C6 to connect it to an amplifier.
@felixe9796
@felixe9796 9 місяців тому
Is it possible to use ESP8266 instead? Nice Project!
@SA-oj3bo
@SA-oj3bo Рік тому
Hi, I would like to use I2C MIC to capture the sound and forward it to the I2S DAC MAX98357A, I can not find any example how to do that. Can you help? Thx.
@summerfun6114
@summerfun6114 Рік тому
Good job @atomic14. do you have Arduino IDE code for this project? Thanks.
@nichiforstefan99
@nichiforstefan99 Рік тому
Hello ! If i use Nodemcu devkit v1 what should I change in the codes? Thanks!!!
@alirezarostamifard6404
@alirezarostamifard6404 2 роки тому
Great project. I remember it was one of my friend's final project at university! Anyway, I wanted to ask if you can make this project using" NRF24L01+PA+LNA" and an arduino. I'm sure you can get better results with that and also get rid of the disadvantages that you mentioned.
@hstrinzel
@hstrinzel 9 місяців тому
Would it make sense to break out some sort of ANTENNA so that it reaches further, or that would make no difference? Overall I think this is the BEST ESP32 walkie-talkie I have seen on UKposts. THANK YOU! Great video, great project!
@atomic14
@atomic14 9 місяців тому
Thanks! Yes, I think an external antenna would make a big difference.
@rachidtessoudali9337
@rachidtessoudali9337 2 роки тому
Great 👍 job thanks
@Lugeix
@Lugeix Рік тому
What the Max distance between station?
@brayamquispeapaza5961
@brayamquispeapaza5961 Рік тому
Hola buenas quisiera preguntar si se puede configurar a los que puertos udp tengo que enviar según que botón presione por ejemplo sw 1 al esp1 y sw2 al esp2 y en que parte estaría esa configuración
@wjn777
@wjn777 3 роки тому
Great job, thanks for sharing. Would LoRa point to point be an option as transport? Range would be good
@atomic14
@atomic14 3 роки тому
I'm not sure I think you'd definitely need to compress the audio very heavily to fit it in the available bandwidth. I'd need to do some research on what is possible.
@vg23air
@vg23air 2 місяці тому
ok, now here is how you make this useful. my mom is half a mile away, we are on the same wifi lan. create this same thing, but add a panic button which if pressed alarms all other units for a set time (30 seconds 2 minutes) and also allow those units to cancel the alarm ahead of the timeout by pressing their panic button. panic button could be existing button if pressed x times in a row in x seconds Use UDP but instead of just dumping them randomly, store them in memory and rebuild them in order and deliver them, yes lots of lag, but, the important message gets through "help the house is on fire" a device like this would be useful
@foxeskeeper3817
@foxeskeeper3817 Рік тому
Damn! Why didn't the good idea come out from my head!
@TheElectronicEngineer
@TheElectronicEngineer 3 роки тому
You published a lot about ESP32 and I2S, just wondering, did you ever find a way to set the attenuation for the adc ( internal) when using i2S. Can't find that function at all..well at least not when using I2s
@atomic14
@atomic14 3 роки тому
Looks like it is possible - but involves some poking around with hardware registers - github.com/espressif/esp-idf/issues/5334#issuecomment-633057910
@TheRoscop13
@TheRoscop13 3 роки тому
Cool project thanks for sharing! Is there a reason why you have used 2 separate I2S channels for the MIC and the speaker? it makes more wires uses more pins
@atomic14
@atomic14 3 роки тому
I must admit that I had not actually considered sharing the same I2S peripheral for both input and output at the same time, but this could make a lot of sense. The code I used for the audio output was my sample code for outputting WAV files which supports stereo so my mental model was that it wouldn't work. But of course in this case it is just mono on both the input and output so that should be fine. I think I need to do some investigating - I've not tried doing both input and output on the same I2S channel before. Do you know if there are any limitations in doing it - can you use different formats on the input and output side or do they need to match? I'm thinking about how PDM microphones would work with a PCM speaker. I guess if you are only either playing or recording this doesn’t really matter. Very interesting! BTW - your Bluetooth speaker looks great!
@giannirusso9639
@giannirusso9639 Рік тому
is the code arduino ide friendly?
@wayabryan4208
@wayabryan4208 Рік тому
Good day @atomic14. The UDP broadcast is not working when i compile the code on my VS code. Even after commenting on that line of the code, it is still not working. It is as though it is been overwhelmed by the ESP-NOW protocol. Please i need your help.
@xopxxd4214
@xopxxd4214 Рік тому
Hi Chris, I’m uploaded your code to ESP32 DEV module code is working without error when I push button it show message but there was no sound. I hope to receive a response from you. Thank you
@selahattinbabadag2804
@selahattinbabadag2804 2 роки тому
@atomic14 dear sir , the connection part to button is a little flu , can you please explain connections to talk button ? thanks
@kurka1186
@kurka1186 3 дні тому
What maximum range did you get wh3n t3sting?
@heinq1955
@heinq1955 Рік тому
Hello, can you pls give the code for the UDP server?
@Josephmsy
@Josephmsy 2 роки тому
How much did this project cost?
@madusankawithanage7648
@madusankawithanage7648 2 роки тому
Nice one
@atomic14
@atomic14 2 роки тому
Thanks!
@Pigirl
@Pigirl 2 роки тому
If anyone could help me to connect walkie talkie with one side esp32 and the other side andriod app. Suggest me with links
@UnexpectedMaker
@UnexpectedMaker 3 роки тому
That really turned out great! Are you sleeping the ESP32 at all when on but not in use? I wonder how long ESP Now takes to wake, calibrate radios and begin transmission. Obviously if it's sleeping it cant received, but I know my kids would 100% forget to switch to off ;)
@sharpbends
@sharpbends 3 роки тому
For sleep to be effective you'd probably want to turn off the speaker/amp as well, but it seems to be supplied via VBAT also on the PCB, rather than via the TinyPico ? ( A TinyPico S2 with 2nd LDO might help turning off the rest of the components during deep sleep :-) PS I hope you also include 2nd LDO + 16MB flash when you get to make TinyPico S3 - pretty please ;-)
@UnexpectedMaker
@UnexpectedMaker 3 роки тому
@@sharpbends Ha! No 2nd LDO or 16MB of flash ever on a TnyPICO "footprint" board, sorry, no room. I'll have a ProS3 though that should make you happy :)
@sharpbends
@sharpbends 3 роки тому
@@UnexpectedMaker Excellent, can't wait !
@atomic14
@atomic14 3 роки тому
Thanks! At the moment it’s really not very power efficient. Both the microphone and the speaker are running continuously and I’m just not sending any packets unless the button is pushed. That is mostly just laziness on my part - I was having some issues with stopping and starting the I2S drivers and realised that debugging it was a bit of a rabbit hole. With ESP-Now startup should be pretty quick as there’s no need to connect to WIFi and get an IP-Address. With WIFi I’ve seen a few people speed this up by using static IP addresses. You could also spin up the audio sampling and buffer the data while everything else is waking up - definitely doable when you have PSRAM.
@Bianchi77
@Bianchi77 3 роки тому
Cool :)
@DocEntertainmentProd
@DocEntertainmentProd 3 роки тому
I so love this! Any way or suggestions on how to work over the internet? My buddy and I used to live in the same apartment complex and used over the air walkie talkies but now that we live in 2 different cities, it would be cool to bring that back!
@atomic14
@atomic14 3 роки тому
Probably the easiest way to do that would be to run a server somewhere to act as a router for the audio data. There are ways of setting up point to point communication over the internet - www.twilio.com/docs/stun-turn/faq But it's a bit too complicated for me :)
@DocEntertainmentProd
@DocEntertainmentProd 3 роки тому
@@atomic14 Thanks for the reply! I will check that out!
@alexangelino2392
@alexangelino2392 2 роки тому
@atomic14 , based on the BOM, I've managed to find most of the components on digikey, but I'm unable to identify the 2 smaller capacitors in C4 & C3. What values would you suggest there?
@alexangelino2392
@alexangelino2392 2 роки тому
second question, the 3d printed project has speaker holes at ~32 mm distance apart, but the speakers in your reference have holes that are ~42 mm apart. Is there some other brand of speaker that will actually work with this project?
@alexangelino2392
@alexangelino2392 2 роки тому
lastly, would you still know the make of your spdt slide switch (on/off) and the momentary button? I couldn't make those out from the images. Thanks!
@ii_berzin_ii9079
@ii_berzin_ii9079 2 роки тому
I think he shows 1uf in the schematic.
@spleenware
@spleenware 3 роки тому
Nice project! What is the lowest sampling Hz where the voice is still intelligible? Does 8000 work, for instance?
@atomic14
@atomic14 3 роки тому
Yes, you can get away with 8KHz - that will give you low-quality speech. You can go all the way down to 4KHz sampling rate and still be understandable - but it won't sound very nice.
@johnmayorga7082
@johnmayorga7082 3 роки тому
I think old phone tech was with 8k sampling at 8 bits, but I might be wrong. Whatever sampling rate you use, the max frequency you'll be able to digitize will be half of the sample rate. See: en.wikipedia.org/wiki/Nyquist%E2%80%93Shannon_sampling_theorem
@HakAtIt
@HakAtIt 2 роки тому
I'm trying to follow along with the calculations. You have 1436 bits per packet / 16kHz sample rate @ 8bit. By my calculation that makes for 11ms packets. This would require 90 packets per second. Did I miss something or do something wrong? I'm looking at doing something with higher fidelity, 92kHz @ 20bit res and while the bit rate at 2mbps should be possible over the UDP, I read it max at about 30mbps, but I also wanted to use ESP-NOW, which as you demonstrate is a much smaller packet size and therefore may not keep up.
@jthrush
@jthrush 2 роки тому
UDP packets (in this case) are 1436 bytes per packet not bits. Easy to mix those up. In networking specs you'll find both bits and bytes quoted. Lowercase mbps is always megabits per second. Megabytes per second are usually written uppercase like MB/s.
@digitalartee
@digitalartee 3 роки тому
Hi, have you tried it in very long distance? I have two ESP 8266 and using ESP now. I put the master statically inside my house then I tried walking outside carrying the slave esp8266 + laptop while looking at my serial monitor . When I reached 50meters it becomes unstable. Do you have any suggestion on how to add to the signal strength? An antenna? Please advise. Thanks.
@atomic14
@atomic14 3 роки тому
I've not investigated it yet, but I'm planning on doing so soon. It looks like you can increase the transmit power which might help - github.com/espressif/esp-idf/issues/1414 I suspect that having the master inside the house will limit the range dramatically. All the experiments I have seen have been conducted outside with a direct line of sight.
@Johannzz
@Johannzz 3 роки тому
Nice Project! Whats the range of the walkie talkies, especially in esp-now mode?
@atomic14
@atomic14 3 роки тому
That's a really good question - I've not tested it yet. I've seen all sorts of claims 220m - 480m! Not sure if I believe the 480m. I know that you can bump up the transmit power to get better range so could be interesting. I think a lot will depend on how open the space is and how well oriented you have the antennas with each other.
@ricardolopez8959
@ricardolopez8959 Рік тому
hello i really want to be able to make this projector but never pregame an esp32. Could you give me more information on how to put the code you uploaded?
@JonathanDeWitt1988
@JonathanDeWitt1988 Рік тому
ukposts.info/have/v-deo/sICdgpWLommHrYU.html That is a great beginner's guide to how to program an ESP32. I'm a fan of the ESP32 Node MCU.
@GadgetAddict
@GadgetAddict 3 роки тому
I was planning to do this myself. But you've literally done it exactly the same way as I planned. No point reinventing the wheel. So I'll take a good look through your code. What distance have you managed while using ESP-NOW outdoors without obstructions?
@atomic14
@atomic14 3 роки тому
That's the next project - I'm going to do a good range test of ESP-NOW
@GadgetAddict
@GadgetAddict 3 роки тому
@@atomic14 great. I'll wait for that. Thank you!
@aaaaaaaaaaaaaa7948
@aaaaaaaaaaaaaa7948 3 роки тому
Neat! Do you think it could be modified to support multiple 'channels'?
@atomic14
@atomic14 3 роки тому
Definitely - you could add a small header to the packets to indicate the "channel number". Or with the UDP version you could use different ports for each channel.
@SA-oj3bo
@SA-oj3bo 2 роки тому
Do you have maybe a video where you stream I2S microphone to a server by TCP? Thanks.
@sijojohnson
@sijojohnson 2 роки тому
go for ESP32-LyraT-Mini hardware
@TechInventorAman
@TechInventorAman 3 роки тому
I want to know that why did you went for an i2s based microphone and why did you not use the analogue inputs directly which will actually be much easier. Was there any specific reason?
@atomic14
@atomic14 3 роки тому
Hi Aman, very good questions. I've found the I2S microphones to be slightly better when it comes to noise than the analogue microphones. The analogue microphones tend to have very sensitive pre-amps which seem to be quite prone to power supply noise - and that tends to happen quite a lot with the ESP32 when using WiFi. You're also reliant on the built-in ADCs of the ESP32 when using analogue microphones and these are also very noisy. The code is pretty flexible so you can use either an I2S mic or analogue mic. I've got quite a good supply of I2S microphones so I tend to end up using them by default and they are pretty easy to wire up - it's only 3 wires for the I2S interface.
@TechInventorAman
@TechInventorAman 3 роки тому
@@atomic14 thank you so much for replying buddy. I hope that you keep on supporting makers like us by in lightning with your knowledge. Very soon I am planning to build ultra cheap high quality walkie torquay using in esp8266 which again works on the same ESP now protocol but instead of a expensive i2s mic , I will use a separate audio ADC and analogue mic with good quality. In that project i might need your help . So looking for your support . Thanks
@TechInventorAman
@TechInventorAman 3 роки тому
@@atomic14 also I would like to know that if I want to send an audio over ESP now what should be my sample rate what should be my bitrate aur basically what should be my audio specifications which ESP now packet can carry at one single instant and is it blazingly fast or is it very very slow and not really suitable for audio what is the audio scenario with ESP now protocol
@atomic14
@atomic14 3 роки тому
@@TechInventorAman Apparently the data rate is 1Mbps which is 125KBytes/s - apparently, it is possible to change this. hackaday.io/project/161896-linux-espnow/log/161046-implementation The main limitation from my point of view is the packet size of 250 bytes. This means that you need to be sending data packets quite often - this may or may not be a problem for your use case.
@selahattinbabadag2804
@selahattinbabadag2804 2 роки тому
@atomic14 Dear sir , I couldnt find the part VLU0810-472K (L1-10m) is there a equalent component i can use?
@atomic14
@atomic14 2 роки тому
The inductor capacitor filter is just to filter out any noise on the power supply so pretty much any values will work well. If you can’t find anything then you can leave the capacitor out and just bridge over the inductor.
@selahattinbabadag2804
@selahattinbabadag2804 2 роки тому
@@atomic14 Thanks sir , i found the part from a local shop , you do your job with passion , we love your projects , we appriciate many thanks.
@inventindiadev8926
@inventindiadev8926 Рік тому
Hi, Does the transmit button needed ?? Can we do this communication bidirectional ??
@kantpredict
@kantpredict Рік тому
Feedback. They'd be constantly picking up the audio being sent from the other radio and retransmitting it.
@yogenrai5651
@yogenrai5651 5 місяців тому
hello sir my name is Yogen I am from Sikkim I watch your videos and thank you for sharing your knowledge .I want to make an ring like smart doorbell using esp32 .Can you please be my guide in making it sir
@tuckjam235
@tuckjam235 2 роки тому
I was about to order the PCB but wanted to confirm that the linked PCB is your new design with headers for additional GPIO.
@atomic14
@atomic14 2 роки тому
LEt me get that added now!
@tuckjam235
@tuckjam235 2 роки тому
@@atomic14 thank you!
@atomic14
@atomic14 2 роки тому
@@tuckjam235 Should be updated now
@tuckjam235
@tuckjam235 2 роки тому
@@atomic14 thanks again! Can’t wait for them to arrive!
@tuckjam235
@tuckjam235 2 роки тому
@@atomic14 I think there is something wrong with the gerber files pcbway has for your walkie talkie boards (linked in this video description). I just received my order and they sent me 100 of your ICS43434v0.1 boards, not the walkie talkie boards…. It’s strange because when I look at the order the gerber files and the thumbnails on the pcbway site are for the walkie talkie boards.
@GoatZilla
@GoatZilla 2 роки тому
Could you have also used bluetooth for the speaker/microphone? Kind of... would make the project simpler.
@atomic14
@atomic14 2 роки тому
Bluetooth microphones are another can of worms :) ukposts.info/have/v-deo/aJqDYYeFi5yqxXU.html
@GoatZilla
@GoatZilla 2 роки тому
@@atomic14 It kind of seems like this project is a little bit different. For this one you're turning the ESP32 into the Audio Gateway. You're not trying to pretend to be any device; best case you're just shuffling packets between the ESP32 sources and sinks. The devices themselves handle compression for you, hopefully.
#419 ESP32 Audio Tutorial with lots of examples
13:48
Andreas Spiess
Переглядів 221 тис.
Creating a Walkie-Talkie with generic 433MHz RF Modules?!
10:01
GreatScott!
Переглядів 332 тис.
How to Make HF Band Walkie-Talkie for Long Distance (Range Test)
9:53
Make a 1.5 K.M Range walkie talkie # Without Noise Clear Sound#
7:56
Et Discover
Переглядів 1,1 млн
ESP32 Guide 2024 | Choosing and Using an ESP32 Board
41:06
DroneBot Workshop
Переглядів 200 тис.
ESP32 | Walkie-Talkie, Half-duplex communication based on WebSocket
9:51
Make your own very crude Walkie-talkie with an Arduino
10:25
GreatScott!
Переглядів 373 тис.
10 заповедей по пайке. Учимся паять
12:05
ESP32 WiFi Range Testing - 10km using Directional Antenna
5:42
ESP32-to-ESP32 Simplex Communication via ESP-NOW
6:31
Anas Kuzechie
Переглядів 47 тис.
All about Cardputer from @M5Stack
15:40
techiesms
Переглядів 23 тис.
''Бесплатные умные'' домофоны для глупых людей. За чей счет банкет?
12:48
Вадим Шегалов.Оккультные игры элиты
Переглядів 28 тис.
План хакера 🤯 #shorts #фильмы
0:59
BruuHub
Переглядів 990 тис.
RTX 4070 Super слишком хороша. Меня это бесит
15:22
Рома, Просто Рома
Переглядів 85 тис.
Как установить Windows 10/11?
0:56
Construct PC
Переглядів 1,3 млн