Voice Controlled Appliances using Arduino without Internet | Giveaway | Arduino Projects

  Рет қаралды 63,506

techiesms

techiesms

Күн бұрын

Learn how to create voice controlled appliances using Arduino without internet! This tutorial covers the Seeed Studio Grove Offline Voice Recognition board based on VC02 module for offline voice recognition, perfect for home automation projects.
To try out free trial version of Altium, click here - www.altium.com...
Get the best quality components from Octopart: octopart.com/
Altium 365 - www.altium.com...
You can support me🙏🏻 and also get benefitted on Patreon :- / techiesms
__________________________________________________________
👨🏻‍💻 Important Links 👨🏻‍💻
Seeed Studio Groove Offline Voice Recognition board - www.seeedstudi...
Documentation (Wiki Page) - wiki.seeedstud...
__________________________________________________________
Buy the components for your projects and support techiesms💡🔌
Arduino Uno Board - techiesms.com/...
4 Channel Relay Board - techiesms.com/...
and many more such components are available at www.techiesms.com
__________________________________________________________
⏱ Time Stamps ⏱
__________________________________________________________
🎥 🎙 My Video Gear 🎙🎥
Camera - Canon 750d
Lens - 50mm f/1.8 STM Lens (amzn.to/32gqnsi), 24mm f/2.6
Key Light - Godox SL60W (amzn.to/3522mHe)
Fill Light/Back Light - Osaka Lightning Setup (amzn.to/2I5cdDi)
Tripod - amzn.to/3uNhC4H
Microphone - Zoom H1N(amzn.to/3Osh12A)
Editing - Final Cut Pro X on MacBook Pro ( amzn.to/3vHcSyJ )
__________________________________________________________
Get connected with techiesms everywhere..
Subscribe Main Channel :- bit.ly/techiesm...
Subscribe Shorts Channel :- bit.ly/techies...
Facebook :- / techiesms
Twitter :- / imtechiesms
Instagram :- / techiesms
Website :- www.techiesms.com
Telegram - @techiesms
__________________________________________________________
techiesms
explore | learn | share

