-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Audio Support #20
Comments
https://github.com/sikorapatryk/sip-call Some previous work has been done using an ESP32 with an ADC and DAC as a SIP client, so maybe this can be of use here. |
https://github.com/vvigilante/comelit-simplebus1 Another similar project but for Comelit, including the analog circuits interfacing with the ESP32 internal ADC and DAC for audio: |
See this thread for a similar discussion for a Comelit system: |
I successfully received audio via my computer:
My voice was easily recorded on the computer. I would not recommend this setup so far, as for a real usage more protection and also a bit of filtering is needed.
(both easily solvable) After doing a lot of research:
My feeling is we should continue the audio and video route by just making plain simple adapters. |
I have no Gira equipment here to test video. (if someone finds a cheap used video outdoor station 😉 , indoor is not needed for tests, we know how to request it 😅 ) |
@DaSchaef do any of the Comelit circuits posted above look useful? It seems like they have bus-coupled audio ADC/DAC working and code for it as well on the ESP32 platform? |
door opener works perfect. instead of 2 way audio it would be helpful to send one predefined message to the speaker. So i can advice the delivery to store items in front of my door f.e. Any suggestions if we can realize that? |
This should be doable as well, |
I'm currently finishing a first try of hardware for audio support, yet I'm still struggling with firmware. SD Card (and therefore playback) is more tricky, as with the current ESP board I am a bit limited by I/O pins.
|
Everyone who is interested and brave (it is very early alpha!), |
I would be interested! ESPhome has audio support, e.g. to play out audio files. Maybe that would be an easier start? |
I'm also interested! |
I’m interested. |
Im also intereseted. I will ne installing the Gira system next week |
I got a partly success, but it seems the ESP board is too weak (not enough memory) for the VOIP audio code. |
With the new WROVER board I got a first voip connection (without being able to check audio so far). So at least the ESP code has no RAM memory issues anymore. Testing VOIP via my FritzBox did not work, but it think the error is my FritzBox VOIP settings. |
@DaSchaef super cool! Can you go into further details on what your added in the v4.0 revision of the board? How is the setup looking on the HW and SW side of things? |
Currently I'm using above shown custom PCB + the above ESP (Amazon Link) connected via jumper cables I can now call my FritzBox from the ESP (GDoor Adapter). Audio is not working yet - this is now the next step. Software is based on Esspressif ADF (https://github.com/espressif/esp-adf), I'm working in a private repo at the moment, as it is still very early/ugly, unstable and not working :) I'll merge it in the branch here once I'm sure that it is at least barely usable. |
For feature/HW changes in the v4.0 HW:
|
@DaSchaef very exciting! Thanks for the update! Looking forward to reading about the first successful 2-way audio call! |
I'm still struggling with audio, currently I only get silence in both directions - currently it looks like the S/W ist the reason and not the H/W. At least GDoor and VOIP seem to work in parallel. The ESP audio libs are a mess, but it is very slowly progressing - next step will be a small audio test script - not from the ESP libs, but from scratch - to have a minimal example to debug the missing audio. 😅 |
Still no audio but I have an assumption: The audio codec needs a MCLK generated by the ESP32. From my research the newer generation ESP32S3 is able to freely route high precision clock outputs to any of the GPIO. |
There is currently no audio support planned until reverse engineering and interfacing with the digital bus is fully working. Creating this Issue as a placeholder for possible future work and to inform others who might be looking for audio (and video) support.
Per @DaSchaef the audio (and video signals) are modulated onto the wire in an analog format. It is suggested but has not been verified through testing that connecting a headphone amplifier via a coupling capacitor to the bus would yield audio signals. Likewise, connecting a line-out to the bus could allow sending audio signals to the (door) station. It is important to understand that analogue audio (and video) signals are only present after the digital bus command has been sent to the respective station to transmit audio (or audio and video) on the wires that also transport the digital bus signals.
See https://gdoor-org.github.io/documentation/protocol.html "Request Audio", "Request Video" for more details on the respective bus messages.
Since is (unfortunately) no digital audio (or video) signal are present, a combination of an ADC and DAC, most likely connecting via I2S to the ESP32 is needed to convert the analog signals to the digital domain. Using an ADC, DAC and a Raspberry Pi could be an option as well but this would require too many resources and power.
Per @DaSchaef, on the ESP32 side, there is additional work needed, mostly in software, like working with the DMA engine, timing Wifi transmissions correctly, etc.. This work can be summarized in the categories of coupling, digitizing, processing and streaming to an endpoint, e.g. via SIP or RTSP. If one wanted to have bidirectional, parallel communication, with the other (door) station some analog circuit magic to prevent audio feedback loops would be needed as well.
The text was updated successfully, but these errors were encountered: