LoRa_APRS_Tracker/src/LoRa_APRS_Tracker.cpp

159 wiersze
3.8 KiB
C++
Czysty Zwykły widok Historia

2020-04-03 21:21:35 +00:00
#include <Arduino.h>
#include <LoRa.h>
#include <APRS-Decoder.h>
2020-05-11 10:16:56 +00:00
#if !defined(ARDUINO_T_Beam_V0_7)
2020-04-03 21:21:35 +00:00
#include <axp20x.h>
2020-05-11 10:16:56 +00:00
#endif
2020-04-03 21:21:35 +00:00
#include <TinyGPS++.h>
#include "settings.h"
#include "display.h"
2020-05-11 10:16:56 +00:00
#if !defined(ARDUINO_T_Beam_V0_7)
2020-04-03 21:21:35 +00:00
#define RXPin 12
#define TXPin 34
2020-05-11 10:16:56 +00:00
#else
#define RXPin 15
#define TXPin 12
#endif
2020-04-03 21:21:35 +00:00
void setup_lora();
String create_lat_aprs(RawDegrees lat);
String create_long_aprs(RawDegrees lng);
HardwareSerial ss(1);
2020-05-11 10:16:56 +00:00
#if !defined(ARDUINO_T_Beam_V0_7)
2020-04-03 21:21:35 +00:00
AXP20X_Class axp;
2020-05-11 10:16:56 +00:00
#endif
2020-04-03 21:21:35 +00:00
TinyGPSPlus gps;
int next_update = -1;
2020-04-03 21:21:35 +00:00
void setup()
{
Serial.begin(115200);
setup_display();
delay(500);
2020-04-05 18:19:31 +00:00
Serial.println("[INFO] LoRa APRS Tracker by OE5BPA (Peter Buchegger)");
show_display("OE5BPA", "LoRa APRS Tracker", "by Peter Buchegger", 2000);
2020-04-03 21:21:35 +00:00
2020-05-11 10:16:56 +00:00
#if !defined(ARDUINO_T_Beam_V0_7)
2020-04-03 21:21:35 +00:00
Wire.begin(SDA, SCL);
if (!axp.begin(Wire, AXP192_SLAVE_ADDRESS))
{
Serial.println("LoRa-APRS / Init / AXP192 Begin PASS");
} else {
Serial.println("LoRa-APRS / Init / AXP192 Begin FAIL");
}
2020-04-05 18:19:31 +00:00
axp.setPowerOutPut(AXP192_LDO2, AXP202_ON); // LORA
axp.setPowerOutPut(AXP192_LDO3, AXP202_ON); // GPS
axp.setPowerOutPut(AXP192_DCDC1, AXP202_ON); // OLED
2020-04-03 21:21:35 +00:00
axp.setDCDC1Voltage(3300);
2020-05-11 10:16:56 +00:00
#endif
2020-04-03 21:21:35 +00:00
ss.begin(9600, SERIAL_8N1, TXPin, RXPin);
setup_lora();
delay(500);
}
2020-04-05 18:19:31 +00:00
#define BROADCAST_TIMEOUT 1
2020-04-03 21:21:35 +00:00
void loop()
{
2020-04-05 18:19:31 +00:00
static int update_min = -1;
2020-04-03 21:21:35 +00:00
while (ss.available() > 0)
{
char c = ss.read();
2020-04-05 18:19:31 +00:00
//Serial.print(c);
2020-04-03 21:21:35 +00:00
gps.encode(c);
}
if(gps.time.isUpdated())
{
2020-04-05 18:19:31 +00:00
if(gps.time.isValid()
&& (gps.time.minute() == update_min || update_min == -1)
2020-04-05 18:22:16 +00:00
&& gps.location.isValid()
&& gps.location.isUpdated())
2020-04-03 21:21:35 +00:00
{
APRSMessage msg;
msg.setSource("OE5BPA-9");
msg.setDestination("APRS");
char body_char[50];
2020-04-05 18:19:31 +00:00
sprintf(body_char, "=%s/%s>LoRa APRS Tracker test", create_lat_aprs(gps.location.rawLat()).c_str(), create_long_aprs(gps.location.rawLng()).c_str());
2020-04-03 21:21:35 +00:00
msg.getAPRSBody()->setData(String(body_char));
2020-04-05 18:19:31 +00:00
String data = msg.encode();
Serial.println(data);
2020-04-08 07:32:44 +00:00
show_display("<< TX >>", data);
2020-04-05 18:19:31 +00:00
LoRa.beginPacket();
LoRa.write((const uint8_t *)data.c_str(), data.length());
LoRa.endPacket();
update_min = (gps.time.minute() + BROADCAST_TIMEOUT) % 60;
2020-04-03 21:21:35 +00:00
}
show_display("OE5BPA",
String("Time: ") + gps.time.hour() + String(":") + gps.time.minute() + String(":") + gps.time.second(),
String("Date: ") + gps.date.day() + String(".") + gps.date.month() + String(".") + gps.date.year(),
String("Sat's: ") + gps.satellites.value() + String(" HDOP: ") + gps.hdop.hdop(),
String("Lat: ") + gps.location.lat() + String(" Lng: ") + gps.location.lng(),
String("") + create_lat_aprs(gps.location.rawLat()) + String(" ") + create_long_aprs(gps.location.rawLng())
);
}
if(millis() > 5000 && gps.charsProcessed() < 10)
{
Serial.println("No GPS detected!");
}
}
void setup_lora()
{
Serial.println("[INFO] Set SPI pins!");
SPI.begin(LORA_SCK, LORA_MISO, LORA_MOSI, LORA_SS);
LoRa.setPins(LORA_SS, LORA_RST, LORA_DIO0);
Serial.println("[INFO] Set LoRa pins!");
long freq = 433775000;
Serial.print("[INFO] frequency: ");
Serial.println(freq);
if (!LoRa.begin(freq)) {
Serial.println("[ERROR] Starting LoRa failed!");
show_display("ERROR", "Starting LoRa failed!");
while (1);
}
LoRa.setSpreadingFactor(12);
LoRa.setSignalBandwidth(125E3);
LoRa.setCodingRate4(5);
LoRa.enableCrc();
2020-04-08 11:03:11 +00:00
LoRa.setTxPower(20);
2020-04-03 21:21:35 +00:00
Serial.println("[INFO] LoRa init done!");
show_display("INFO", "LoRa init done!", 2000);
}
String create_lat_aprs(RawDegrees lat)
{
char str[20];
char n_s = 'N';
if(lat.negative)
{
n_s = 'S';
}
sprintf(str, "%02d%05.2f%c", lat.deg, lat.billionths / 1000000000.0 * 60.0, n_s);
String lat_str(str);
return lat_str;
}
String create_long_aprs(RawDegrees lng)
{
char str[20];
char e_w = 'E';
if(lng.negative)
{
e_w = 'W';
}
sprintf(str, "%03d%05.2f%c", lng.deg, lng.billionths / 1000000000.0 * 60.0, e_w);
String lng_str(str);
return lng_str;
}