Project Title: Bluetooth Control Car

The Bluetooth-Controlled Car project aims to create a remotely operated vehicle through Bluetooth communication. The primary goal is to showcase a practical application of wireless communication and remote control technology. This project combines elements of electronics, robotics, and software development to achieve a tangible and interactive result.

HARDWARE COMPONENTS :

Car Chassis: A customized chassis to accommodate the electronic components.

Motors and Wheels:DC motors for controlling the movement of the car.

Microcontroller:An Arduino board to process incoming signals and control motor actions

Bluetooth Module:A Bluetooth transceiver for wireless communication.(HC05)

Power Supply:Rechargeable batteries to power the entire system.

SOFTWARE COMPONENTS :

Arduino Code Editor: The microcontroller is programmed using Arduino code to interpret Bluetooth signals and control motor actions.

Mobile App:A simple mobile application is developed to send control signals to the car via Bluetooth. NOTE – Name of Application is Bluetooth RC Car Control DIY.

Source Code :

#include AF_DCMotor motor1(1); AF_DCMotor motor2(2); AF_DCMotor motor3(3); AF_DCMotor motor4(4); int motorSpeed = 230; char value; void setup() { Serial.begin(9600); motor1.setSpeed(motorSpeed); motor2.setSpeed(motorSpeed); motor3.setSpeed(motorSpeed); motor4.setSpeed(motorSpeed); } void loop() { if (Serial.available() > 0) { value = Serial.read(); if (value == 'F') { motor1.run(FORWARD); motor2.run(FORWARD); motor3.run(FORWARD); motor4.run(FORWARD); } else if (value == 'B') { motor1.run(BACKWARD); motor2.run(BACKWARD); motor3.run(BACKWARD); motor4.run(BACKWARD); } else if (value == 'L') { motor1.run(BACKWARD); motor2.run(BACKWARD); motor3.run(FORWARD); motor4.run(FORWARD); } else if (value == 'R') { motor3.run(BACKWARD); motor4.run(BACKWARD); motor1.run(FORWARD); motor2.run(FORWARD); } else { motor1.run(RELEASE); motor2.run(RELEASE); motor3.run(RELEASE); motor4.run(RELEASE); } } }

Contact
  • +91 8090980750
  • +91 8090980750
  • vineetsingh8173@gmail.com
  • 355cse@gmail.con
  • Map Link
Follows