Zeeshan
Published

Secure Vehicle

This project is to develop a tracking based security system for vehicles.

IntermediateWork in progress5 days1,705
Secure Vehicle

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
HC-06 Bluetooth Module
×1
GSM Module
×1
GPS Module
×1

Software apps and online services

Android 6.0
Android Studio
Android Studio

Story

Read more

Code

Vehicle Remote

Java
This is the mobile app that communicates with device installed in vehicle
No preview (download only).

Arduino Code

C/C++
This code is to shutdown and unshut vehicle engine once special command received
// the setup routine runs once when you press reset:
void setup() {

  Serial.begin(9600);

}

// the loop routine runs over and over again forever:
void loop() {
  // read the input pin:
  char msg =(char)Serial.read();
  if(Serial.available())
  {
    if (msg=='l'){
    digitalWrite(13,1);
    }
    else if (msg=='u') {
      digitalWrite(13,0);
    }
  
  }
  delay(100);        // delay in between reads for stability
}

Credits

Zeeshan

Zeeshan

13 projects • 50 followers
Creative and destructive design master. Ability to use the brain waves for both construction and destruction

Comments