#include <SoftwareSerial.h>
SoftwareSerial sim800L(2, 3);
SoftwareSerial neo6m(6, 7);
const uint8_t buzzPin = 12;
const uint8_t motionPin = 13;
const uint8_t button_VIN = 9;
const uint8_t button_VOUT = 11;
void setup() {
Serial.begin(9600);
sim800L.begin(9600);
neo6m.begin(9600);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
}