Пікірлер: 373
@shubhgajjar8782
@shubhgajjar8782 5 ай бұрын
Sir please could you make video on 'How to make AI smart glasses like Meta-Rayban".
@brookrocket9209
@brookrocket9209 5 ай бұрын
// This is the code for testing sampling frequency of esp32 unsigned long newTime; int x; void setup() { pinMode(15,INPUT); Serial.begin(115200); } void loop() { newTime = micros(); for (int i = 0; i < 10000; i++) { x=analogRead(15); } float conversionTime = (micros() - newTime) / 10000.0; Serial.print("Conversion time: "); Serial.print(conversionTime); Serial.println(" uS"); Serial.print("Max sampling frequency: "); Serial.print((1.0 / conversionTime) * 1000000); Serial.println(" Hz"); }
@spicer41282
@spicer41282 5 ай бұрын
Thank you for this product intro! Sub'd and Liked! I do have 2 simple questions? Can you tell me if one of the 150 commands includes a default simple question & response built in for: "Hey Pudding what Time Is It?" and "Hey Pudding, what Day is it?" Which does not need any command coding.
@iOT_India
@iOT_India 5 ай бұрын
Hello Bhiya, If I get this board I will work on offline voice control drone, robot and home automations.
@snopz
@snopz 5 ай бұрын
I would use it as a wake word for my chat gpt robot school project so I can wake up the robot and even make it move with other commands. thanks for this useful and informative video about this module ❤ I hope ill win 😊
@drelectronics13
@drelectronics13 5 ай бұрын
Another use apart from IOT is , we can use it as personal assistant for blind people ,like they can just ask like- to call someone, to ask current time , or just turn esp32 cam module on to guide them through path etc , so they are less dependent on others and will always feel like having someone around ❤
@techiesms
@techiesms 5 ай бұрын
That’s also a very good idea
@dhruvgulati1667
@dhruvgulati1667 5 ай бұрын
Use any android smartphone
@electronicstv5884
@electronicstv5884 5 ай бұрын
Or just use any Assistant like Google Assistant or Siri
@ceneblock
@ceneblock Ай бұрын
I agree with others that using a cellphone is a better option, but I like your thinking! There is bound to be a disability use case for this technology. 🤔
@EDISON_SCIENCE_CORNER
@EDISON_SCIENCE_CORNER 5 ай бұрын
NICE info. I think Response is faster than the DF robot voice recognition module. If yes Great for voice controlled bot. Will try this for that🎉🎉
@techiesms
@techiesms 5 ай бұрын
Response is pretty pretty fast. Totally impressive
@saikirangaikwad2971
@saikirangaikwad2971 5 ай бұрын
Bro make full video on esp8266 with code nd it should work online with google assistant and offline too for 8 mod relay......
@techiesms
@techiesms 5 ай бұрын
Well I will try to make that
@gavinpena2260
@gavinpena2260 2 ай бұрын
How to create new offline voice commands
@brookrocket9209
@brookrocket9209 5 ай бұрын
-->Can I do signal processing of voice signal with this board? -->Can we get audio data? -->What is sampling frequency of this board if it is more than 40khz is good for below projects -->because I tested sampling frequency of analogRead(); function of esp32 is approx maximum of 13khz that's not so good for making sound based project If yes, then we can make sound reactive led or make spectrum analyser By performing FFT
@brookrocket9209
@brookrocket9209 5 ай бұрын
Please replay
@brookrocket9209
@brookrocket9209 5 ай бұрын
unsigned long newTime; int x; void setup() { pinMode(15,INPUT); Serial.begin(115200); } void loop() { newTime = micros(); for (int i = 0; i < 10000; i++) { x=analogRead(15); } float conversionTime = (micros() - newTime) / 10000.0; Serial.print("Conversion time: "); Serial.print(conversionTime); Serial.println(" uS"); Serial.print("Max sampling frequency: "); Serial.print((1.0 / conversionTime) * 1000000); Serial.println(" Hz"); }
@brookrocket9209
@brookrocket9209 5 ай бұрын
Above is the code to test sampling frequency of esp32
@sumitsharma4485
@sumitsharma4485 4 ай бұрын
// initialize digital pin LED_BUILTIN as an output. pinMode(LED_BUILTIN, OUTPUT); } // the loop function runs over and over again forever void loop() { digitalWrite(LED_BUILTIN, HIGH); // turn the LED on (HIGH is the voltage level) delay(1000); // wait for a second digitalWrite(LED_BUILTIN, LOW); // turn the LED off by making
@Arduinolearner
@Arduinolearner 4 ай бұрын
Please send me your details
@Arduinolearner
@Arduinolearner 4 ай бұрын
Ok I give you one Arduino boad
@Arduinolearner
@Arduinolearner 4 ай бұрын
Send your details on email
@immonergy6065
@immonergy6065 2 ай бұрын
Something is off with the way u teach
@MdTarekRahman-f4s
@MdTarekRahman-f4s 5 ай бұрын
Hello I am a computer engineering student. And I want to try this type project. Your video is very nice.
@vinothn4228
@vinothn4228 5 ай бұрын
How can we include our own commands? ... If possible, this would be a great module ever ! 🎉😅
@techiesms
@techiesms 5 ай бұрын
It’s definitely possible and I’ll try to make a video about that along with a cheaper alternative of this board. Stay Tuned….
@vinothn4228
@vinothn4228 5 ай бұрын
My own idea is to help some needy peoples who can't walk near to door 😊.... I'll make more impressive projects through this 👻
@prasanna2386
@prasanna2386 5 ай бұрын
I would make a smart specs with voice assistant based on the computer vision in esp32 and with a camera module for obj detection.
@mr.whitetech3887
@mr.whitetech3887 5 ай бұрын
Can We Use Arduino nano,ESP8266,ESP32 Instade Of Uno ,And If Yes Then what are The Changes required in The Code Or It Will Remain Same ? Well Done Again 🎉🎉🕊️🔥
@basicelectronics6324
@basicelectronics6324 5 ай бұрын
I made an bot which is inspired by techisms video of ESP32 and chatgpt, and now i wake up this my bot by using touch sensor, so after buying this I wake up this my bot using my customized voise commands that's set !
@techiesms
@techiesms 5 ай бұрын
Good idea 👍
@thiensu1958
@thiensu1958 5 ай бұрын
Good luck - your customized commands firmware won’t give you serial output
@ashispanda4075
@ashispanda4075 5 ай бұрын
Excellent ! This will certainly be a game changer as dependency on internet connectivity for voice control application will not be a requirement. I look forward to use this as a voice command to MQTT messenger for my Openhab home automation server for complete offline control. Currently I use Alexa to implement voice control and need the internet aways.
@techiesms
@techiesms 5 ай бұрын
Yes, we can do all of that using this
@hoodiewalahip-hopcenter8684
@hoodiewalahip-hopcenter8684 5 ай бұрын
If i get this Module , i will make a replica of AI based robot Cozmo or humanoid robot , with alot of functions , & voice command activated robot.
@PatnaikUC
@PatnaikUC 5 ай бұрын
I shall use it for robotics
@swarnimdeveloper
@swarnimdeveloper 5 ай бұрын
Woah !! Thats literally one of the coolest things I've ever seen..💙
@sushillad1051
@sushillad1051 5 ай бұрын
great project ,👏 ,can its make owen command
@techiesms
@techiesms 5 ай бұрын
Yes, of course
@metaphysicalArtist
@metaphysicalArtist 5 ай бұрын
lets build a bi-ped robot ! can yo make a video about 3D parts needed and All the basic components needed to build a bi-ped robot at 160~170cm Hight. +open source software ...... your new project
@gamerworld1534
@gamerworld1534 5 ай бұрын
if i get this i will use this to do home automation in my mamas house cause i have used node mcu and alexa in my house so he said he to wants same kindoff thing but he doesn't have alexa so i will use this for him as my 12th boards are over gonna make crazy ai things by watching ur videos....which are really informative and mind blowing
@hoodiewalahip-hopcenter8684
@hoodiewalahip-hopcenter8684 5 ай бұрын
Please upload next tutorial asap !!! My exams are over and i want to build something really bad with this module
@pawankumarsingh3996
@pawankumarsingh3996 Ай бұрын
I will buy it and make project for home and industry.
@Random_Post_00
@Random_Post_00 4 ай бұрын
Changing firmware inbuilt voice into Your voice in Gujarati language so i hope you send me this product...😏😏
@lakshmiprasanna3671
@lakshmiprasanna3671 Ай бұрын
Bro I've a doubt in case disturbances will be there at a particular place how to recognise it our voice . what's the solution for to overcome this problem? Can you please tell me I'm doing project.
@anandb.photography
@anandb.photography 5 ай бұрын
I would like to make entire home voice controlled. Btw it's really amazing
@javiersoto570
@javiersoto570 3 ай бұрын
Este código valdría para el VC-02 O solo para el modelo que estas explicando en el video.. Mi modelo es el que explicastes en el video " Add Custom Voice Control to any Project using this Module without Internet".. GRacias
@Challenger370
@Challenger370 27 күн бұрын
I have followed last few months you are my motivater as well as educater , a lots of thank you for it ,but today I have blocked in your components purchase website due to entering wrong email password please resolve it
@sachinshah4594
@sachinshah4594 5 ай бұрын
This would word well for elderly people. Sometimes they have trouble seeing things in dark and when they enter a dark room it becomes difficult for them to see even the switch to turn on. Also if something like sofa, chair is in the way, it can also injure. So voice command activated lights especially for elderly people who have troubling eyesight is a good use case for this.
@mohammadfaizulislam1992
@mohammadfaizulislam1992 5 ай бұрын
i want to make a desktop companion robot which can work after being offline (off grid)to control smart home appliances made with esp8266,esp32 and many more features (whlie being offline) all features can't disclose here and unable to find right module for that this seems good and might work by chance if i win the giveaway will you do giveaway vision ai module so i can try to add computer vision into it
@pydiroopa3823
@pydiroopa3823 Ай бұрын
sir, how to create customized wake word in vc-02 can you please guide me
@followinglove666
@followinglove666 5 ай бұрын
Sir can I add Custom commands into this module? If yes, so how many custom commands can be saved in this module. Please let me know...🥺
@techiesms
@techiesms 5 ай бұрын
150 custom commands
@followinglove666
@followinglove666 5 ай бұрын
@@techiesms Thank You so much Sir 😊, but how do I add my own commands means the procedures to add the commands, if you tell me the process, I will be very thankful to you ❤️.
@techiesms
@techiesms 5 ай бұрын
@followinglove666 I’ll be putting video about this next month
@followinglove666
@followinglove666 5 ай бұрын
@@techiesms Thank you so much Sir for your support 😊
@michaeljansen5188
@michaeljansen5188 5 ай бұрын
This is awesome! I'm going to automate my dads house with this - he has severe arthritis and can barely get out of bed these days. And he doesn't trust anything to do with the internet, so I haven't been able to use the normal services like Google or Alexa. This will be perfect!
@gauravdashora5757
@gauravdashora5757 5 ай бұрын
Develop voice-controlled healthcare devices such as pill dispensers, medical monitoring systems, or assistive devices for individuals with limited mobility. Voice commands could be used to schedule medication reminders, record health data, or summon assistance.
@techiesms
@techiesms 5 ай бұрын
This indeed, a good idea
@CrazyNexo
@CrazyNexo Ай бұрын
Bro i have a doubt how to make a own voice command pls make a video or reply pls pls pls pls pls pls pls pls.
@vizzann9278
@vizzann9278 5 ай бұрын
Bro, why didn't you installed to your room.?
@akhilpk8765
@akhilpk8765 5 ай бұрын
This would be great for home automation as well as voice recognition smartwatch projects ☺️
@ranjanpanda4
@ranjanpanda4 5 ай бұрын
I will make a appointment security system up and down the boom barier, call particular security by supervisor, call any intercom of flats
@benjaminlliclenin3381
@benjaminlliclenin3381 4 ай бұрын
I want to use this board to command (music) synthesizers to set specific filter settings using voice commands.
@raelseba
@raelseba 5 ай бұрын
if I'm the lucky winner I will use it for my home automation project
@hoodiewalahip-hopcenter8684
@hoodiewalahip-hopcenter8684 5 ай бұрын
Please give link of product
@thinkerrobotics
@thinkerrobotics 5 ай бұрын
My idea is to use it as centre hub for complete home automation and reading sensor values and control automations idid not copy from other comments this is my own idea also I have yt channel of robotics so pls support me
@pavanmani430
@pavanmani430 5 ай бұрын
yhaa using this module I can do my home automation project completely voice commands😗😗😗
@bappapan1297
@bappapan1297 5 ай бұрын
Another request for you that it would be better if you could compare the similar kind of voice recognition modules like gravity module or any other offline recognition modules like that.
@bappapan1297
@bappapan1297 5 ай бұрын
Thank you sir but I don't need your charity, please tell me where can I get the module with reasonable price.
@manishgautam2424
@manishgautam2424 5 ай бұрын
I will build a Smart Home Relay and Led Based Project , a real world Project
@deepdrops
@deepdrops 5 ай бұрын
Waiting for portuguese voice commands :)
@SagarRGaikwad1997
@SagarRGaikwad1997 5 ай бұрын
I will make offline smart gardening or offline smart air purifier using this module.
@searchresearch7286
@searchresearch7286 5 ай бұрын
Can we change commands with hex values
@mathir4113
@mathir4113 5 ай бұрын
I goto make a assistant for blind peoples. Features are turning lights and other devices
@pawankumarsingh3996
@pawankumarsingh3996 Ай бұрын
Awesome video, your videos are very helpfull to learn some new ..
@revanthkumar2537
@revanthkumar2537 5 ай бұрын
Hello bro its very cool VC-02 board I want to make a voice controlled air conditioner in less price and I want to control the air conditioner without any internet this is the best board to use in that air conditioner so that why I want that VC-02 board 😊
@Visakamithiran
@Visakamithiran 5 ай бұрын
How much power does it require? Can I power it using an indoor solar panel?
@electronicjourney5085
@electronicjourney5085 5 ай бұрын
I am use this module for my grandfather ❤❤❤
@nagarava
@nagarava 5 ай бұрын
I would like to use ESP01 voice recognition toy
@kyeole3234
@kyeole3234 5 ай бұрын
We can make customised version of this project with online mode
@jishnutrader710
@jishnutrader710 5 ай бұрын
i would like to do a personal pocket assistance with my coustom voice command using esp32
@hamzayt210
@hamzayt210 25 күн бұрын
I am form mars 😊 Hello puding turn on the light
@EndlessFun-i9q
@EndlessFun-i9q 5 ай бұрын
I am a polytechnic students from electrical and electronics engineering branch and i win id like to contribute in making automation in my classroom like turning on fan, turning on smart screen and lights etc
@LigsChungy
@LigsChungy 5 ай бұрын
I'd use it to make a virtual helper for my grandfather.
@roscosmo
@roscosmo 5 ай бұрын
great vid! but i dont think you know what warm light means :)
@ashokpamarthy
@ashokpamarthy 5 ай бұрын
we can give our custom command to build our own personal voice assistant.
@hirenuthaiahm.s.8475
@hirenuthaiahm.s.8475 5 ай бұрын
I would like to use this and implement an IOT based dental chair
@techmobo136
@techmobo136 5 ай бұрын
if i get the board i will integrate with my Ai assistant hira which is a python based program working on my laptop . i would give it a life and also connect it with open ai api to give it chatgpt's power alsong with iot features. ❤ from kolkata
@techiesms
@techiesms 5 ай бұрын
All the best for the giveaway result. Kindly follow us on Instagram to check the result coming next Sunday www.Instagram.com/techiesms
@mehulelectroniclab6374
@mehulelectroniclab6374 5 ай бұрын
voice commands chair for disabled person
@vedantsamadhiya2304
@vedantsamadhiya2304 5 ай бұрын
I'm going to combine this with blynk server
@RCDUDEFPV
@RCDUDEFPV 4 ай бұрын
Great stuff, nice board
@morionesspearfishing5539
@morionesspearfishing5539 Ай бұрын
Wow nice can have that one for may diy lght control my mini shop
@lalitasingh8781
@lalitasingh8781 5 ай бұрын
Can you made with esp8266
@s_a_c_h_u_____1051
@s_a_c_h_u_____1051 5 ай бұрын
Nice...i will make a robot girlfriend for my friend❤
@pvishnukumar
@pvishnukumar 5 ай бұрын
Great, I have an idea Controlling Power point presentation
@delix93
@delix93 5 ай бұрын
I will use this board to make Home automation
@tagalogelectronics6615
@tagalogelectronics6615 5 ай бұрын
i will make a voice activated electric fan
@pvrinpsk9857
@pvrinpsk9857 5 ай бұрын
I am gonna implement it in my home to control the farm's sump motor with LoRa(RYLR998) for smart agriculture
@dhruvgulati1667
@dhruvgulati1667 5 ай бұрын
Bro pls give link of indian retailer who has it in stock, home iot solutions integration will be nice
@mr.sonsare2307
@mr.sonsare2307 5 ай бұрын
IF I WILLL HAVE THIS BORAD I WILL BOOST MY IOT PROJECT WITH IT EVVEN I WILL TRY TO USE IT ON SMALL PROJECTS OR BOT TO START IT OR OFFF IT AND WE CAN ALSO ITTIGRATE IT WITH THE AI TO DO MORE PROJECTS..
@adityashahu2948
@adityashahu2948 5 ай бұрын
I think I would make a voice controlled wheel chair 😊
@aravellipradeep1870
@aravellipradeep1870 5 ай бұрын
want to add voice command to multipurpose iot tracker
@kinuxinfo4112
@kinuxinfo4112 5 ай бұрын
I will use this device as home automation and my own personal assistant
@arkamanna925
@arkamanna925 5 ай бұрын
I would be making an ai companion using this module
@Sir-b1d
@Sir-b1d 5 ай бұрын
If it works offline and online both I have bought it
@raghulrichard8269
@raghulrichard8269 5 ай бұрын
I will be installing this in my room with esp32 to control all light fans
@creatvitylight224
@creatvitylight224 5 ай бұрын
The response time is way faster than I expected😮.. also the accuracy.. the command r changeable then we can make our own bot with this.. without using any pi or other single board computer.. I have a question is that possible to change the accent of this thing .. and is that possible to add input devices such as sensor with this things..
@techiesms
@techiesms 5 ай бұрын
We can’t change accent And about input device, I don’t think we can add but still I’ll confirm and let you know in the next video
@ashraflambe
@ashraflambe 5 ай бұрын
Hello, Really Amazing and very exciting project. I can think of many uses of this tiny project. I will certainly need one for experimenting the ideas. Please let me know how can I get this board quickly.
@techiesms
@techiesms 5 ай бұрын
You can wait for the giveaway result If you don’t win then also don’t worry Soon I’ll be coming up with a cheaper alternative of the board and sell it through our website
@francegall-web9819
@francegall-web9819 5 ай бұрын
I have spent four years of research since 2019 on the particular Chinese chip, JX108. The thing is, if you have loud music in your space, even background noise turns itself on, and this made it completely amateurish.
@techiesms
@techiesms 5 ай бұрын
Need to try that and check with this module
@seadrezasehat7450
@seadrezasehat7450 5 ай бұрын
I would use this board for my car to lock/unlock the door
@sanjanakatenavar7492
@sanjanakatenavar7492 21 күн бұрын
Can I use rasberry board instead of aurdino
@DEEPAKPAL01
@DEEPAKPAL01 5 ай бұрын
Well, I am lazy so would use it to control the lights ion my room.
@neerajkumar333nk3
@neerajkumar333nk3 5 ай бұрын
This offline voice controlled device is secure and next level
@mukeshbhadala007
@mukeshbhadala007 5 ай бұрын
good toys for child developers
@rockeystudio
@rockeystudio 6 күн бұрын
Is this able to control pc?
@viyer_4
@viyer_4 5 ай бұрын
If i were to get the module i would make a home automation project
@ucantseeme6825
@ucantseeme6825 5 ай бұрын
Esp32 mppt solar charge controller bro
@deepakkoirala2296
@deepakkoirala2296 4 ай бұрын
Is it one way? Can i send audio from arduino/serial?
@Tanveer.mohammad
@Tanveer.mohammad 5 ай бұрын
Can it be compatible with raspberry pi?
@shawonarefin9558
@shawonarefin9558 5 ай бұрын
How can i use a esp32 module insteed of arduno
@automising
@automising 5 ай бұрын
I'll try in my local language, it's really surprising for people here.!!! Thank you for such a great video...!!!
@techiesms
@techiesms 5 ай бұрын
This module won’t support local language
@gtaplayzz
@gtaplayzz Ай бұрын
@@techiesms I WANNA CHNAGE THE NAME PUDDING TO JARVIS HOW CAN I DO IT?
Forget About Raspberry Pi! Use Your Old Phone Instead.
9:09
Doctor Volt
Рет қаралды 316 М.
Which One Is The Best - From Small To Giant #katebrush #shorts
00:17
ОТОМСТИЛ МАМЕ ЗА ЧИПСЫ🤯#shorts
00:44
INNA SERG
Рет қаралды 4,7 МЛН
How do Cats Eat Watermelon? 🍉
00:21
One More
Рет қаралды 11 МЛН
Please Help This Poor Boy 🙏
00:40
Alan Chikin Chow
Рет қаралды 23 МЛН
From Brains to Bot: Arduino's Next-Level Journey with AI.
7:26
DIY Builder
Рет қаралды 443 М.
I tried the Cheapest Arduino Alternative (that Nobody heard of)
13:31
$300 120Nm robotic actuator from aliexpress - ROBSTRIDE04
7:46
It’s Been a Good Run, Phone Providers.
26:31
Data Slayer
Рет қаралды 4,8 МЛН
Control Appliances with your Voice WITHOUT INTERNET | PCBGOGO
12:46
DIY Laser Image Projector (100ft+ Range!)
20:08
Ben Makes Everything
Рет қаралды 312 М.
We built a Drone using ESP32 | Now on Kickstarter
9:37
Circuit Digest
Рет қаралды 184 М.
Try these 16 Brilliant ESP32 projects!!!
11:18
ToP Projects Compilation
Рет қаралды 584 М.
Which One Is The Best - From Small To Giant #katebrush #shorts
00:17