Skip to content

Commit

Permalink
new v222
Browse files Browse the repository at this point in the history
  • Loading branch information
richonguzman committed Feb 17, 2025
1 parent f06f576 commit 3b1ed5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/LoRa_APRS_Tracker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ TinyGPSPlus gps;
BluetoothSerial SerialBT;
#endif

String versionDate = "2025.02.16";
String versionDate = "2025.02.17";

uint8_t myBeaconsIndex = 0;
int myBeaconsSize = Config.beacons.size();
Expand Down
2 changes: 1 addition & 1 deletion src/ble_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ namespace BLE_Utils {
}

void sendToPhone(const String& packet) {
if (!packet.isEmpty()) {
if (!packet.isEmpty() && bluetoothConnected) {
logger.log(logging::LoggerLevel::LOGGER_LEVEL_DEBUG, "BLE Rx", "%s", packet.c_str());
String receivedPacketString = "";
for (int i = 0; i < packet.length(); i++) receivedPacketString += packet[i];
Expand Down

0 comments on commit 3b1ed5a

Please sign in to comment.