/* Main module # Modified by Kyle T. Gabriel to fix issue with incorrect GPS data for TTNMapper Copyright (C) 2018 by Xose PĂ©rez This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #include "configuration.h" #include "rom/rtc.h" #include #include #ifdef T_BEAM_V10 #include "axp20x.h" AXP20X_Class axp; bool pmu_irq = false; String baChStatus = "No charging"; #endif bool ssd1306_found = false; bool axp192_found = false; // Message counter, stored in RTC memory, survives deep sleep RTC_DATA_ATTR uint32_t count = 0; #if defined(PAYLOAD_USE_FULL) // includes number of satellites and accuracy uint8_t txBuffer[10]; #elif defined(PAYLOAD_USE_CAYENNE) // CAYENNE DF static uint8_t txBuffer[11] = {0x03, 0x88, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; #endif // ----------------------------------------------------------------------------- // Application // ----------------------------------------------------------------------------- void buildPacket(uint8_t txBuffer[]); // needed for platformio void send() { char buffer[40]; snprintf(buffer, sizeof(buffer), "Latitude: %10.6f\n", gps_latitude()); screen_print(buffer); snprintf(buffer, sizeof(buffer), "Longitude: %10.6f\n", gps_longitude()); screen_print(buffer); snprintf(buffer, sizeof(buffer), "Error: %4.2fm\n", gps_hdop()); screen_print(buffer); buildPacket(txBuffer); #if LORAWAN_CONFIRMED_EVERY > 0 bool confirmed = (count % LORAWAN_CONFIRMED_EVERY == 0); #else bool confirmed = false; #endif ttn_cnt(count); ttn_send(txBuffer, sizeof(txBuffer), LORAWAN_PORT, confirmed); count++; } void sleep() { #if SLEEP_BETWEEN_MESSAGES // Show the going to sleep message on the screen char buffer[20]; snprintf(buffer, sizeof(buffer), "Sleeping in %3.1fs\n", (MESSAGE_TO_SLEEP_DELAY / 1000.0)); screen_print(buffer); // Wait for MESSAGE_TO_SLEEP_DELAY millis to sleep delay(MESSAGE_TO_SLEEP_DELAY); // Turn off screen screen_off(); // Set the user button to wake the board sleep_interrupt(BUTTON_PIN, LOW); // We sleep for the interval between messages minus the current millis // this way we distribute the messages evenly every SEND_INTERVAL millis uint32_t sleep_for = (millis() < SEND_INTERVAL) ? SEND_INTERVAL - millis() : SEND_INTERVAL; sleep_millis(sleep_for); #endif } void printHex2(unsigned v) { v &= 0xff; if (v < 16) Serial.print('0'); Serial.print(v, HEX); } void callback(uint8_t message) { if (EV_JOINING == message) screen_print("Joining TTN...\n"); if (EV_JOINED == message) { screen_print("TTN joined!\n"); Serial.println(F("EV_JOINED")); u4_t netid = 0; devaddr_t devaddr = 0; u1_t nwkKey[16]; u1_t artKey[16]; LMIC_getSessionKeys(&netid, &devaddr, nwkKey, artKey); Serial.print("netid: "); Serial.println(netid, DEC); Serial.print("devaddr: "); Serial.println(devaddr, HEX); Serial.print("AppSKey: "); for (size_t i=0; i SEND_INTERVAL) { if (0 < gps_hdop() && gps_hdop() < 50 && gps_latitude() != 0 && gps_longitude() != 0) { last = millis(); first = false; Serial.println("TRANSMITTING"); send(); } else { if (first) { screen_print("Waiting GPS lock\n"); first = false; } if (millis() > GPS_WAIT_FOR_LOCK) { sleep(); } } } }