← Back to Projects

Bluetooth Controlled Car

A remote-controlled car using Bluetooth communication. The car remains locked until fingerprint authentication is successful.

Bluetooth Controlled Car Image

Sample Arduino Code Snippet

if (authenticated) {
  if (btCommand == "FORWARD") {
    moveForward();
  } else if (btCommand == "STOP") {
    stopCar();
  }
}