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

Поделиться
HTML-код
  • Опубликовано: 2 окт 2024

Комментарии • 373

  • @michaeljansen5188
    @michaeljansen5188 5 месяцев назад +2

    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!

  • @sachinshah4594
    @sachinshah4594 5 месяцев назад +2

    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.

  • @ashispanda4075
    @ashispanda4075 5 месяцев назад +2

    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

  • @EDISON_SCIENCE_CORNER
    @EDISON_SCIENCE_CORNER 5 месяцев назад +1

    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

  • @prasanna2386
    @prasanna2386 5 месяцев назад +1

    I would make a smart specs with voice assistant based on the computer vision in esp32 and with a camera module for obj detection.

  • @drelectronics13
    @drelectronics13 5 месяцев назад +23

    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 месяцев назад +2

      That’s also a very good idea

    • @dhruvgulati1667
      @dhruvgulati1667 5 месяцев назад +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. 🤔

  • @Tech_Brigadier
    @Tech_Brigadier 5 месяцев назад

    I would have made a Home automation system connected to cloud and this module is best and that is what i was looking for this. there are a lot's of other use cases where this could be used things we can do from this

  • @brookrocket9209
    @brookrocket9209 5 месяцев назад +1

    // 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");
    }

  • @shubhgajjar8782
    @shubhgajjar8782 5 месяцев назад +1

    Sir please could you make video on 'How to make AI smart glasses like Meta-Rayban".

  • @spicer41282
    @spicer41282 5 месяцев назад +1

    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.

  • @jayabratabiswas01
    @jayabratabiswas01 5 месяцев назад

    I definitely use it for my father's room and toilet at night as he is 87 years old and it will help him to on/off switches like light and fan during midnight. Every night he wakes up at midnight and goes to toilet. In the very morning as temperature falls his also needs to be switched off fan.

  • @snopz
    @snopz 5 месяцев назад +1

    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 😊

  • @iOT_India
    @iOT_India 5 месяцев назад +1

    Hello Bhiya, If I get this board I will work on offline voice control drone, robot and home automations.

  • @harshgupta1047
    @harshgupta1047 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 🙏🙏❤❤

  • @rajeshrewatkar5483
    @rajeshrewatkar5483 5 месяцев назад

    We could use it as a voice recogniser for arduino robotic arm, car, or even in weather station to display the specific parameters or data on the lcd screen or by high level programming could even let the speaker speak out the data. By far the robotic arm projects could be really amazing as we can use it to perform various inbuilt functions like picking up etc. And yes the arduino car project would be fun as we could emote the robot car according to voice commands. Thank you

  • @gavinpena2260
    @gavinpena2260 2 месяца назад +1

    How to create new offline voice commands

  • @brookrocket9209
    @brookrocket9209 5 месяцев назад +3

    -->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

  • @ellerycadel
    @ellerycadel 5 месяцев назад

    Love it! Great product, awesome video! I would use this for a voice command robot car with sensors for avoidance, room temperature and the like. It would also be great for json feeds and I can see investigating using it for that!

  • @benjaminlliclenin3381
    @benjaminlliclenin3381 4 месяца назад

    I want to use this board to command (music) synthesizers to set specific filter settings using voice commands.

  • @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.

  • @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

  • @immonergy6065
    @immonergy6065 2 месяца назад +1

    Something is off with the way u teach

  • @MdTarekRahman-f4s
    @MdTarekRahman-f4s 5 месяцев назад +1

    Hello I am a computer engineering student. And I want to try this type project. Your video is very nice.

  • @saikirangaikwad2971
    @saikirangaikwad2971 5 месяцев назад +1

    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

  • @The.Candidate
    @The.Candidate 5 месяцев назад

    Nice But what we can make this so the possibility is numerous upto allowed command limit. What i can see here is most of us can use in our project. Like me i can use this in my auto balance robot where it is balancing object on top of his head like a bottle of water(small one) and rom around.

  • @PatnaikUC
    @PatnaikUC 5 месяцев назад

    I shall use it for robotics

  • @manideepnalla3338
    @manideepnalla3338 5 месяцев назад

    This module could be a huge upgrade to my existing home automation which works with Alexa and google in presence of internet as of now. This module helps me to operate my home in offline as well.

    • @dragonsbreath8653
      @dragonsbreath8653 5 месяцев назад

      And how does your Grove Offline Voice module recognize speech in a noisy environment? I spent a lot of time on ReSpeaker Core v2, installed noise reduction from the NoiseTorch-ng project. Speech in a noisy environment was almost clear, only speech could be heard, and music and noise were cut out, but with Rhasspy noise reduction does not work and speech recognition in noisy environments works very poorly, recognition often works falsely

  • @vjaquacrazy
    @vjaquacrazy 5 месяцев назад

    Thanks for the video, its a nice introduction to the product.. I can integrate this board into my aquarium automation PCB. Presently controls are done through bluetooth commands from phone. We be Fun to use voice commands 😊

  • @naitikgupta7816
    @naitikgupta7816 5 месяцев назад

    Hello sir... my self Naitik I'm a big fan of you...
    And for this product I will make first of all turn on and ac then bath light and also use in my car like turn on music system, sunroof, fog lamp and more..

  • @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 🎉🎉🕊️🔥

  • @chakriavala104
    @chakriavala104 5 месяцев назад

    Nice one. Would like to automate tv remote pressing using servos.. integrate with voice commands

  • @swarnimdeveloper
    @swarnimdeveloper 5 месяцев назад +2

    Woah !! Thats literally one of the coolest things I've ever seen..💙

  • @techmobo136
    @techmobo136 5 месяцев назад +1

    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
      instagram.com/techiesms

  • @sensordhanaraj1327
    @sensordhanaraj1327 5 месяцев назад

    Sachin ji, i think this is very useful device voice recognition module for making a personal robot sir. In future days i want to putting our own voice for our satisfaction. Any way this is a beautiful device for offline. Thank you sir😊

  • @sanjanakatenavar7492
    @sanjanakatenavar7492 23 дня назад

    Can I use rasberry board instead of aurdino

  • @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

  • @basicelectronics6324
    @basicelectronics6324 5 месяцев назад +1

    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

  • @hoodiewalahip-hopcenter8684
    @hoodiewalahip-hopcenter8684 5 месяцев назад

    Please give link of product

  • @starkluyim.3242
    @starkluyim.3242 5 месяцев назад

    Thank you, sir, for creating this insightful video! It couldn't have come at a better time. I've been delving into Offline Voice Recognition modules for my college project aimed at developing a smart classroom, and your timely upload is immensely helpful.
    Moreover, could you kindly guide me on how to purchase this module?

    • @techiesms
      @techiesms  5 месяцев назад +1

      You can buy this form SeeedStudio website
      But if you can wait, I have order a cheaper alternative if this and will start selling this once arrived may be end of April.
      Follow us on Instagram to stay updated

    • @starkluyim.3242
      @starkluyim.3242 5 месяцев назад

      Okay sure I will wait for it...
      Thank you so much for your response and I'll definitely follow your Instagram account.

  • @boster78
    @boster78 5 месяцев назад

    if i get this i would make an IOT project that turns our classrooms projector ON from above and add / integrate chatgpt for asking questions on the topic that i don't understand in the class that teacher taught.

  • @gamerworld1534
    @gamerworld1534 5 месяцев назад +1

    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

  • @sumitsharma4485
    @sumitsharma4485 4 месяца назад +1

    // 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

  • @tagalogelectronics6615
    @tagalogelectronics6615 5 месяцев назад

    i will make a voice activated electric fan

  • @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...😏😏

  • @efohelp1130
    @efohelp1130 5 месяцев назад

    How does this work if you have multiple devices nearby? Can you interact with a specific one keeping the others on standby waiting to be called when needed?

  • @sushillad1051
    @sushillad1051 5 месяцев назад +1

    great project ,👏 ,can its make owen command

    • @techiesms
      @techiesms  5 месяцев назад

      Yes, of course

  • @raelseba
    @raelseba 5 месяцев назад

    if I'm the lucky winner I will use it for my home automation project

  • @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

  • @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.

  • @Tanveer.mohammad
    @Tanveer.mohammad 5 месяцев назад

    Can it be compatible with raspberry pi?

  • @Challenger370
    @Challenger370 29 дней назад

    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

  • @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

  • @boster78
    @boster78 5 месяцев назад

    nice knowing this technology thank you for introducing us with this nice technology

  • @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.

  • @pawankumarsingh3996
    @pawankumarsingh3996 Месяц назад

    I will buy it and make project for home and industry.

  • @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.

  • @pydiroopa3823
    @pydiroopa3823 Месяц назад

    sir, how to create customized wake word in vc-02 can you please guide me

  • @pavanmani430
    @pavanmani430 5 месяцев назад

    yhaa using this module I can do my home automation project completely voice commands😗😗😗

  • @yashkumar2716
    @yashkumar2716 5 месяцев назад

    Customising voice commands feature sounds nice

    • @techiesms
      @techiesms  5 месяцев назад

      Just subscribe our channel
      As we will be uploading that content soon

  • @subhabratabasu266
    @subhabratabasu266 5 месяцев назад

    This VC02 module looks like the missing piece for my voice control project! Been itching to ditch the clunky buttons and finally get hands-free. Fingers crossed to win and supercharge my tinkering!

  • @electronicjourney5085
    @electronicjourney5085 5 месяцев назад

    I am use this module for my grandfather ❤❤❤

  • @muthupatchiyappan397
    @muthupatchiyappan397 5 месяцев назад

    Great video thanks for giving us everytime aa useful technology and guiding us with your precious knowledge easily and smoothly ❤️

  • @searchresearch7286
    @searchresearch7286 5 месяцев назад +1

    Can we change commands with hex values

  • @SagarRGaikwad1997
    @SagarRGaikwad1997 5 месяцев назад

    I will make offline smart gardening or offline smart air purifier using this module.

  • @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..

  • @mehulelectroniclab6374
    @mehulelectroniclab6374 5 месяцев назад

    voice commands chair for disabled person

  • @pawankumarsingh3996
    @pawankumarsingh3996 Месяц назад

    Awesome video, your videos are very helpfull to learn some new ..

  • @manishgautam2424
    @manishgautam2424 5 месяцев назад

    I will build a Smart Home Relay and Led Based Project , a real world Project

  • @akhilpk8765
    @akhilpk8765 5 месяцев назад

    This would be great for home automation as well as voice recognition smartwatch projects ☺️

  • @morionesspearfishing5539
    @morionesspearfishing5539 Месяц назад

    Wow nice can have that one for may diy lght control my mini shop

  • @gauravdashora5757
    @gauravdashora5757 5 месяцев назад +1

    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 месяцев назад +1

      This indeed, a good idea

  • @delix93
    @delix93 5 месяцев назад

    I will use this board to make Home automation

  • @Visakamithiran
    @Visakamithiran 5 месяцев назад

    How much power does it require? Can I power it using an indoor solar panel?

  • @dhruvgulati1667
    @dhruvgulati1667 5 месяцев назад

    Bro pls give link of indian retailer who has it in stock, home iot solutions integration will be nice

  • @ashokpamarthy
    @ashokpamarthy 5 месяцев назад

    we can give our custom command to build our own personal voice assistant.

  • @kyeole3234
    @kyeole3234 5 месяцев назад

    We can make customised version of this project with online mode

  • @thegenuineguyzz
    @thegenuineguyzz 5 месяцев назад

    This is Amazing , i will use this to control the Light and some automations

  • @deepdrops
    @deepdrops 5 месяцев назад

    Waiting for portuguese voice commands :)

  • @followinglove666
    @followinglove666 5 месяцев назад +1

    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 месяцев назад +1

      150 custom commands

    • @followinglove666
      @followinglove666 5 месяцев назад +1

      @@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 месяцев назад +1

      @followinglove666 I’ll be putting video about this next month

    • @followinglove666
      @followinglove666 5 месяцев назад +1

      @@techiesms Thank you so much Sir for your support 😊

  • @pvishnukumar
    @pvishnukumar 5 месяцев назад

    Great, I have an idea Controlling Power point presentation

  • @aravellipradeep1870
    @aravellipradeep1870 5 месяцев назад

    want to add voice command to multipurpose iot tracker

  • @rockeystudio
    @rockeystudio 8 дней назад

    Is this able to control pc?

  • @neerajkumar333nk3
    @neerajkumar333nk3 5 месяцев назад

    This offline voice controlled device is secure and next level

  • @roscosmo
    @roscosmo 5 месяцев назад

    great vid! but i dont think you know what warm light means :)

  • @raghulrichard8269
    @raghulrichard8269 5 месяцев назад

    I will be installing this in my room with esp32 to control all light fans

  • @Bibins1985
    @Bibins1985 5 месяцев назад

    i can use it with my home assistant...

  • @viyer_4
    @viyer_4 5 месяцев назад

    If i were to get the module i would make a home automation project

  • @jaivikdhebar
    @jaivikdhebar 27 дней назад

    Really very cool!!

  • @Sir-b1d
    @Sir-b1d 5 месяцев назад

    If it works offline and online both I have bought it

  • @arkamanna925
    @arkamanna925 5 месяцев назад

    I would be making an ai companion using this module

  • @s_a_c_h_u_____1051
    @s_a_c_h_u_____1051 5 месяцев назад

    Nice...i will make a robot girlfriend for my friend❤

  • @rohitmobilecare7691
    @rohitmobilecare7691 5 месяцев назад

    Great sir i will use this modul in my car to scroll window and light and indicaters make a smart car

  • @vizzann9278
    @vizzann9278 5 месяцев назад +1

    Bro, why didn't you installed to your room.?

  • @nagarava
    @nagarava 5 месяцев назад

    Can I use the voice module from dfrobot for the above?

  • @lalitasingh8781
    @lalitasingh8781 5 месяцев назад

    Can you made with esp8266

  • @DEEPAKPAL01
    @DEEPAKPAL01 5 месяцев назад

    Well, I am lazy so would use it to control the lights ion my room.

  • @ucantseeme6825
    @ucantseeme6825 5 месяцев назад

    Esp32 mppt solar charge controller bro

  • @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

  • @TheCeremoniesOfIsrael
    @TheCeremoniesOfIsrael 2 месяца назад

    There's no video on how to use the message widget

  • @THTTech
    @THTTech 5 месяцев назад

    Great