How to make Bluetooth car

Sdílet
Vložit
  • čas přidán 31. 03. 2024
  • Hi Friends in this video we will learn about making Bluetooth control Car. This is a science project for student.
    Part List :
    Arduino Uno
    Motor Driver
    Dc Gear motors
    Wheels
    18650 Battery
    Button
    Bluetooth Module
    My Other Videos :
    Wifi Control Car || How to make mobile Remote Controlled Car
    • Wifi Control Car || Ho...
    IR Remote Arduino Car || How to Make IR Remote Arduino Car
    • IR Remote Arduino Car ...
    Obstacle Avoiding Robot || Obstacle Avoiding Robot L298n
    • Obstacle Avoiding Robo...
    Line Following Robot || Line Following Robot using Arduino
    • Line Following Robot |...
    #myrealhobbies #howtomakebluetoothcar
  • Věda a technologie

Komentáře • 3

  • @shavkat8952
    @shavkat8952 Před měsícem

    Can you share the code, also this app you used is not working, I tried a lot of times

    • @MyRealHobbies
      @MyRealHobbies  Před měsícem

      char t;

      void setup() {
      pinMode(13,OUTPUT); //left motors forward
      pinMode(12,OUTPUT); //left motors reverse
      pinMode(11,OUTPUT); //right motors forward
      pinMode(10,OUTPUT); //right motors reverse
      pinMode(9,OUTPUT); //Led
      Serial.begin(9600);

      }

      void loop() {
      if(Serial.available()){
      t = Serial.read();
      Serial.println(t);
      }

      if(t == 'F'){ //move forward(all motors rotate in forward direction)
      digitalWrite(13,HIGH);
      digitalWrite(11,HIGH);
      }

      else if(t == 'B'){ //move reverse (all motors rotate in reverse direction)
      digitalWrite(12,HIGH);
      digitalWrite(10,HIGH);
      }

      else if(t == 'L'){ //turn right (left side motors rotate in forward direction, right side motors doesn't rotate)
      digitalWrite(11,HIGH);
      }

      else if(t == 'R'){ //turn left (right side motors rotate in forward direction, left side motors doesn't rotate)
      digitalWrite(13,HIGH);
      }
      else if(t == 'W'){ //turn led on or off)
      digitalWrite(9,HIGH);
      }
      else if(t == 'w'){
      digitalWrite(9,LOW);
      }

      else if(t == 'S'){ //STOP (all motors stop)
      digitalWrite(13,LOW);
      digitalWrite(12,LOW);
      digitalWrite(11,LOW);
      digitalWrite(10,LOW);
      }
      delay(100);
      }

  • @nilangshu__98
    @nilangshu__98 Před 2 měsíci

    Fake video