Left One
Left One
h>
#include <SoftwareSerial.h>
#include <LiquidCrystal.h>
void setup() {
Serial.begin(9600);
gpsSerial.begin(GPSBaud);
gsmSerial.begin(9600);
lcd.begin(16, 2);
}
void loop() {
serialEvent();
while (temp) {
while (gpsSerial.available() > 0) {
gps.encode(gpsSerial.read());
// ...
}
}
// ...
}
void serialEvent() {
while (Serial.available() > 0) {
if (Serial.find("Track Vehicle")) {
temp = 1;
break;
} else {
temp = 0;
}
}
}
void gsm_init() {
lcd.clear();
lcd.print("Finding Module..");
boolean at_flag = 1;
while (at_flag) {
Serial.println("AT");
delay(1);
delay(1000);
}
lcd.clear();
lcd.print("Module Connected..");
delay(1000);
lcd.clear();
lcd.print("Disabling ECHO");
boolean echo_flag = 1;
while (echo_flag) {
Serial.println("ATE0");
delay(1000);
}
lcd.clear();
lcd.print("Echo OFF");
delay(1000);
lcd.clear();
lcd.print("Finding Network..");
boolean net_flag = 1;
while (net_flag) {
Serial.println("AT+CPIN?");
while (Serial.available() > 0) {
if (Serial.find("+CPIN: READY"))
net_flag = 0;
}
delay(1000);
}
lcd.clear();
lcd.print("Network Found..");
delay(1000);
lcd.clear();
}
void init_sms() {
Serial.println("AT+CMGF=1");
delay(400);
Serial.println("AT+CMGS=\"+252906034727\""); // use your 10 digit cell no. here
delay(400);
}
void send_sms() {
Serial.write(26);
}
void lcd_status() {
lcd.clear();
lcd.print("Message Sent");
delay(2000);
lcd.clear();
lcd.print("System Ready");
}
void tracking() {
init_sms();
send_data("Vehicle Tracking Alert:");
Serial.println(" ");
send_data("Your Vehicle Current Location is:");
Serial.println(" ");
send_sms();
delay(2000);
lcd_status();
}