Voice Recognition Module - 254 Voice Commands + UART

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 พ.ย. 2024

ความคิดเห็น • 271

  • @ELECTRONOOBS
    @ELECTRONOOBS  2 ปีที่แล้ว +6

    Arduino Course LEVEL 2 (Spanish): bit.ly/2ZNWgqy
    Follow me on FACEBOOK for more: facebook.com/Electronoobs
    Help me on Patreon: www.patreon.com/ELECTRONOOBS

    • @lio1234234
      @lio1234234 2 ปีที่แล้ว +1

      I think the i2c would be for use with something like a raspberry pi

    • @harrywhite7287
      @harrywhite7287 2 ปีที่แล้ว

      @@lio1234234 I2c is just another serial port with a specific com protocol. It can be used to communicate with anything that speaks its language. The nice thing about it is, it only require 2 pins and can be used in a multi-drop configuration so it's easy to create small (Master/Slave) networks. Down side is, it's designed to be used physically close to the other players on its network. You can hang a bunch of I2c sensors on the same two lines.

    • @rklauco
      @rklauco 2 ปีที่แล้ว +1

      Any chance you can publish your code on some git repo? I'd have some minor tweaks to enable also ESP8266 support...

    • @anferjo61
      @anferjo61 2 ปีที่แล้ว

      could you help us telling us what your turn_off_all function does?

    • @adnanhassen296
      @adnanhassen296 ปีที่แล้ว

      The code I need it

  • @darkman19693
    @darkman19693 2 ปีที่แล้ว +16

    I looked into those Pokit meters. But i eventually got myself one of those newer meters that have a built in screen. So nice not having to find my phone to use a meter.:)

  • @cometmace
    @cometmace 2 ปีที่แล้ว +1

    I like that you show a prototype of the robot -- just a string of LEDs to confirm that each of the robot commands is being recognized.

  • @arasha2547
    @arasha2547 2 ปีที่แล้ว +2

    You are the best human on earth
    You provide these projects for free to us electronics enthusiasts. Nice to meet you
    You are my best friend.
    I wish you success and health
    My best friend

  • @GnobarEl
    @GnobarEl 2 ปีที่แล้ว +8

    As always, another great video!
    One of my projects for 2022 is to make a companion robot for my kids. A Robot to tell the time, jokes, so on so on... If you do one, for sure I will follow all your videos to build it! Please, do it! :)
    For now, I already bought the module, it's really powerful!
    Thanks for sharing!!!
    Have a great year!

    • @amphibiland
      @amphibiland 2 ปีที่แล้ว +1

      How's your project going?

  • @kaumohlamonyane272
    @kaumohlamonyane272 2 ปีที่แล้ว +1

    Amazing little tool, this removes the need for a powerful processing device to achieve voice recognition

    • @alexlo7708
      @alexlo7708 2 ปีที่แล้ว

      Its at least ARM64 cpu with NPU or DSP. Also high performance.

  • @CaptZenPetabyte
    @CaptZenPetabyte 2 ปีที่แล้ว +5

    This is BRILLIANT, thanks so much for sharing! Looks like this will assist with a couple of my projects as well.

  • @ivovass195
    @ivovass195 2 ปีที่แล้ว +3

    Very nice little device. It has given me some home automation ideas, thank you for showing us how it works. Cheers for the new year

  • @DavidCook42
    @DavidCook42 2 ปีที่แล้ว

    I love your videos, and to be honest , for me, your accent and way of speaking English keeps me hooked til the end ! Keep em coming.

  • @flethacker
    @flethacker 2 ปีที่แล้ว +15

    You can do voice recognition on a $15 raspi pi zero and have a much larger set of commands and NLP routines as well text to speech. Though this module is super simple to setup and integrate if thats all you need

    • @SatishSharma-ff5ug
      @SatishSharma-ff5ug 2 ปีที่แล้ว

      Please share it...

    • @SatishSharma-ff5ug
      @SatishSharma-ff5ug 2 ปีที่แล้ว

      or give a link..thanks

    • @Rainer_Landes
      @Rainer_Landes 2 ปีที่แล้ว +4

      offline voice recognition? Without sending any data to Alexa or Apple or whatever?
      Can you please give some info where to find such a solution! Thank you! I would be really glad!

  • @toysforboysrc
    @toysforboysrc ปีที่แล้ว

    THANK YOU so much for this very comprehensive video!! I build large scale custom rc cars, I did a taking Skyline R34 with turbo sounds and at this moment I’m building a Bugatti Bolide. However I want to do an even better Job on this Bugatti Build and your video is helping me achieve that! So thank you.

  • @coolthought8456
    @coolthought8456 2 ปีที่แล้ว

    255 command! There are so many possible combination with 255. Really cool.

  • @madhavaraop8787
    @madhavaraop8787 2 ปีที่แล้ว

    Good project from Visakhapatnam 🇮🇳🇮🇳🇮🇳

  • @AtomkeySinclair
    @AtomkeySinclair 2 ปีที่แล้ว +3

    Guess you could run several in parallel all receiving the same audio, expanding any given moment by multiples of 7 commands. A robot that had a directives list for example will probably have the need for more than 7 commands at any given moment, having all N commands at ready would need multiple modules all listening. Whichever one gets a pattern match first would then send the data over UART. Now you just need a way to funnel all the UARTs into a single command processor.

    • @SmallSpoonBrigade
      @SmallSpoonBrigade 2 ปีที่แล้ว +1

      Possibly, but if you need more than 7, you probably want a more powerful system.

    • @AtomkeySinclair
      @AtomkeySinclair 2 ปีที่แล้ว

      @@SmallSpoonBrigade Ideally you're right. I don't know of an embedded version that is capable of more. The next step would be something like a Raspberry PI running software I suppose...

    • @adespade119
      @adespade119 2 ปีที่แล้ว +1

      running on i2c that might be possible, since each module would be listening for its own 7 commands.
      Pretty good idea

    • @AtomkeySinclair
      @AtomkeySinclair 2 ปีที่แล้ว

      @@adespade119 Ideally this will just evolve into more complete system. A voice module that either supports expansion, or the software equivalent of FPGA that can compile and run on something like an ESP32. Thanks for commenting!

  • @A3dprintedman
    @A3dprintedman 2 ปีที่แล้ว +3

    This looks awesome man! Way to go! Can you make a video explaining the parts you used and how you made the library? I’d love to see your design process

  • @wolftng359
    @wolftng359 2 ปีที่แล้ว

    Thanks for these awesome videos brother! Just found your channel a few days ago and have been watching lots of your videos!

  • @leehewitt9559
    @leehewitt9559 2 ปีที่แล้ว +1

    Fantastic my friend. Have a good Christmas and New Year. Look forward to the videos 👌👌👌

  • @ahmadkadahsalim5048
    @ahmadkadahsalim5048 2 ปีที่แล้ว

    Like always, U did a good Job , but now better as before

  • @qcnck2776
    @qcnck2776 2 ปีที่แล้ว +1

    Hey noobix, like this video!😀

  • @hrithikhu
    @hrithikhu 2 ปีที่แล้ว

    These kind of videos are Eletronoobs's Monopoly. I hope Electronoobs knows this. Atleast me as a viewer or a tinker loves Electronoobs for these kind of videos. I really appreciate your efforts. Please keep making us amazed with your lovely videos.
    And noobix is so beautiful name 😍😍😍

  • @m.rahmadhatulzikra1789
    @m.rahmadhatulzikra1789 ปีที่แล้ว

    Your TH-cam channel helps people who are just learning voice recognition, I want to ask a question about how voice recognition can control dfplayer mini, one command to play one song, please give the answer

  • @GenAIWithNandakishor
    @GenAIWithNandakishor 2 ปีที่แล้ว

    You sound more like "what a time to be alive". Legends will know 😌

  • @magnetiseur77
    @magnetiseur77 2 ปีที่แล้ว

    Good ! Already ordered one, on Ebay (less expensive)

  • @qzorn4440
    @qzorn4440 2 ปีที่แล้ว

    o my is this programming or magic??? 😎 the voice control would also be cool for using modbus plc registers for IOT machine control. 😍 thanks

  • @fouzaialaa7962
    @fouzaialaa7962 2 ปีที่แล้ว +1

    this is extremely interesting !!! it will be best for home automation on the cheap !!

    • @glasslinger
      @glasslinger 2 ปีที่แล้ว +5

      Can't equal alexa! Any noise in the background causes failure. (motor running sound on robot, TV set, other people in room making noise) Also, over time your voice changes so you have to re-train it again. Sensitive to volume level. (you must be close to microphone or many fails.) Won't work for different people. Some words can't be trained successfully. (these are problems I ran into)

  • @mattstarke7373
    @mattstarke7373 2 ปีที่แล้ว

    Awesome tutorial on how to use the voice commands. Your channel has helped me alot in building somethings with the arduino. I have a couple of builds loaded on my channel.

  • @RaulDOC
    @RaulDOC 2 ปีที่แล้ว

    E blana, ti-am vazut commentu la BMV de la Nane :))

  • @FixTronics
    @FixTronics 2 ปีที่แล้ว +2

    Beautiful module and excellent explanation
    Thanks

  • @TheRealStructurer
    @TheRealStructurer 2 ปีที่แล้ว

    Thanks for sharing! I can see many use cases for this 👍🏼

  • @TradieTrev
    @TradieTrev 2 ปีที่แล้ว

    The aliexpress sales page says it can only do 80, but that's plenty enough to locally control a house without needing internet.

  • @hicham_ben_omar
    @hicham_ben_omar 2 ปีที่แล้ว +1

    Vraiment très intéressante vidéo, Merci beaucoup

  • @thatgeezeruk
    @thatgeezeruk 2 ปีที่แล้ว

    Woooooooow weeeeeeee I love it...you have a new sub

  • @Tarbard
    @Tarbard 2 ปีที่แล้ว

    This is really cool (and the pokit too )

  • @ariellihan999
    @ariellihan999 ปีที่แล้ว

    GUYS, quick note here.
    I actually tried this on mega because I have a project using the voice recognition module in arduino mega.
    You guys need to connect pin 10 to tx and pin 11 to rx not the other way around.
    Ps: But if it works for you then I guess it's fine. Just that mine doesn't work when my tx is 11 and rx is 10

  • @4sfactor555
    @4sfactor555 2 ปีที่แล้ว

    Thank you bro😍😍😍, love this so much

  • @pokuanchoo4180
    @pokuanchoo4180 2 ปีที่แล้ว

    Good idea and simple. thanks for sharing

  • @h240481
    @h240481 2 ปีที่แล้ว

    Ahhhh If I could submit 1000 likes at once. You are outstanding man.

  • @toysforboysrc
    @toysforboysrc ปีที่แล้ว

    There’s a Movi speech recognizer and speech synthesizer board that technically also do the command. Either by closing a circuit or pwm. Not sure yet, I have not gotten deep into it yet but some of the Amazon reviews I saw were quite advanced and capable.. “the R2D2 video” but that board will be plenty to meet my needs in a 1/7 scale RC car application. Lights, fans, blow flames, start engine or engine sounds, music, and just conversation. What I’d really like is if u can also have it read out live Lipo voltages and motor temps and ESC temps. Would I be asking to much for gps/mph and G force lol?? Anyhow if you have content or experience with that board, I’m definitely going to be looking for it as I look at most of your videos!

  • @scottmorgan5370
    @scottmorgan5370 2 ปีที่แล้ว

    Great video on a really cool module... Thanks friend....

  • @isaamthalhath4359
    @isaamthalhath4359 2 ปีที่แล้ว +1

    Dude i literally was just building a project with this lmao

  • @feedmyintellect
    @feedmyintellect 2 ปีที่แล้ว

    Fantastic video. Thank you!!! 😊

  • @SmoothTalksFootball
    @SmoothTalksFootball 2 ปีที่แล้ว

    Awesome you just help me with my project

  • @electronic7979
    @electronic7979 2 ปีที่แล้ว +1

    Nice product

  • @ashir3022
    @ashir3022 ปีที่แล้ว +1

    @Eletronoobs Sir please can you share final code for controlling led?

  • @chronobot2001
    @chronobot2001 ปีที่แล้ว

    Great video.
    What were you thinking with the hand tattoos?

  • @rklauco
    @rklauco 2 ปีที่แล้ว +2

    Looking at the specs, it would be great if it worked with 3.3V instead of 5 - would be usable with ESP8266 - connecting ESP to MQTT and you have wireless voice assistant in any room :)

    • @AllTernative90
      @AllTernative90 2 ปีที่แล้ว

      I was thinking the same. But an Esp32 should have 5v, right? That would work I guess.

    • @rklauco
      @rklauco 2 ปีที่แล้ว

      @@AllTernative90 5V power is not the problem - the signal levels on the serial interface are a bit of an issue. ESP (both 32 and 8266) is not 5V tolerant on the input pins, so providing it with 5V TX signal might fry the chip. There is level shifter option, of course, but I am 99% sure the chip on the board also works with lower voltage than 5V. I'll check it as soon as it arrives - already ordered :)

    • @AllTernative90
      @AllTernative90 2 ปีที่แล้ว +1

      @@rklauco Ah I see. I'd appreciate it if you could keep me up to date, once you tried it out. :)

    • @rklauco
      @rklauco 2 ปีที่แล้ว +2

      @@AllTernative90 So, the module arrived. Tested it with ESP and it has a problem. It does work with 3.3V, but it was getting resets as the lib is written for arduino and uses while loops without yielding back the control to ESP, therefore causing WDT resets.
      I was able to fix it by inserting yield(); command at line 106 and 200 of the VoiceRecognitionV3.cpp file.
      Since then - no problem at all, works like a charm.
      I've tested using SoftwareSerial connected to D6 and D7 of my wemos module (IO12 and IO13 on ESP). Works OK, training it now :)
      I'll have to write a code for it to send MQTT commands, but this will be perfect - I can put it to multiple rooms.
      My start command, btw, is "Hey, Jarvis" :)

    • @AllTernative90
      @AllTernative90 2 ปีที่แล้ว

      @@rklauco Thanks for getting back to me and giving all the details! Could you do me a favor and test if it can also recognize sounds like a doorbell? Or does it just work with more vocal sounds? Thanks again!

  • @yousefmohamedsalah3277
    @yousefmohamedsalah3277 2 ปีที่แล้ว +1

    Make a video about using a voice recognition V3 with a program access port137

  • @saadyusuf6773
    @saadyusuf6773 2 ปีที่แล้ว +2

    I think you are making Jarvis.

  • @deepeshmeena752
    @deepeshmeena752 2 ปีที่แล้ว

    I am from India and you speaks like a cute boy and I like it.

  • @loptica62
    @loptica62 ปีที่แล้ว

    love the POKIT..... do you ship to Serbia?
    Oh, and one more thing, would like to see a dedicated tutorial about using the POKIT...
    BTW just curious, are you part of the crowdfunding 'pokit' project ?

  • @powermouze
    @powermouze 2 ปีที่แล้ว

    Sweet! Thank you A LOT!!!!!!

  • @UAVdieren
    @UAVdieren 2 ปีที่แล้ว +1

    Hi, great video. We all want to know what the range of the microphone is!

  • @SigmaC
    @SigmaC 2 ปีที่แล้ว +2

    just bought it, thank you

  • @AnandhajithR
    @AnandhajithR 5 หลายเดือนก่อน +1

    For every command it is showing timeout.The only functioning command is 'help'.
    How can I fix it?

    • @elishaniyoshima530
      @elishaniyoshima530 3 หลายเดือนก่อน

      Dd you check for tx and rx pins??

  • @TheStuartstardust
    @TheStuartstardust 2 ปีที่แล้ว +3

    Anyone know the IC used on the board? Can the black gue be removed somehow to reveal the chip? 🤔🤓

  • @Keeping_IT_Simple
    @Keeping_IT_Simple 2 ปีที่แล้ว +2

    Very interesting & easy to follow guide to this board ...
    Think I'll add one to my next order ...
    Quick question...if you don't mind ?
    You say it can accept 254 voice commands but the specification on the listing says 80 - which is it please ?

  • @yapdoit8077
    @yapdoit8077 2 ปีที่แล้ว

    Could be better if you show us the screen in closer. Btw good job. Thank you for make this and share.

  • @drsudar
    @drsudar 2 ปีที่แล้ว

    very well done. thanks for the tutorial.

  • @brodsfeet8154
    @brodsfeet8154 ปีที่แล้ว

    Thanks man!!!now i know now!!!

  • @narrasridhar39
    @narrasridhar39 2 ปีที่แล้ว +1

    May be your views are less
    But your information is marvellous
    Always make videos like this sir❤️❤️❤️❤️

  • @adipurnama_workshop
    @adipurnama_workshop 2 ปีที่แล้ว

    thank you, very informative

  • @PhG1961
    @PhG1961 2 ปีที่แล้ว

    This is awesome !

  • @markawbolton
    @markawbolton 2 ปีที่แล้ว

    great video!

  • @Romello_Pietersz
    @Romello_Pietersz ปีที่แล้ว

    Awesome 👏🏻

  • @eladbenaim1307
    @eladbenaim1307 ปีที่แล้ว

    Great video. What’s the maximum distance that the microphone can hear?

  • @MayoresJhayveeH.
    @MayoresJhayveeH. 6 หลายเดือนก่อน

    Man, I wish I have the money to buy this module. Haha

  • @shundhem_electrick
    @shundhem_electrick 2 ปีที่แล้ว +1

    Amazing

  • @cristiangs2307
    @cristiangs2307 2 ปีที่แล้ว

    good work!! Thanks.

  • @divyakhetan8754
    @divyakhetan8754 7 หลายเดือนก่อน +1

    I wad following the same way u said ... But while loading the voice it says voice untrained.... Can u help me what to do next

    • @elishaniyoshima530
      @elishaniyoshima530 3 หลายเดือนก่อน

      Am facing the same issue
      Did you get the solution

  • @joefreynabua4135
    @joefreynabua4135 7 หลายเดือนก่อน

    Wow amazing can I ask how did you group the command did you load first all command before you group it

  • @adespade119
    @adespade119 2 ปีที่แล้ว

    impressive

  • @jasoneldrick840
    @jasoneldrick840 ปีที่แล้ว

    if anyone have a timeout error do this
    Click ctrl F and search timeout it will pop up then go 7 lines up u will find this line "if(ret >= 0)" change the 0 to -0 that's all the base code is wrong hope that works if u are wondering im just 14 years old i am not an expert

  • @bluebear8741
    @bluebear8741 7 หลายเดือนก่อน

    I have questions: Can you change the text to speech voice to a different one? Can you plug it into a portable power module? does It need to be plugged into a computer for it to work?

  • @AFSMG
    @AFSMG 2 ปีที่แล้ว

    Hola genio. Feliz año. Tienes esto en español??

  • @chinonsoemmanuel1906
    @chinonsoemmanuel1906 5 หลายเดือนก่อน

    This is a nice project.
    Can this be used to recognize music?
    Say I sing a song correctly, an LED should come on, if I sing it wrongly, nothing should work, maybe a red LED.

  • @francoisguyot9770
    @francoisguyot9770 2 ปีที่แล้ว

    Very useful device to substitute for Alexa, if you don't trust its privacy.

  • @MrFernandoBedoya
    @MrFernandoBedoya ปีที่แล้ว

    Hi; excellent video, thank you so much for sharing to. I'd like to control a tool with my voice, however I wouldn't like to do a full Arduinno course. Is it possible to complete this project without having Arduino knowledge?

  • @suspense_comix3237
    @suspense_comix3237 ปีที่แล้ว +1

    Yes, but what are the other pins for? Just want to know in case they are ever useful or anything.

  • @jobekun
    @jobekun 2 ปีที่แล้ว

    this video makes me sub

  • @belaidabdelhadi
    @belaidabdelhadi ปีที่แล้ว +1

    HI , I'm interested in the code , i liked the way implemented the combination of commands . can you share the code ?

  • @marvelmaniac3339
    @marvelmaniac3339 2 ปีที่แล้ว

    Hi... great video. How would i use the voice command module to hear a keyphrase or word and reply with a prerecorded wave file thru an onboard speaker?

  • @lexander9686
    @lexander9686 2 ปีที่แล้ว +1

    Nice

  • @lumsdot
    @lumsdot 2 ปีที่แล้ว +1

    tempted to use thia with my esp32 internet radio media player, not sure how well it will work from a diatance and ahilst music is playing

  • @Administrator3831
    @Administrator3831 ปีที่แล้ว +1

    Where is the code your example you provide in the video ?

  • @gerardsayomac1905
    @gerardsayomac1905 ปีที่แล้ว +2

    good day sir, thanks for this video. i would like to share that i encountered loading problem during the train phase. I successfully trained 4 voice commands but i can't load them. like using the following command:
    load 0 1 2 3
    after entering this command, no one has been loaded( 0 loaded)
    hope anyone here can help me. thank you. Godbless

  • @arasha2547
    @arasha2547 2 ปีที่แล้ว

    thanks i love you

  • @Just_Shorts_Here
    @Just_Shorts_Here 2 ปีที่แล้ว +1

    Hello I'm using this same module once i started training the voice but by mistake i trained 2 in same sigtrain after its showing timeout error

  • @snopz
    @snopz ปีที่แล้ว +1

    can we record a request like if i want to do a chat gpt robot i will say the wake word and after that i want the module to record what i say after and then when i say im finished the arduino send this voice to a speech to text api and then removes the record from the module

  • @Sixthflyer
    @Sixthflyer 2 ปีที่แล้ว +1

    Great video and very nice module. Does the library work with ESP32?

    • @waleedsyed
      @waleedsyed 2 ปีที่แล้ว

      I have the same question

  • @arasha2547
    @arasha2547 2 ปีที่แล้ว +1

    You promised to upload the code
    I have not slept for 2 days 😭😭😭😭😭😭😭😭😭

  • @techieelectro
    @techieelectro 2 ปีที่แล้ว

    Amazing .....
    👍waiting for next version......

  • @msaadzafar-q2o
    @msaadzafar-q2o 8 หลายเดือนก่อน +1

    i successfully trained the command but unfortunately i cant load it。please help me out 。 its been 3 months now i am stuck in it

    • @elishaniyoshima530
      @elishaniyoshima530 3 หลายเดือนก่อน

      Did you find the solution??

    • @msaadzafar-q2o
      @msaadzafar-q2o 3 หลายเดือนก่อน

      @@elishaniyoshima530 no

  • @SilverbackStudios-pk3pq
    @SilverbackStudios-pk3pq 2 ปีที่แล้ว

    Sooo cool

  • @electrical-sajid
    @electrical-sajid ปีที่แล้ว

    Hello sir I want your help in one of my project. Can you pls guide how I can detect sound in the electrical panels ziiiii like chirping sound in the electrical system.

  • @mihi4
    @mihi4 2 ปีที่แล้ว

    Thx a lot for this great video!!
    When I'm searching for the module, or clicking on the Ali-Link you provided, the actual V3 only shows 80 possible commands.
    Do you know, if there is still a 254command version available, somewhere?
    thx and greetings!

  • @mikel9292
    @mikel9292 2 ปีที่แล้ว +2

    It can only store up to 80 voice commands, not 254. You can cleary see that in the aliexpress product page, and also the parameter for the"record" command, is a number between 0 and 79, giving the total 80 voice commands. Please, update the video title, it's giving misinformation.

    • @Mattiaeragiapreso
      @Mattiaeragiapreso 2 ปีที่แล้ว

      The version he is using is v3.1 while the link he provided is to buy the v3.0. I found the 3.1 on ebay but I would l to know if there is another way to buy it, maybe cheaper.

    • @mikel9292
      @mikel9292 2 ปีที่แล้ว +1

      @@Mattiaeragiapreso The 3.1 version also has 80 voice commands.

  • @justelesnews
    @justelesnews ปีที่แล้ว

    Nice video ! Have you tried the new Arduino Pro Nicla Voice ?

    • @ELECTRONOOBS
      @ELECTRONOOBS  ปีที่แล้ว +1

      Not yet!

    • @justelesnews
      @justelesnews ปีที่แล้ว

      @@ELECTRONOOBS ok, thank you ! It would be great a video on it !

  • @Lola_003
    @Lola_003 ปีที่แล้ว +1

    Hey thanks so much for sharing. I followed the steps and when i tpyed " train 0 " and entered, "speak now" didn't show up and instead it said " train time out" what should I do to fix? I have no idea what to do now

    • @AnandhajithR
      @AnandhajithR 5 หลายเดือนก่อน

      Iam having the same issue.
      Not just for train, for every command it's saying timeout, the only functioning command is 'help'.
      Did you fix it?
      If did, please share how to fix it.

  • @mjyanimations1062
    @mjyanimations1062 2 ปีที่แล้ว +1

    I'm just not a fan of the fact that the ic in the new version is in a COB package.

  • @farmaforpresident8138
    @farmaforpresident8138 2 ปีที่แล้ว +2

    Very cool! Would this work for other languages as well?

    • @longdongsilver4719
      @longdongsilver4719 2 ปีที่แล้ว +1

      Are you seriously asking that stupid question or is it a joke?

    • @ELECTRONOOBS
      @ELECTRONOOBS  2 ปีที่แล้ว +2

      Any lenguage

    • @unicodefox
      @unicodefox 2 ปีที่แล้ว +2

      It's only recognising the tones of your voice, so it'll work with any language, even completely made up words, but it will have a trouble trying to understand two people with different accents

    • @farmaforpresident8138
      @farmaforpresident8138 2 ปีที่แล้ว +7

      @@longdongsilver4719 yes, I'm seriously asking. Glad you are so smart to already know it, even though you didn't answer!