Project Work
Project Work Voice control Robot:- Components Needed: Arduino Uno (or Nano) L298N Motor Driver 2 DC Motors + Wheels Robot chassis HC-05 Bluetooth module Jumper wires Battery (7–12V) Android phone 🧠How It Works You speak into your phone. A voice control app converts speech → text. The app sends command via Bluetooth. Arduino receives command. Motors move accordingly. 🔌 Wiring Overview 1️⃣ Bluetooth (HC-05) VCC → 5V GND → GND TX → Arduino RX RX → Arduino TX (use voltage divider) 2️⃣ Motor Driver (L298N) IN1 → Arduino pin 8 IN2 → Arduino pin 9 IN3 → Arduino pin 10 IN4 → Arduino pin 11 Motors connected to OUT1, OUT2 Battery to 12V input Coding :- char command; void setup() { Serial.begin(9600); pinMode(8, OUTPUT); pinMode(9, OUTPUT); pinMode(10, OUTPUT); pinMode(11, OUTPUT); } void loop() { if (Serial.available()) { ...