-
Notifications
You must be signed in to change notification settings - Fork 51
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
ESP32 compatibility #13
Comments
I don't know about library compatiblity with ESP32.
The source code of sample Led ON-OFF program is given below : |
no support for ESP32 so far |
|
I found the solution. The problem is about the voltage difference between the Voice Recognition module (5v) and ESP32 (3.3v). So they can't communicate together ! haha You need to use this: with this: ... between your ESP32 and your VoiceRecognition module and then they will be able to communicate together. |
And don't forget to use only dedicated RXD/TXD pin of the ESP32 too (depends on your ESP32 module). |
Hi, I'm trying to use this module with ESP32 but the sketch doesn't upload when I include VR3 library... Thank you for your help |
I think if you reverse what is documented at tx and rx it might work for you... |
ese modulo es para alimentar al elechouse , osea sacarle los 3.3 voltios al esp32 y convertirlos en 5v para el elechouse? |
Hello all, i use Wemos lolin ESP32 S2 mini, and i can share my changes that it took me to train and use this little module. So firstly you must put a level shifter in between the serial connections between the devices. This can be done with either resistors, or better up MOSFET transistors. There exists alot of these to buy. The VoiceRecognitionV3.h file references the library avr/pgmspace.h and this does not exist/work for ESP32. So remove/comment this line. This library isnt even used by voicerecognition code... If the MCU you have uses Serial through the USB protocol then the device needs this code to wait for your PC to establish connection. As was the case for my Wemos lolin S2 mini... I would also change the VoiceRecognitionV3.h/cpp files to use the HardwareSerial instead of SoftwareSerial. Most ESP32 devices have 2+ Serials. |
did someone figure it out, how can i make it work? i have a logic level converter. can someone help me please? |
Is it possible to have an ESP32 compatible library ?
It would be awsome !
The text was updated successfully, but these errors were encountered: