diff --git a/src/LoRa_APRS_Tracker.cpp b/src/LoRa_APRS_Tracker.cpp index 5983f6d..c38b318 100644 --- a/src/LoRa_APRS_Tracker.cpp +++ b/src/LoRa_APRS_Tracker.cpp @@ -30,7 +30,7 @@ TinyGPSPlus gps; NimBLECharacteristic* pCharacteristic; OneButton userButton = OneButton(BUTTON_PIN, true, true); -String versionDate = "2023.07.25"; +String versionDate = "2023.07.31"; int myBeaconsIndex = 0; int myBeaconsSize = Config.beacons.size(); diff --git a/src/custom_characters.h b/src/custom_characters.h index 378b927..409ccf8 100644 --- a/src/custom_characters.h +++ b/src/custom_characters.h @@ -122,6 +122,24 @@ static const unsigned char truckSymbol[] PROGMEM = { 0b01101100, 0b11000110 }; +static const unsigned char recreationalVehicleSymbol[] PROGMEM = { + 0b00000000, 0b00000000, + 0b11111111, 0b11111110, + 0b01000100, 0b01001000, + 0b01111111, 0b11111100, + 0b11111111, 0b11111000, + 0b10000100, 0b00100100, + 0b10000100, 0b00100010, + 0b10000100, 0b00100001, + 0b11111111, 0b11111111, + 0b11000000, 0b00000101, + 0b10111111, 0b11111101, + 0b11111111, 0b11100111, + 0b01001000, 0b00100100, + 0b00110000, 0b00011000 +}; + + /*static const unsigned char noSymbol[] PROGMEM = { 0b00000000, 0b00000000, 0b00000000, 0b00000000, diff --git a/src/display.cpp b/src/display.cpp index 24b2698..9cdcd76 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -16,9 +16,9 @@ extern Beacon *currentBeacon; extern int menuDisplay; extern bool symbolAvailable; -String symbolArray[8] = {"[", ">", "j", "b", "<", "s", "u"}; +String symbolArray[9] = {"[", ">", "j", "b", "<", "s", "u", "R"}; int symbolArraySize = sizeof(symbolArray)/sizeof(symbolArray[0]); -const uint8_t *symbolsAPRS[] = {runnerSymbol, carSymbol, jeepSymbol, bikeSymbol, motorcycleSymbol, shipSymbol, truckSymbol}; +const uint8_t *symbolsAPRS[] = {runnerSymbol, carSymbol, jeepSymbol, bikeSymbol, motorcycleSymbol, shipSymbol, truckSymbol, recreationalVehicleSymbol}; // T-Beams bought with soldered OLED Screen comes with only 4 pins (VCC, GND, SDA, SCL) // If your board didn't come with 4 pins OLED Screen and comes with 5 and one of them is RST...