We can create a voice command system!

  Рет қаралды 35,021

That Project

That Project

Жыл бұрын

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

Пікірлер: 155
@ThatProject
@ThatProject Жыл бұрын
Check More Projects - youtube.com/@ThatProject Github Repository - github.com/0015/ Join FB Group - facebook.com/groups/138965931539175
@Bob-ip4ws
@Bob-ip4ws Жыл бұрын
@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👍.
@Oshan_Dissanayaka
@Oshan_Dissanayaka Жыл бұрын
Thanks, brother... Cool Project!
@Oshan_Dissanayaka
@Oshan_Dissanayaka 10 ай бұрын
Hey bro. Can I do this using ESP32 Devkit V1 Normal 30pins board??
@sandramarkiv6639
@sandramarkiv6639 5 ай бұрын
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.
@VitorCesar_
@VitorCesar_ Жыл бұрын
Pretty cool project, I made it work with INMP441 and a MAX98357A. They need to let us train custom wake words.
@michaelvoke7424
@michaelvoke7424 7 ай бұрын
how did you do it ill like to try
@zhdanvadim9536
@zhdanvadim9536 Жыл бұрын
Thank you! 🙂
@akashsivasubramanian4067
@akashsivasubramanian4067 Жыл бұрын
awesome, iam gonna try it with my esp32.
@SA-oj3bo
@SA-oj3bo Жыл бұрын
Hi could you help to get started with ESP IDF? Mini tutorial maybe? Thx in advance.
@amadouroufai2337
@amadouroufai2337 8 ай бұрын
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 8 ай бұрын
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.
@hungry4code897
@hungry4code897 Жыл бұрын
Thank you so much❤
@doubleHLabs
@doubleHLabs Жыл бұрын
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 Жыл бұрын
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?
@jonathanrodriguez8219
@jonathanrodriguez8219 Жыл бұрын
Nice!!!
@anlpereira
@anlpereira Жыл бұрын
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 Жыл бұрын
A few weeks ago it was updated to work with IDF 5.X. Please check again.
@anlpereira
@anlpereira Жыл бұрын
@@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 Жыл бұрын
@@anlpereira ESP-WHO also seems to work with ESP-IDF 5.x. Check out this branch. github.com/espressif/esp-who/tree/idfv5.0
@user-sr9ss3xd4q
@user-sr9ss3xd4q 6 ай бұрын
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 6 ай бұрын
As far as I know, the language models provided by default are only English and Chinese. Please check again.
@alrostami
@alrostami 7 ай бұрын
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 7 ай бұрын
I know that the ESP-SR supports stereo input, but I haven't actually tried it. How far have you tried?
@alrostami
@alrostami 7 ай бұрын
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 7 ай бұрын
@@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 7 ай бұрын
@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 7 ай бұрын
@@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.
@juremazej2000
@juremazej2000 Жыл бұрын
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 Жыл бұрын
The source code based on ESP32-EYE has been slightly modified to operate on ESP32-S3 with INMP441. Check out my GitHub page.
@surflaweb
@surflaweb Жыл бұрын
Can support long words? For example: turn on the light number 3
@ThatProject
@ThatProject Жыл бұрын
Multinet seems to recognize up to 5 words at a time. Need to do more testing.
@SuperSmosh123
@SuperSmosh123 11 ай бұрын
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 11 ай бұрын
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
@TheBlackBeltPanda
@TheBlackBeltPanda 8 ай бұрын
How's the sensitivity of the INMP441? Can it hear you properly from across a room, for example?
@ThatProject
@ThatProject 8 ай бұрын
The sensitivity is so low that you will only hear what is said in front of the INMP441.
@TheBlackBeltPanda
@TheBlackBeltPanda 8 ай бұрын
@@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 3 ай бұрын
@@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 3 ай бұрын
@@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 3 ай бұрын
@@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.
@ahnaf_404-error
@ahnaf_404-error Жыл бұрын
Is it possible to use typical esp32 boards like wroom 32?
@ThatProject
@ThatProject Жыл бұрын
Maybe it's possible, but it seems PSRAM must be on that board.
@Joeljody77vids
@Joeljody77vids Жыл бұрын
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 Жыл бұрын
It seems possible but I need to try to implement it to check if it has any problems.
@Joeljody77vids
@Joeljody77vids Жыл бұрын
@@ThatProject There is a project called "Willow" that appears to integrate skainet with home assistant but is only for esp-box.
@tajkris
@tajkris Жыл бұрын
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 Жыл бұрын
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
@jomfawad9255
@jomfawad9255 6 ай бұрын
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 6 ай бұрын
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.
@nhatbui5308
@nhatbui5308 Ай бұрын
Hi, I like this video, but where can I set up the RGB LED?
@explorer_1113
@explorer_1113 Ай бұрын
search google for "rgb led in {your country name}". Hopefully you will find it online.
@ThatProject
@ThatProject Ай бұрын
As Fork was updated, the led_action.c file was removed. sorry. github.com/0015/esp-skainet/blob/ESP32-S3-Devkit-C/examples/en_speech_commands_recognition/main/main.c#L112C11-L112C13 line #114, just set the color of the LED Strip according to the color of the command you added. /* Set the LED pixel using RGB from 0 (0%) to 255 (100%) for each color */ led_strip_set_pixel(led_strip, 0, 16, 16, 16); /* Refresh the strip to send data */ led_strip_refresh(led_strip);
@nhatbui5308
@nhatbui5308 Ай бұрын
@@ThatProject Thank you❤
@MI-bm2yy
@MI-bm2yy 9 ай бұрын
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 9 ай бұрын
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 9 ай бұрын
@@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 9 ай бұрын
@@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.
@joaquingutierrez3072
@joaquingutierrez3072 6 ай бұрын
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 6 ай бұрын
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 6 ай бұрын
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 6 ай бұрын
@@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 6 ай бұрын
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?
@salmaesam8193
@salmaesam8193 4 ай бұрын
can I use a NodeMCU - ESP8266 instead of ESP-32 in this project ?
@ThatProject
@ThatProject 4 ай бұрын
Unfortunately, it doesn't support ESP8266.
@user-lr4yi5dz4m
@user-lr4yi5dz4m 11 ай бұрын
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 11 ай бұрын
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 11 ай бұрын
​@@ThatProject Can you help me for this project, or can i contact you privately
@ThatProject
@ThatProject 11 ай бұрын
@@user-lr4yi5dz4m Sorry, but I can't afford to work on other projects at the moment.
@percutseituan
@percutseituan 3 ай бұрын
Terimakasih
@hyneklos
@hyneklos Жыл бұрын
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 Жыл бұрын
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 Жыл бұрын
@@ThatProject thank you!
@rameshganesan1930
@rameshganesan1930 10 ай бұрын
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 10 ай бұрын
First, it seems necessary to test why the basic code does not work. Is your mic working properly?
@Sysshad
@Sysshad Ай бұрын
Is it working in Offline, or does it need to have a working Internet connection?
@ThatProject
@ThatProject Ай бұрын
Yes, this is an offline solution.
@kikinhabinde2573
@kikinhabinde2573 2 ай бұрын
can i use with my esp32? how can i intefaceit with Lcd to display the commands?
@ThatProject
@ThatProject 2 ай бұрын
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.
@gustavofreitas3734
@gustavofreitas3734 11 ай бұрын
Is the voice recognition user dependant?
@ThatProject
@ThatProject 11 ай бұрын
It has no user dependencies. It is a general use.
@nuwantharaka305
@nuwantharaka305 6 ай бұрын
Why the sdkconfig file is not creating after selecting the taraget device?
@ThatProject
@ThatProject 6 ай бұрын
Is ESP-IDF running normally?
@RG-jc1uq
@RG-jc1uq 11 күн бұрын
I build and compiled and upload your project from your github exactly and my esp32 is esp32s3 devkit c1 N18R8 and i see this massage in terminal: Guru meditation error:Core 0 paniced:Exception was unhandled. I dont know whats the matter and problem?
@ThatProject
@ThatProject 11 күн бұрын
I need more detailed information about the error.
@user-ux2oq6yd2c
@user-ux2oq6yd2c 4 ай бұрын
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 4 ай бұрын
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 4 ай бұрын
@@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.
@RG-jc1uq
@RG-jc1uq 17 күн бұрын
When i compile project, i see psram not found?!! My board is esp32s3 devkitc v1
@ThatProject
@ThatProject 17 күн бұрын
There are more options after esp32s3 devkitc v1. For N8R2, Flash is 8MB and PSRAM is 2MB. If there is no PSRAM, there is only N. I hope you check this out.
@krishnamallawat3455
@krishnamallawat3455 4 ай бұрын
When I am running the code , there is an error stating no cmake file to read . What shoulf i do ?
@ThatProject
@ThatProject 4 ай бұрын
Please check if your ESP-IDF build environment is working properly.
@amadouroufai2337
@amadouroufai2337 8 ай бұрын
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 8 ай бұрын
Unfortunately, the LED source code was deleted when the original branch was updated. Please use en_speech_commands_recognition.
@amadouroufai2337
@amadouroufai2337 8 ай бұрын
@@ThatProject Thank you for your help. I still can not make my led respond to my voice. What did i miss?
@ThatProject
@ThatProject 8 ай бұрын
@@amadouroufai2337 kzbin.info/www/bejne/aYnFn62cd8-gkM0si=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 7 ай бұрын
@@ThatProject Thank you very much!
@omkarbansode6305
@omkarbansode6305 5 ай бұрын
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 5 ай бұрын
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 5 ай бұрын
@@ThatProject ok Sir, thankyou . and is there any other cheap alternative like doit devkit v1 instead of using this esp32-s3
@ThatProject
@ThatProject 5 ай бұрын
@@omkarbansode6305 ESP32-S3-DevKitC-1-N8R8 is only $15. Sometimes, using the official one can make development very convenient. amzn.to/4b2Wf5E
@omkarbansode6305
@omkarbansode6305 5 ай бұрын
@@ThatProject thankyou for your help , I will definitely try to buy this one
@massmoviesveta6510
@massmoviesveta6510 7 ай бұрын
hii iam new to the esp32s3 module iam not getting work on it can u help me out
@ThatProject
@ThatProject 7 ай бұрын
Please take a look at the ESP-IDF environment configuration and ESP-SR. (Googling)
@yeaboi726
@yeaboi726 7 ай бұрын
hey, i have a problem, when wake work detected, the board resets and doesnt listen to command
@ThatProject
@ThatProject 7 ай бұрын
What board do you use? Is it equipped with PSRAM?
@zhdanvadim9536
@zhdanvadim9536 7 ай бұрын
I have the some problem
@zhdanvadim9536
@zhdanvadim9536 7 ай бұрын
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 6 ай бұрын
@@zhdanvadim9536 What did you do, please explain carefully
@zhdanvadim9536
@zhdanvadim9536 6 ай бұрын
@@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
@deepeshkumarpandey5469
@deepeshkumarpandey5469 2 ай бұрын
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 2 ай бұрын
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
@deepeshkumarpandey5469
@deepeshkumarpandey5469 2 ай бұрын
Can you make some time to correct the code i am using esp32 s3 devkit c1 board , and i wish to have this assistant working, please help me to proceed through
@deepeshkumarpandey5469
@deepeshkumarpandey5469 2 ай бұрын
Is there a way we can connect , and try resolving this issue , if you're fine i can share my email id here and then we can connect on any platform for discussion
@peemhyyr_1386
@peemhyyr_1386 4 ай бұрын
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 4 ай бұрын
Cmake is an essential build system in IDF. Is it possible to build the basic example in your environment?
@peemhyyr_1386
@peemhyyr_1386 4 ай бұрын
@@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 4 ай бұрын
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 4 ай бұрын
​@@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 4 ай бұрын
@@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.
@MPElectronique
@MPElectronique Жыл бұрын
Does it work for arduino IDE?
@ThatProject
@ThatProject Жыл бұрын
I don't think so.
@hanwenyuan1060
@hanwenyuan1060 3 ай бұрын
Can I use Arduino frame?
@ThatProject
@ThatProject 3 ай бұрын
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
@sltechgalaxy1677
@sltechgalaxy1677 Жыл бұрын
Can i use esp32 devkit board?
@ThatProject
@ThatProject Жыл бұрын
It can be used, but it seems that the skainet source code needs to be modified.
@sltechgalaxy1677
@sltechgalaxy1677 Жыл бұрын
@@ThatProject please modify it please
@cristianandreslondonolondo3106
@cristianandreslondonolondo3106 Жыл бұрын
​@@ThatProjecthow?
@widianto6023
@widianto6023 11 ай бұрын
Apakah bisa menggunakan esp 8266?
@yeaboi726
@yeaboi726 6 ай бұрын
Hey, why my esp32s3 keeps reseting after uploading the code
@ThatProject
@ThatProject 6 ай бұрын
Please check your SDKConfig settings again. It also requires the use of PSRAM.
@yeaboi726
@yeaboi726 6 ай бұрын
@@ThatProject I enabled all features about PSRAM, and my board also support 8mb psram.
@ThatProject
@ThatProject 6 ай бұрын
@@yeaboi726 I'm not sure what the problem is with this limited information.
@nefistofelesjulio
@nefistofelesjulio Жыл бұрын
Is this online or offline?
@ThatProject
@ThatProject Жыл бұрын
It's an offline solution.
@nadersaid1329
@nadersaid1329 5 ай бұрын
Its offlin or no Thank you
@ThatProject
@ThatProject 5 ай бұрын
It's offline, standalone.
@denisskolcins6766
@denisskolcins6766 7 ай бұрын
why im not able to find he file for devkitc
@ThatProject
@ThatProject 7 ай бұрын
Are you sure you're trying this branch? github.com/0015/esp-skainet/tree/ESP32-S3-Devkit-C
@denisskolcins6766
@denisskolcins6766 7 ай бұрын
@@ThatProject it sends me this: Permission denied (publickey)
@denisskolcins6766
@denisskolcins6766 7 ай бұрын
im using ubuntu 22.04 lts
@ThatProject
@ThatProject 7 ай бұрын
@@denisskolcins6766 Just download and use it. Green button [Code] -> Download Zip
@denisskolcins6766
@denisskolcins6766 7 ай бұрын
@@ThatProject thank you For The help have a nice day
@mitkosokolov9382
@mitkosokolov9382 5 ай бұрын
Can it learn new language?
@ThatProject
@ThatProject 5 ай бұрын
Currently, only Chinese and English are supported. You can add new voice commands under these languages.
Forget WiFi! This Wireless Method is WAY Better?
12:14
GreatScott!
Рет қаралды 485 М.
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Рет қаралды 547 М.
你们会选择哪一辆呢#short #angel #clown
00:20
Super Beauty team
Рет қаралды 10 МЛН
small vs big hoop #tiktok
00:12
Анастасия Тарасова
Рет қаралды 32 МЛН
1 or 2?🐄
00:12
Kan Andrey
Рет қаралды 41 МЛН
He sees meat everywhere 😄🥩
00:11
AngLova
Рет қаралды 11 МЛН
Voice Recognition Module - 254 Voice Commands + UART
11:51
Electronoobs
Рет қаралды 195 М.
Broadcasting Your Voice with ESP32-S3 & INMP441
8:13
That Project
Рет қаралды 37 М.
100+ Linux Things you Need to Know
12:23
Fireship
Рет қаралды 263 М.
ESP32 C6 Review - RISC-V SoC with Thread & Zigbee Support!
19:12
Learn Embedded Systems
Рет қаралды 108 М.
I 3D Printed a $1,224 Chair
23:56
Morley Kert
Рет қаралды 146 М.
Four Simple Speech Recognition Products
16:04
James Bruton
Рет қаралды 72 М.
Arduino voice command on & off, like a personal assistant
3:21
Et Discover
Рет қаралды 24 М.
Blue Mobile 📲 Best For Long Audio Call 📞 💙
0:41
Tech Official
Рет қаралды 1 МЛН
КРУТОЙ ТЕЛЕФОН
0:16
KINO KAIF
Рет қаралды 1,6 МЛН
Урна с айфонами!
0:30
По ту сторону Гугла
Рет қаралды 8 МЛН
YOTAPHONE 2 - СПУСТЯ 10 ЛЕТ
15:13
ЗЕ МАККЕРС
Рет қаралды 172 М.