2018-07-15 14:28:05 +02:00
|
|
|
#ifdef HAS_DISPLAY
|
|
|
|
|
|
|
|
// Basic Config
|
|
|
|
#include "globals.h"
|
|
|
|
#include <esp_spi_flash.h> // needed for reading ESP32 chip attributes
|
|
|
|
|
2018-10-21 19:00:20 +02:00
|
|
|
HAS_DISPLAY u8x8(MY_OLED_RST, MY_OLED_SCL, MY_OLED_SDA);
|
2018-07-15 14:28:05 +02:00
|
|
|
|
2018-07-15 23:40:42 +02:00
|
|
|
// helper string for converting LoRa spread factor values
|
|
|
|
#if defined(CFG_eu868)
|
|
|
|
const char lora_datarate[] = {"1211100908077BFSNA"};
|
|
|
|
#elif defined(CFG_us915)
|
|
|
|
const char lora_datarate[] = {"100908078CNA121110090807"};
|
2018-10-22 13:43:19 +02:00
|
|
|
#if defined(CFG_as923)
|
|
|
|
const char lora_datarate[] = {"1211100908077BFSNA"};
|
|
|
|
#if defined(CFG_au921)
|
|
|
|
const char lora_datarate[] = {"1211100908078CNA1211109C8C7C"};
|
|
|
|
#if defined(CFG_in866)
|
|
|
|
const char lora_datarate[] = {"121110090807FSNA"};
|
2018-07-15 23:40:42 +02:00
|
|
|
#endif
|
|
|
|
|
2018-09-23 22:12:10 +02:00
|
|
|
uint8_t volatile DisplayState = 0;
|
2018-07-19 21:53:56 +02:00
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
// helper function, prints a hex key on display
|
|
|
|
void DisplayKey(const uint8_t *key, uint8_t len, bool lsb) {
|
|
|
|
const uint8_t *p;
|
|
|
|
for (uint8_t i = 0; i < len; i++) {
|
|
|
|
p = lsb ? key + len - i - 1 : key + i;
|
|
|
|
u8x8.printf("%02X", *p);
|
|
|
|
}
|
|
|
|
u8x8.printf("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_display(const char *Productname, const char *Version) {
|
2018-10-03 00:25:05 +02:00
|
|
|
|
|
|
|
// show startup screen
|
2018-07-15 14:28:05 +02:00
|
|
|
uint8_t buf[32];
|
|
|
|
u8x8.begin();
|
|
|
|
u8x8.setFont(u8x8_font_chroma48medium8_r);
|
|
|
|
u8x8.clear();
|
|
|
|
u8x8.setFlipMode(0);
|
|
|
|
u8x8.setInverseFont(1);
|
|
|
|
u8x8.draw2x2String(0, 0, Productname);
|
|
|
|
u8x8.setInverseFont(0);
|
|
|
|
u8x8.draw2x2String(2, 2, Productname);
|
2018-09-16 17:39:18 +02:00
|
|
|
vTaskDelay(1500 / portTICK_PERIOD_MS);
|
2018-07-15 14:28:05 +02:00
|
|
|
u8x8.clear();
|
|
|
|
u8x8.setFlipMode(1);
|
|
|
|
u8x8.setInverseFont(1);
|
|
|
|
u8x8.draw2x2String(0, 0, Productname);
|
|
|
|
u8x8.setInverseFont(0);
|
|
|
|
u8x8.draw2x2String(2, 2, Productname);
|
2018-09-16 17:39:18 +02:00
|
|
|
vTaskDelay(1500 / portTICK_PERIOD_MS);
|
2018-07-15 14:28:05 +02:00
|
|
|
|
|
|
|
u8x8.setFlipMode(0);
|
|
|
|
u8x8.clear();
|
|
|
|
|
|
|
|
#ifdef DISPLAY_FLIP
|
|
|
|
u8x8.setFlipMode(1);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Display chip information
|
|
|
|
#ifdef VERBOSE
|
|
|
|
esp_chip_info_t chip_info;
|
|
|
|
esp_chip_info(&chip_info);
|
|
|
|
u8x8.printf("ESP32 %d cores\nWiFi%s%s\n", chip_info.cores,
|
|
|
|
(chip_info.features & CHIP_FEATURE_BT) ? "/BT" : "",
|
|
|
|
(chip_info.features & CHIP_FEATURE_BLE) ? "/BLE" : "");
|
|
|
|
u8x8.printf("ESP Rev.%d\n", chip_info.revision);
|
|
|
|
u8x8.printf("%dMB %s Flash\n", spi_flash_get_chip_size() / (1024 * 1024),
|
|
|
|
(chip_info.features & CHIP_FEATURE_EMB_FLASH) ? "int." : "ext.");
|
|
|
|
#endif // VERBOSE
|
|
|
|
|
|
|
|
u8x8.print(Productname);
|
|
|
|
u8x8.print(" v");
|
|
|
|
u8x8.println(PROGVERSION);
|
|
|
|
|
|
|
|
#ifdef HAS_LORA
|
|
|
|
u8x8.println("DEVEUI:");
|
|
|
|
os_getDevEui((u1_t *)buf);
|
|
|
|
DisplayKey(buf, 8, true);
|
|
|
|
#endif // HAS_LORA
|
|
|
|
|
2018-09-16 17:39:18 +02:00
|
|
|
vTaskDelay(3000 / portTICK_PERIOD_MS);
|
2018-07-15 14:28:05 +02:00
|
|
|
u8x8.clear();
|
|
|
|
u8x8.setPowerSave(!cfg.screenon); // set display off if disabled
|
|
|
|
u8x8.draw2x2String(0, 0, "PAX:0");
|
|
|
|
#ifdef BLECOUNTER
|
|
|
|
u8x8.setCursor(0, 3);
|
|
|
|
u8x8.printf("BLTH:0");
|
|
|
|
#endif
|
|
|
|
u8x8.setCursor(0, 4);
|
|
|
|
u8x8.printf("WIFI:0");
|
|
|
|
u8x8.setCursor(0, 5);
|
|
|
|
u8x8.printf(!cfg.rssilimit ? "RLIM:off " : "RLIM:%d", cfg.rssilimit);
|
|
|
|
|
|
|
|
} // init_display
|
|
|
|
|
2018-07-22 08:41:41 +02:00
|
|
|
void refreshtheDisplay() {
|
2018-07-15 14:28:05 +02:00
|
|
|
|
|
|
|
// set display on/off according to current device configuration
|
|
|
|
if (DisplayState != cfg.screenon) {
|
|
|
|
DisplayState = cfg.screenon;
|
|
|
|
u8x8.setPowerSave(!cfg.screenon);
|
|
|
|
}
|
|
|
|
|
2018-08-04 15:27:58 +02:00
|
|
|
// if display is switched off we don't refresh it and save time
|
2018-07-15 14:28:05 +02:00
|
|
|
if (!DisplayState)
|
|
|
|
return;
|
|
|
|
|
2018-10-03 00:25:05 +02:00
|
|
|
uint8_t msgWaiting;
|
2018-08-04 15:27:58 +02:00
|
|
|
char buff[16]; // 16 chars line buffer
|
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
// update counter (lines 0-1)
|
|
|
|
snprintf(
|
|
|
|
buff, sizeof(buff), "PAX:%-4d",
|
|
|
|
(int)macs.size()); // convert 16-bit MAC counter to decimal counter value
|
|
|
|
u8x8.draw2x2String(0, 0,
|
|
|
|
buff); // display number on unique macs total Wifi + BLE
|
|
|
|
|
2018-07-21 21:50:39 +02:00
|
|
|
// update Battery status (line 2)
|
|
|
|
#ifdef HAS_BATTERY_PROBE
|
|
|
|
u8x8.setCursor(0, 2);
|
2018-09-27 14:01:23 +02:00
|
|
|
u8x8.printf(batt_voltage > 4000 ? "B:USB " : "B:%.1fV",
|
|
|
|
batt_voltage / 1000.0);
|
2018-07-21 21:50:39 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// update GPS status (line 2)
|
2018-07-15 14:28:05 +02:00
|
|
|
#ifdef HAS_GPS
|
2018-07-22 00:01:43 +02:00
|
|
|
u8x8.setCursor(9, 2);
|
2018-07-15 14:28:05 +02:00
|
|
|
if (!gps.location.isValid()) // if no fix then display Sats value inverse
|
|
|
|
{
|
|
|
|
u8x8.setInverseFont(1);
|
2018-07-22 00:01:43 +02:00
|
|
|
u8x8.printf("Sats:%.2d", gps.satellites.value());
|
2018-07-15 14:28:05 +02:00
|
|
|
u8x8.setInverseFont(0);
|
|
|
|
} else
|
2018-10-06 22:45:35 +02:00
|
|
|
u8x8.printf("Sats:%.2d", gps.satellites.value());
|
2018-07-15 14:28:05 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// update bluetooth counter + LoRa SF (line 3)
|
|
|
|
#ifdef BLECOUNTER
|
|
|
|
u8x8.setCursor(0, 3);
|
|
|
|
if (cfg.blescan)
|
|
|
|
u8x8.printf("BLTH:%-4d", macs_ble);
|
|
|
|
else
|
|
|
|
u8x8.printf("%s", "BLTH:off");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAS_LORA
|
|
|
|
u8x8.setCursor(11, 3);
|
|
|
|
u8x8.printf("SF:");
|
|
|
|
if (cfg.adrmode) // if ADR=on then display SF value inverse
|
|
|
|
u8x8.setInverseFont(1);
|
|
|
|
u8x8.printf("%c%c", lora_datarate[LMIC.datarate * 2],
|
|
|
|
lora_datarate[LMIC.datarate * 2 + 1]);
|
|
|
|
if (cfg.adrmode) // switch off inverse if it was turned on
|
|
|
|
u8x8.setInverseFont(0);
|
|
|
|
#endif // HAS_LORA
|
|
|
|
|
|
|
|
// update wifi counter + channel display (line 4)
|
|
|
|
u8x8.setCursor(0, 4);
|
|
|
|
u8x8.printf("WIFI:%-4d", macs_wifi);
|
|
|
|
u8x8.setCursor(11, 4);
|
|
|
|
u8x8.printf("ch:%02d", channel);
|
|
|
|
|
|
|
|
// update RSSI limiter status & free memory display (line 5)
|
|
|
|
u8x8.setCursor(0, 5);
|
|
|
|
u8x8.printf(!cfg.rssilimit ? "RLIM:off " : "RLIM:%-4d", cfg.rssilimit);
|
|
|
|
u8x8.setCursor(10, 5);
|
|
|
|
u8x8.printf("%4dKB", ESP.getFreeHeap() / 1024);
|
|
|
|
|
|
|
|
#ifdef HAS_LORA
|
|
|
|
// update LoRa status display (line 6)
|
|
|
|
u8x8.setCursor(0, 6);
|
2018-08-04 15:27:58 +02:00
|
|
|
u8x8.printf("%-16s", display_line6);
|
2018-07-15 14:28:05 +02:00
|
|
|
|
|
|
|
// update LMiC event display (line 7)
|
|
|
|
u8x8.setCursor(0, 7);
|
2018-08-04 15:40:28 +02:00
|
|
|
u8x8.printf("%-14s", display_line7);
|
2018-08-04 14:37:41 +02:00
|
|
|
|
|
|
|
// update LoRa send queue display (line 7)
|
|
|
|
msgWaiting = uxQueueMessagesWaiting(LoraSendQueue);
|
|
|
|
if (msgWaiting) {
|
|
|
|
sprintf(buff, "%2d", msgWaiting);
|
|
|
|
u8x8.setCursor(14, 7);
|
|
|
|
u8x8.setInverseFont(1);
|
|
|
|
u8x8.printf("%-2s", msgWaiting == SEND_QUEUE_SIZE ? "<>" : buff);
|
|
|
|
u8x8.setInverseFont(0);
|
2018-08-04 15:40:28 +02:00
|
|
|
} else
|
|
|
|
u8x8.printf(" ");
|
2018-08-04 14:37:41 +02:00
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
#endif // HAS_LORA
|
2018-08-04 15:27:58 +02:00
|
|
|
|
2018-07-15 14:28:05 +02:00
|
|
|
} // refreshDisplay()
|
|
|
|
|
|
|
|
#endif // HAS_DISPLAY
|