2. Android Arduino Google Speech recognition

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

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

  • @abinayamurugesan5190
    @abinayamurugesan5190 3 года назад

    what are the components required for doing this project??

  • @joshuamarko87
    @joshuamarko87 4 года назад

    Quick question are u able to make it talk back to your phone saying that the light is on or light is turned off?

  • @PlayLounge-r1x
    @PlayLounge-r1x 5 лет назад

    and your app does it need internet ? or can it work offline with google speech to text

  • @patrykbambo7247
    @patrykbambo7247 7 лет назад

    It's not showing me the words that I've said in the serial monitor. Could you help? The only thing I did differently is I used voltage divider because my RXD needs 3.3V and arduino pins give you 5V.

  • @unclesam2582
    @unclesam2582 5 лет назад +1

    share code please sir

  • @aravintraj39
    @aravintraj39 5 лет назад

    thanks alot man for this video. it really helps me alot

  • @mindfuel-ness
    @mindfuel-ness 8 лет назад

    I did everything as you asked in this video but for some reason the Bluetooth won't connect and also it doesn't ask for Bluetooth access when I instal the app. please get to me fast I am in the middle of my last year project submission. also that project you have kept on instrctable "voice control bot" has no app links nor is that ardinu program working. please help me out a bit shreyash kathiriya

    • @mdafroz4190
      @mdafroz4190 8 лет назад

      +shreyash kathiriya first time i also facing the same problem and then i use app in play store call ardudroid app the spelling is wrong but it will appear in play store and don't need to connect the reserver pin for bt module because because it only use transmitting part

    • @mindfuel-ness
      @mindfuel-ness 8 лет назад

      Md Afroz​ Ty so much bro I'll give it a try Andean you please give me your ardinuo sketch program that will be a great help thank you

    • @mdafroz4190
      @mdafroz4190 8 лет назад

      i have this code
      int ledPin = 13;
      int state = 0;
      int flag = 0;
      void setup() {
      pinMode(ledPin, OUTPUT);
      digitalWrite(ledPin, LOW);
      Serial.begin(9600); // Default connection rate for my BT module
      }
      void loop() {
      if(Serial.available() > 0){
      state = Serial.read();
      flag=0;
      }
      if (state == '0') {
      digitalWrite(ledPin, LOW);
      if(flag == 0){
      Serial.println("LED: off");
      flag = 1;
      }
      }
      else if (state == '1') {
      digitalWrite(ledPin, HIGH);
      if(flag == 0){
      Serial.println("LED: on");
      flag = 1;
      }
      }
      }

    • @mindfuel-ness
      @mindfuel-ness 8 лет назад

      I got it worked and submitted it still thanks for all the help

    • @nishantyadav1793
      @nishantyadav1793 6 лет назад

      @@mdafroz4190 code are correct or not sir

  • @mdafroz4190
    @mdafroz4190 8 лет назад

    CAN WE USE SAME PROGRAM code for which we have 1st video or my have to write another code

    • @Z1oneM1
      @Z1oneM1 5 лет назад

      hello!! you can use the same program

  • @cristianstx
    @cristianstx 4 года назад

    Thank you, helped me a lot with your contribution

  • @sanu7210
    @sanu7210 6 лет назад

    PLEASE UPLOAD THE APPS !! ITS REMOVE FROM PLAYSTORE

  • @garylcyhk
    @garylcyhk 8 лет назад

    Thank you!