We can create a voice command system!

  Переглядів 28,449

That Project

That Project

11 місяців тому

This project utilizes the ESP32-S3 microcontroller and the INMP441 microphone to enable voice command functionality. By leveraging the Espressif Speech Recognition framework, the system can recognize wake-up words like "Hey Siri", and "Ok Google" and execute specific actions associated with those commands. The voice user interface provides a convenient means of interaction in screenless environments and can be applied to a wide range of projects. The implementation involves configuring the ESP32-S3 and integrating the INMP441 microphone to capture audio input, processing the speech recognition using the framework, and linking recognized commands to predefined actions. Overall, this project enables users to control various tasks and functions by speaking voice commands, enhancing usability in scenarios where traditional screen-based interfaces are not available.
[ESP-SR Speech Recognition Framework]
github.com/espressif/esp-sr
[ESP-Skainet for Generic ESP32-S3 DevKit-C]
github.com/0015/esp-skainet/t...
[ESP32-S3-DevKitC-1-N8R8 Development Board]
amzn.to/3FZmfAM
[INMP441 Omnidirectional Microphone]
amzn.to/3Ma8C47
#VUI #Voice #Speech #Recognition #MCU #ESP32 #ThatProject

КОМЕНТАРІ: 144
@ThatProject
@ThatProject 11 місяців тому
Check More Projects - youtube.com/@ThatProject Github Repository - github.com/0015/ Join FB Group - facebook.com/groups/138965931539175
@Bob-ip4ws
@Bob-ip4ws 10 місяців тому
@ThatProject it was interesting to send the data to the server (from your previous video) only after defining the wake word. By connecting several of them on different ports, you can create a voice control network.Thanks for interesting videos👍.
@sandramarkiv6639
@sandramarkiv6639 3 місяці тому
Firstly, I would like to congratulate you on your content. You are helping many people all over the world. I myself have learned a lot from you about ESP32. I would like to thank you very much for that. If possible, I would like some guidance on how to do the same thing, but with the activation word in Portuguese and in the Arduino framework on PlatformIO.
@Oshan_Dissanayaka
@Oshan_Dissanayaka 11 місяців тому
Thanks, brother... Cool Project!
@Oshan_Dissanayaka
@Oshan_Dissanayaka 8 місяців тому
Hey bro. Can I do this using ESP32 Devkit V1 Normal 30pins board??
@VitorCesar_
@VitorCesar_ 11 місяців тому
Pretty cool project, I made it work with INMP441 and a MAX98357A. They need to let us train custom wake words.
@michaelvoke7424
@michaelvoke7424 5 місяців тому
how did you do it ill like to try
@akashsivasubramanian4067
@akashsivasubramanian4067 11 місяців тому
awesome, iam gonna try it with my esp32.
@zhdanvadim9536
@zhdanvadim9536 11 місяців тому
Thank you! 🙂
@hungry4code897
@hungry4code897 11 місяців тому
Thank you so much❤
@SA-oj3bo
@SA-oj3bo 11 місяців тому
Hi could you help to get started with ESP IDF? Mini tutorial maybe? Thx in advance.
@jonathanrodriguez8219
@jonathanrodriguez8219 10 місяців тому
Nice!!!
@alrostami
@alrostami 5 місяців тому
Great work! Thanks for providing the patch for devkitc. I was wondering, though, if you were able to get it to work for stereo rather than mono (two INMP441 instead of single INMP441) That is one thing I cannot do at the time.
@ThatProject
@ThatProject 5 місяців тому
I know that the ESP-SR supports stereo input, but I haven't actually tried it. How far have you tried?
@alrostami
@alrostami 5 місяців тому
I tried it with two INMP441 and wired one as L (grounded the L/R pin) and the other as R (connected L/R pin to VDD). After a few tries I noticed the arguments of i2s_new_channel(.) are hard coded to mono, so I modified it to stereo and set the bit per channel to 16 and sample rate to 16000. Plus setting the total channels to 3, num of microphones to 2 and number of refs to 1. When flashed it, the wake word stopped working.@@ThatProject
@ThatProject
@ThatProject 5 місяців тому
@@alrostami Wouldn't it be necessary to configure each channel separately in i2s_config_t? Have you set I2S_NUM_0 and I2S_NUM_1? It's hard to find examples of this.
@alrostami
@alrostami 5 місяців тому
@ThatProject My catch is that these two channels are configured separately when there is microphone and speaker (to play the voice assistant sound) presented in the examples. To make it even more confusing, I found examples that configure both tx (to play sound) and rx (to read mic data) on the I2S_NUM_X channel, e.g. i2s_new_channel(&chan_cfg, &tx_handle, &rx_handle) for esp32s3-korvo-2, and in another example they used both I2S_NUM_0 and I2S_NUM_1 and configured one to tx for playing sound and the other one to rx for reading mic data. It is a real mess.
@ThatProject
@ThatProject 5 місяців тому
@@alrostami It seems to me that you have already surpassed my project. I don't think I can help you with this unless I try it myself.
@amadouroufai2337
@amadouroufai2337 6 місяців тому
Thank you for this wonderful work. I need to make my own. Can this project be implemented on lilygo esp32 s3 t3-cam board? if yes , please what changes should i make. Thank you for your support
@ThatProject
@ThatProject 6 місяців тому
I think it works because the T3-CAM board has PSRAM. Please modify the pin connector of the connected microphone to your own as shown in the video and test it.
@anlpereira
@anlpereira 9 місяців тому
Hi, I like your projects vey much. I've been studying ESP-IDF for a few months. I've been facing these problems with version because I'm using 5.1 now. Can you show how to make some portability from an older version to a new one? Thank you very much.
@ThatProject
@ThatProject 9 місяців тому
A few weeks ago it was updated to work with IDF 5.X. Please check again.
@anlpereira
@anlpereira 9 місяців тому
@@ThatProject I saw that. But actually I'm trying to compile an ESP-WHO example that hasn't the 5.1 version yet. I don't find a way to set up the environment variables for the new folder I downloaded from git clone command. I'm using Prompt on windows. Thanks
@ThatProject
@ThatProject 9 місяців тому
@@anlpereira ESP-WHO also seems to work with ESP-IDF 5.x. Check out this branch. github.com/espressif/esp-who/tree/idfv5.0
@SuperSmosh123
@SuperSmosh123 8 місяців тому
Is a wake up word necessary or can it listen to commands directly? Or if it needs to wake up then what about using a button to wake it up?
@ThatProject
@ThatProject 8 місяців тому
It's divided into two parts: wakeup word recognition and command word recognition. There is no button to trigger the system. See esp-skainet for details.github.com/espressif/esp-skainet
@doubleHLabs
@doubleHLabs 11 місяців тому
You're just a few days ahead of me! Did you see any option to have it detect specific sounds, songs or other audio that wasn't voice?
@ThatProject
@ThatProject 11 місяців тому
A sound, song, or other audio seems too broad. Since it resembles noise, it seems impossible to find any pattern from such audio data. what do you think about it?
@percutseituan
@percutseituan 23 дні тому
Terimakasih
@user-sr9ss3xd4q
@user-sr9ss3xd4q 4 місяці тому
Hello, thank you for the excellent content of your channel.🙏🌹 Is it possible to use another language like Farsi? A product like PicoVice supports Farsi, but not esp32 yet.
@ThatProject
@ThatProject 4 місяці тому
As far as I know, the language models provided by default are only English and Chinese. Please check again.
@user-ux2oq6yd2c
@user-ux2oq6yd2c 2 місяці тому
this is very impressive. I've had the opportunity to follow your master class series with great interest, and I'm truly inspired by the depth of knowledge and practical insights you've shared. To further enhance my understanding and skills, I'm considering developing a case study based on the concepts taught, specifically focusing on the LED control mechanisms you've discussed. As part of this endeavor, I'm particularly interested in the led_actions.h file and its integration within the project. I understand that it plays a crucial role in managing the LED's behaviors, such as dimming and color setting, via the ESP32-S3's LED PWM Controller (LEDC). However, I find myself seeking more clarity on how exactly to structure this header file and implement its functionalities effectively. Let me know. Thanks a lot for your master class
@ThatProject
@ThatProject 2 місяці тому
Control the LED color using the led_strip component. Please take a look at this. github.com/UncleRus/esp-idf-lib/blob/master/components/led_strip/led_strip.c
@user-ux2oq6yd2c
@user-ux2oq6yd2c 2 місяці тому
@@ThatProjectThis is super interesting. Very advanced for me... Let me know if there is a plan to make this project available. would be super cool! Thanks.
@juremazej2000
@juremazej2000 11 місяців тому
hello, how did you change the code? did you modify the framework to accept data from the connected microphone or did you change something else, i want to do the same thing, but with the esp32 s3 module.
@ThatProject
@ThatProject 11 місяців тому
The source code based on ESP32-EYE has been slightly modified to operate on ESP32-S3 with INMP441. Check out my GitHub page.
@MI-bm2yy
@MI-bm2yy 7 місяців тому
Sir, I've ordered the same esp32s3 as of yours but I got wroom-2 instead of wroom-1 and now I am trying on it, but it's not working as per your instructions. What should I do in this situation?
@ThatProject
@ThatProject 7 місяців тому
I don't think there is much difference between the two, but check the ports and see if anything has changed.
@MI-bm2yy
@MI-bm2yy 6 місяців тому
@@ThatProject Thank you it worked Thanks for your guidance and help i just have one more query can you help me with it?
@MI-bm2yy
@MI-bm2yy 6 місяців тому
@@ThatProject I am unable to find the exact place or file from where it is taking the access of the gpios and leds. can you help me with that? because i've searched all the files but without giving the gpio pin number it is still accessing the led and my code is not able to proceed if i force it to change the colour and is stuck in the listening part. then everytime for a new command i have to again give the wake word. Please guide me with it.
@surflaweb
@surflaweb 11 місяців тому
Can support long words? For example: turn on the light number 3
@ThatProject
@ThatProject 11 місяців тому
Multinet seems to recognize up to 5 words at a time. Need to do more testing.
@rameshganesan1930
@rameshganesan1930 8 місяців тому
Good Day Sir, Kindly guide me to edit the code for RGB LED control .Default code not responding . I used your same example code.Thank you Sir.
@ThatProject
@ThatProject 8 місяців тому
First, it seems necessary to test why the basic code does not work. Is your mic working properly?
@Joeljody77vids
@Joeljody77vids 11 місяців тому
Is it possible to use the wake word feature to start listening and then send following audio to mqtt server? Thinking this would be great way to send audio to home assistants voice assistant.
@ThatProject
@ThatProject 11 місяців тому
It seems possible but I need to try to implement it to check if it has any problems.
@Joeljody77vids
@Joeljody77vids 11 місяців тому
@@ThatProject There is a project called "Willow" that appears to integrate skainet with home assistant but is only for esp-box.
@tajkris
@tajkris 11 місяців тому
possible, I've done that. Note that the new version of esp-skainet seems to have entire pipeline (noise reduction, echo cancellation, automatic gain control, wakeword detection) integrated and uses ringbuffer so I wasn't able to get it working on esp32 without psram. however the older versions had wakeword detection 'exposed' so that you could work out the necessary buffers and pass data to wwd in chunks yourself. Some optimizations are needed when sending the data to the server if you don't have psram, otherwise you might miss chunks of audio and voice assistant will have trouble understanding the recording
@tajkris
@tajkris 11 місяців тому
another problem you might get if using analog microphone and builtin adc is that when wifi transmits data there appears noise on power line and audio gets distorted, again making it harder to understand for whatever voice assistant/text to speech you plan to use
@ahnaf_404-error
@ahnaf_404-error 11 місяців тому
Is it possible to use typical esp32 boards like wroom 32?
@ThatProject
@ThatProject 11 місяців тому
Maybe it's possible, but it seems PSRAM must be on that board.
@jomfawad9255
@jomfawad9255 3 місяці тому
Can we alter wake up time so its always on? meaning i say wake up word only once and then it stays on all time?And can you please tell the total code when you uploaded how much kb was it? thank you!
@ThatProject
@ThatProject 3 місяці тому
After waking up through the wake-up word, it waits for commands only for a short time. It then returns to waiting mode for the wake-up word. I don't know the size of the built binary file.
@joaquingutierrez3072
@joaquingutierrez3072 3 місяці тому
Hello, thank you for your tutorial. I couldn't make this work in my ESP32. I have a N8R2, so I think I am running out of ram. Do you think is there a way to solve this without purchasin a new microcontroller?
@joaquingutierrez3072
@joaquingutierrez3072 3 місяці тому
Apparetly, this 2 MB RAM should be enough for wakenet only, but when I tried that... everything was okay until this error: assert failed: feed_Task main.c:31 (nch
@ThatProject
@ThatProject 3 місяці тому
It says "ESP32-S3 is recommended, which supports AI instructions and larger, high-speed octal SPI PSRAM. The new algorithms will no longer support ESP32 chips." Are you sure your ESP32 is ESP32-S3, not ESP32?
@joaquingutierrez3072
@joaquingutierrez3072 3 місяці тому
@@ThatProjectThank you for your reply! Yes, I have a ESP32-S3 N8R2. I followed the README in your github project, using ESP-IDF CMD, because I tried to use VSCode but I got some errors regarding CMake that I couldn't solve. I also got some errors in this CMD, but I solved it by changing some things in menuconfig (by setting flash size to 8 MB and PSRAM to quad mode). Then the terminal shows that everything is okay apparently, but then says something about PSRAM and then reboots the ESP and runs the code again and again. Let me find the error text for you...
@ThatProject
@ThatProject 3 місяці тому
After setting PSRAM to 8MB, you can build, but the program does not run because your device has 2MB. I'm looking for the official documentation of the ESP-SR framework, but I can't find exactly how many MB of PSRAM is required. Do you have info on it?
@kikinhabinde2573
@kikinhabinde2573 14 днів тому
can i use with my esp32? how can i intefaceit with Lcd to display the commands?
@ThatProject
@ThatProject 14 днів тому
To use the ESP-SR framework, ESP32-S3 with PSRAM is recommended. Connecting the display is easy via SPI. Check out the projects using displays on my channel.
@user-lr4yi5dz4m
@user-lr4yi5dz4m 9 місяців тому
Can I use this framework to make project that detect if there is activity speech to record file until end speech, and the project should by accuracy to start record just if speech detected, not any voice
@ThatProject
@ThatProject 9 місяців тому
I think you can find a way to do it if you drill down this framework. But I have no idea about the accuracy you mentioned. This is a generic solution and there is no way to tune by yourself. If you need to have a very accurate voice user interface then need to find other solutions.
@user-lr4yi5dz4m
@user-lr4yi5dz4m 9 місяців тому
​@@ThatProject Can you help me for this project, or can i contact you privately
@ThatProject
@ThatProject 9 місяців тому
@@user-lr4yi5dz4m Sorry, but I can't afford to work on other projects at the moment.
@salmaesam8193
@salmaesam8193 2 місяці тому
can I use a NodeMCU - ESP8266 instead of ESP-32 in this project ?
@ThatProject
@ThatProject 2 місяці тому
Unfortunately, it doesn't support ESP8266.
@hyneklos
@hyneklos 10 місяців тому
wake up word is amaizing. I am courious. Is it possible to use only "wake up" word to open voice stream to some external destination? Reason is, i esp support only english and chinese. edit: ok, i think answer is in your videos... interesting... thx
@ThatProject
@ThatProject 10 місяців тому
Here's an example using Wake Up only. Based on this I guess you can add anything you want. Check this out. github.com/espressif/esp-skainet/tree/master/examples/wake_word_detection
@hyneklos
@hyneklos 10 місяців тому
@@ThatProject thank you!
@TheBlackBeltPanda
@TheBlackBeltPanda 6 місяців тому
How's the sensitivity of the INMP441? Can it hear you properly from across a room, for example?
@ThatProject
@ThatProject 6 місяців тому
The sensitivity is so low that you will only hear what is said in front of the INMP441.
@TheBlackBeltPanda
@TheBlackBeltPanda 6 місяців тому
@@ThatProject Ah, bummer. Do you know of any mic with a high sensitivity? Looking to put together a local voice assistant to replace my nest devices.
@TheBlackBeltPanda
@TheBlackBeltPanda 24 дні тому
@@ThatProject Finally got around to testing the INMP441; it picked up my voice from across the room clear as day, so sensitivity doesn't seem to be an issue.
@ThatProject
@ThatProject 24 дні тому
@@TheBlackBeltPanda That's interesting. INMP441 is omnidirectional, so in my case, I couldn't catch most of the sound unless I was in front of the microphone. How did you configure your i2s environment?
@TheBlackBeltPanda
@TheBlackBeltPanda 24 дні тому
@@ThatProject I just wired it up to a ESP32-S3, installed ESPHome, and configured the microphone and voice_assistant components per some examples I found.
@gustavofreitas3734
@gustavofreitas3734 9 місяців тому
Is the voice recognition user dependant?
@ThatProject
@ThatProject 9 місяців тому
It has no user dependencies. It is a general use.
@amadouroufai2337
@amadouroufai2337 5 місяців тому
Please have you done an update to this repository since? Because i can not find the Base_speech_commands folder nor the led_actions.h header file. Help me i want to implement it on my esp32 s3 t3cam board, I have IDF 5.0 installed. I am also working with espressif IDE. Thanks
@ThatProject
@ThatProject 5 місяців тому
Unfortunately, the LED source code was deleted when the original branch was updated. Please use en_speech_commands_recognition.
@amadouroufai2337
@amadouroufai2337 5 місяців тому
@@ThatProject Thank you for your help. I still can not make my led respond to my voice. What did i miss?
@ThatProject
@ThatProject 5 місяців тому
@@amadouroufai2337 ukposts.info/have/v-deo/a4iTorCdeaCeu58.htmlsi=CjHs33NP9_8MPETo&t=396 Here you can see that the set_led_color function is executed according to the index of the command. You can implement this part to change the color of WS2812.
@amadouroufai2337
@amadouroufai2337 5 місяців тому
@@ThatProject Thank you very much!
@nuwantharaka305
@nuwantharaka305 4 місяці тому
Why the sdkconfig file is not creating after selecting the taraget device?
@ThatProject
@ThatProject 4 місяці тому
Is ESP-IDF running normally?
@deepeshkumarpandey5469
@deepeshkumarpandey5469 11 днів тому
Hi i tried your code , but the the esp keeps rebooting, can you please provide exact sdk config file that you used ? Please
@ThatProject
@ThatProject 10 днів тому
After I shared this project, esp-skinet was updated a lot. So I think you should refer to the official page. github.com/espressif/esp-skainet/tree/master/examples/en_speech_commands_recognition
@omkarbansode6305
@omkarbansode6305 3 місяці тому
Will this still work if I rather use " ESP32 Development Board | Doit DevKit V1 "? Inatead of using esp32-s3. Or would I run into storage issuses with it? Or any other possible issues? Please anyone give me feedback if possible
@ThatProject
@ThatProject 3 місяці тому
As far as I know, DOIT ESP32 DEVKIT V1 Board doesn't have PSRAM. At least your board must have PSRAM to run ESP-SR.
@omkarbansode6305
@omkarbansode6305 3 місяці тому
@@ThatProject ok Sir, thankyou . and is there any other cheap alternative like doit devkit v1 instead of using this esp32-s3
@ThatProject
@ThatProject 3 місяці тому
@@omkarbansode6305 ESP32-S3-DevKitC-1-N8R8 is only $15. Sometimes, using the official one can make development very convenient. amzn.to/4b2Wf5E
@omkarbansode6305
@omkarbansode6305 3 місяці тому
@@ThatProject thankyou for your help , I will definitely try to buy this one
@krishnamallawat3455
@krishnamallawat3455 2 місяці тому
When I am running the code , there is an error stating no cmake file to read . What shoulf i do ?
@ThatProject
@ThatProject 2 місяці тому
Please check if your ESP-IDF build environment is working properly.
@yeaboi726
@yeaboi726 5 місяців тому
hey, i have a problem, when wake work detected, the board resets and doesnt listen to command
@ThatProject
@ThatProject 5 місяців тому
What board do you use? Is it equipped with PSRAM?
@zhdanvadim9536
@zhdanvadim9536 5 місяців тому
I have the some problem
@zhdanvadim9536
@zhdanvadim9536 5 місяців тому
the problem was solved, I set the first parameter in sdkconfig for PSRAM and build project. I not worked. Than I return this param to prev. And now it work =)
@yeaboi726
@yeaboi726 3 місяці тому
@@zhdanvadim9536 What did you do, please explain carefully
@zhdanvadim9536
@zhdanvadim9536 3 місяці тому
@@yeaboi726 I double click on sdkconfig file. Settings manager appeared. I found params related with PSRAM. Changed to another param. Save file sdkconfig. at this time the settings were rebuilt. Than I return param to previous and save config file again. After this the compilation was successful
@peemhyyr_1386
@peemhyyr_1386 2 місяці тому
Hi, I use ESP-IDF 5.1.2 and Esp32s3, when I tried to specify the device target there will show the message likes " ... doesn't seem Cmake build the directory ..." I tried to follow other people step but its still the same. Do you think I have more way to solve this problem?
@ThatProject
@ThatProject 2 місяці тому
Cmake is an essential build system in IDF. Is it possible to build the basic example in your environment?
@peemhyyr_1386
@peemhyyr_1386 2 місяці тому
@@ThatProject can build hello world, in command and it shows the new project folder in esp-idf file, I try to creat new project and move all the files into it but doesnt work.
@ThatProject
@ThatProject 2 місяці тому
If that's the case, there's no issue with your build environment. I need more clues to figure it out.
@peemhyyr_1386
@peemhyyr_1386 2 місяці тому
​@@ThatProject CMake Warning (dev) in CMakeLists.txt: No cmake_minimum_required command is present. A line of code such as cmake_minimum_required(VERSION 3.28) this is showing on cmd when I try to set the target but I do have cmake 3.28 already
@peemhyyr_1386
@peemhyyr_1386 2 місяці тому
@@ThatProjectaftern I change cmake_minimum_required I can set the target without problem but still having problem with sdkconfig with save-defconfig'" terminated with exit code: 2.
@massmoviesveta6510
@massmoviesveta6510 5 місяців тому
hii iam new to the esp32s3 module iam not getting work on it can u help me out
@ThatProject
@ThatProject 5 місяців тому
Please take a look at the ESP-IDF environment configuration and ESP-SR. (Googling)
@hanwenyuan1060
@hanwenyuan1060 Місяць тому
Can I use Arduino frame?
@ThatProject
@ThatProject Місяць тому
If you look at the latest Arduino ESP32 core, you can see that ESP-SR has been added. So the basics seem to be possible. I hope you give this a try. github.com/espressif/arduino-esp32/blob/master/libraries/ESP_SR/examples/Basic/Basic.ino
@yeaboi726
@yeaboi726 4 місяці тому
Hey, why my esp32s3 keeps reseting after uploading the code
@ThatProject
@ThatProject 4 місяці тому
Please check your SDKConfig settings again. It also requires the use of PSRAM.
@yeaboi726
@yeaboi726 3 місяці тому
@@ThatProject I enabled all features about PSRAM, and my board also support 8mb psram.
@ThatProject
@ThatProject 3 місяці тому
@@yeaboi726 I'm not sure what the problem is with this limited information.
@sltechgalaxy1677
@sltechgalaxy1677 10 місяців тому
Can i use esp32 devkit board?
@ThatProject
@ThatProject 10 місяців тому
It can be used, but it seems that the skainet source code needs to be modified.
@sltechgalaxy1677
@sltechgalaxy1677 10 місяців тому
@@ThatProject please modify it please
@cristianandreslondonolondo3106
@cristianandreslondonolondo3106 10 місяців тому
​@@ThatProjecthow?
@widianto6023
@widianto6023 9 місяців тому
Apakah bisa menggunakan esp 8266?
@MPElectronique
@MPElectronique 10 місяців тому
Does it work for arduino IDE?
@ThatProject
@ThatProject 10 місяців тому
I don't think so.
@denisskolcins6766
@denisskolcins6766 5 місяців тому
why im not able to find he file for devkitc
@ThatProject
@ThatProject 5 місяців тому
Are you sure you're trying this branch? github.com/0015/esp-skainet/tree/ESP32-S3-Devkit-C
@denisskolcins6766
@denisskolcins6766 5 місяців тому
@@ThatProject it sends me this: Permission denied (publickey)
@denisskolcins6766
@denisskolcins6766 5 місяців тому
im using ubuntu 22.04 lts
@ThatProject
@ThatProject 5 місяців тому
@@denisskolcins6766 Just download and use it. Green button [Code] -> Download Zip
@denisskolcins6766
@denisskolcins6766 5 місяців тому
@@ThatProject thank you For The help have a nice day
@nefistofelesjulio
@nefistofelesjulio 11 місяців тому
Is this online or offline?
@ThatProject
@ThatProject 11 місяців тому
It's an offline solution.
@nadersaid1329
@nadersaid1329 3 місяці тому
Its offlin or no Thank you
@ThatProject
@ThatProject 3 місяці тому
It's offline, standalone.
@mitkosokolov9382
@mitkosokolov9382 2 місяці тому
Can it learn new language?
@ThatProject
@ThatProject 2 місяці тому
Currently, only Chinese and English are supported. You can add new voice commands under these languages.
@deepeshkumarpandey5469
@deepeshkumarpandey5469 14 днів тому
CMake Error at C:/Users/deepe/esp/v5.2.1/esp-idf/tools/cmake/build.cmake:268 (message): Failed to resolve component 'esp-sr'. getting above error and still unable to resolve any guidance ?
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Переглядів 502 тис.
«Що ви тут лазите?». День з військовими ТЦК Києва + ENG SUB
24:04
Слідство.Інфо | Розслідування, репортажі, викриття
Переглядів 297 тис.
FOOTBALL WITH PLAY BUTTONS ▶️ #roadto100million
00:24
Celine Dept
Переглядів 114 млн
Broadcasting Your Voice with ESP32-S3 & INMP441
8:13
That Project
Переглядів 32 тис.
Arduino voice command on & off, like a personal assistant
3:21
Et Discover
Переглядів 13 тис.
Master Your Home with Voice-Activated Automation
17:25
Creating Jarvis powered by OpenAI and Python | ChatGPT
18:40
CS Coach
Переглядів 750 тис.
Offline Voice Recognition Sensor
8:40
Mellow_Labs
Переглядів 12 тис.
Running ChatGPT on ESP32 with Audio Output 🔉🔊
10:50
techiesms
Переглядів 55 тис.
ESP32 C6 Review - RISC-V SoC with Thread & Zigbee Support!
19:12
Learn Embedded Systems
Переглядів 101 тис.
HOW TO - Replace Google For an ESP32 (Onju Voice)
17:25
Mark Watt Tech
Переглядів 87 тис.
СЛОМАЛСЯ ПК ЗА 2000$🤬
0:59
Корнеич
Переглядів 1 млн
Changing Replace And Edit Backgrounds New Tech || Photo Eedit NEW3X
0:50
Как должен стоять ПК?
1:00
CompShop Shorts
Переглядів 355 тис.
Iphone yoki samsung
0:13
rishton_vines😇
Переглядів 9 млн
ЭТО САМЫЙ МОЩНЫЙ ИГРОВОЙ СМАРТФОН ЗА 270$ 🔥
13:33
Thebox - о технике и гаджетах
Переглядів 18 тис.