#include #include #include #include #include #include #include #include #if defined(ARDUINO_T_Beam) && !defined(ARDUINO_T_Beam_V0_7) #include #endif #include "settings.h" #include "display.h" WiFiMulti WiFiMulti; WiFiUDP ntpUDP; NTPClient timeClient(ntpUDP, 60*60); APRS_IS aprs_is(USER, PASS, TOOL, VERS); #if defined(ARDUINO_T_Beam) && !defined(ARDUINO_T_Beam_V0_7) AXP20X_Class axp; #endif int next_update = -1; void setup_wifi(); void setup_ota(); void setup_lora(); void setup_ntp(); #if defined(ARDUINO_T_Beam) && !defined(ARDUINO_T_Beam_V0_7) void setup_axp(); #endif String BeaconMsg; void setup() { Serial.begin(115200); setup_display(); delay(500); Serial.println("[INFO] LoRa APRS iGate by OE5BPA (Peter Buchegger)"); show_display("OE5BPA", "LoRa APRS iGate", "by Peter Buchegger", 2000); setup_wifi(); setup_ota(); setup_lora(); setup_ntp(); #if defined(ARDUINO_T_Beam) && !defined(ARDUINO_T_Beam_V0_7) setup_axp(); #endif APRSMessage msg; msg.setSource(USER); msg.setDestination("APRS"); char body_char[100]; sprintf(body_char, "=%sI%s&%s", BEACON_LAT_POS, BEACON_LONG_POS, BEACON_MESSAGE); msg.getAPRSBody()->setData(String(body_char)); BeaconMsg = msg.encode(); delay(500); } void loop() { timeClient.update(); ArduinoOTA.handle(); if(WiFiMulti.run() != WL_CONNECTED) { Serial.println("[ERROR] WiFi not connected!"); show_display("ERROR", "WiFi not connected!"); delay(1000); return; } if(!aprs_is.connected()) { Serial.print("[INFO] connecting to server: "); Serial.print(SERVER); Serial.print(" on port: "); Serial.println(PORT); show_display("INFO", "Connecting to server"); #ifdef FILTER if(!aprs_is.connect(SERVER, PORT, FILTER)) #else if(!aprs_is.connect(SERVER, PORT)) #endif { Serial.println("[ERROR] Connection failed."); Serial.println("[INFO] Waiting 5 seconds before retrying..."); show_display("ERROR", "Server connection failed!", "waiting 5 sec"); delay(5000); return; } Serial.println("[INFO] Connected to server!"); } if(next_update == timeClient.getMinutes() || next_update == -1) { show_display(USER, "Beacon to Server..."); Serial.print("[" + timeClient.getFormattedTime() + "] "); aprs_is.sendMessage(BeaconMsg); next_update = (timeClient.getMinutes() + BEACON_TIMEOUT) % 60; } if(aprs_is.available() > 0) { String str = aprs_is.getMessage(); Serial.print("[" + timeClient.getFormattedTime() + "] "); Serial.println(str); #ifdef FILTER show_display(USER, timeClient.getFormattedTime() + " IS-Server", str, 0); #endif } if(LoRa.parsePacket()) { // read header: char dummy[4]; LoRa.readBytes(dummy, 3); if(dummy[0] != '<') { // is no APRS message, ignore message while(LoRa.available()) { LoRa.read(); } return; } // read APRS data: String str; while(LoRa.available()) { str += (char)LoRa.read(); } show_display(USER, timeClient.getFormattedTime() + " LoRa", "RSSI: " + String(LoRa.packetRssi()) + ", SNR: " + String(LoRa.packetSnr()), str, 0); Serial.print("[" + timeClient.getFormattedTime() + "] "); Serial.print(" Received packet '"); Serial.print(str); Serial.print("' with RSSI "); Serial.print(LoRa.packetRssi()); Serial.print(" and SNR "); Serial.println(LoRa.packetSnr()); /*APRSMessage msg; msg.decode(str); Serial.print("[INFO] "); Serial.println(msg.toString());*/ aprs_is.sendMessage(str); } } void setup_wifi() { WiFi.config(INADDR_NONE, INADDR_NONE, INADDR_NONE); WiFi.setHostname(USER); WiFiMulti.addAP(WIFI_NAME, WIFI_KEY); Serial.print("[INFO] Waiting for WiFi"); show_display("INFO", "Waiting for WiFi"); while(WiFiMulti.run() != WL_CONNECTED) { Serial.print("."); show_display("INFO", "Waiting for WiFi", "...."); delay(500); } Serial.println(""); Serial.println("[INFO] WiFi connected"); Serial.print("[INFO] IP address: "); Serial.println(WiFi.localIP()); show_display("INFO", "WiFi connected", "IP: ", WiFi.localIP().toString(), 2000); } void setup_ota() { ArduinoOTA .onStart([]() { String type; if (ArduinoOTA.getCommand() == U_FLASH) type = "sketch"; else // U_SPIFFS type = "filesystem"; Serial.println("Start updating " + type); show_display("OTA UPDATE", "Start update", type); }) .onEnd([]() { Serial.println(); Serial.println("End"); }) .onProgress([](unsigned int progress, unsigned int total) { Serial.print("Progress: "); Serial.print(progress / (total / 100)); Serial.println("%"); show_display("OTA UPDATE", "Progress: ", String(progress / (total / 100)) + "%"); }) .onError([](ota_error_t error) { Serial.print("Error["); Serial.print(error); Serial.print("]: "); if (error == OTA_AUTH_ERROR) Serial.println("Auth Failed"); else if (error == OTA_BEGIN_ERROR) Serial.println("Begin Failed"); else if (error == OTA_CONNECT_ERROR) Serial.println("Connect Failed"); else if (error == OTA_RECEIVE_ERROR) Serial.println("Receive Failed"); else if (error == OTA_END_ERROR) Serial.println("End Failed"); }); ArduinoOTA.setHostname(USER); ArduinoOTA.begin(); } void setup_lora() { Serial.println("[INFO] Set SPI pins!"); SPI.begin(LORA_SCK, LORA_MISO, LORA_MOSI, LORA_CS); LoRa.setPins(LORA_CS, LORA_RST, LORA_IRQ); 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(); Serial.println("[INFO] LoRa init done!"); show_display("INFO", "LoRa init done!", 2000); } void setup_ntp() { timeClient.begin(); if(!timeClient.forceUpdate()) { Serial.println("[WARN] NTP Client force update issue!"); show_display("WARN", "NTP Client force update issue!", 2000); } Serial.println("[INFO] NTP Client init done!"); show_display("INFO", "NTP Client init done!", 2000); } #if defined(ARDUINO_T_Beam) && !defined(ARDUINO_T_Beam_V0_7) void setup_axp() { 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"); } axp.setPowerOutPut(AXP192_LDO2, AXP202_ON); // LORA axp.setPowerOutPut(AXP192_LDO3, AXP202_ON); // GPS axp.setPowerOutPut(AXP192_DCDC1, AXP202_ON); // OLED axp.setDCDC1Voltage(3300); } #endif