From a92eea351364c6a96e0a29139c749c7d95579877 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sat, 17 Sep 2022 21:21:00 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7130609..2474657d 100644 --- a/README.md +++ b/README.md @@ -576,9 +576,9 @@ Send for example `83` `86` as Downlink on Port 2 to get battery status and time/ # License -Copyright 2018-2020 Oliver Brandmueller +Copyright 2018-2022 Oliver Brandmueller -Copyright 2018-2020 Klaus Wilting +Copyright 2018-2022 Klaus Wilting Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. From 4ef487627d60b28a7dacac36aa69da1213a02916 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Sat, 1 Oct 2022 19:26:45 +0200 Subject: [PATCH 2/4] Update platformio_orig.ini --- platformio_orig.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio_orig.ini b/platformio_orig.ini index f1ef2568..97e13654 100644 --- a/platformio_orig.ini +++ b/platformio_orig.ini @@ -54,7 +54,7 @@ extra_scripts = pre:build.py otakeyfile = ota.conf lorakeyfile = loraconf.h lmicconfigfile = lmic_config.h -platform_espressif32 = espressif32@5.1.0 +platform_espressif32 = espressif32@5.2.0 monitor_speed = 115200 upload_speed = 115200 ; set by build.py and taken from hal file display_library = ; set by build.py and taken from hal file From 7438400e58402f365921619994cfb9c1d4108c39 Mon Sep 17 00:00:00 2001 From: Verkehrsrot Date: Wed, 19 Oct 2022 13:53:12 +0200 Subject: [PATCH 3/4] Update platformio_orig.ini --- platformio_orig.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio_orig.ini b/platformio_orig.ini index 97e13654..f1ef2568 100644 --- a/platformio_orig.ini +++ b/platformio_orig.ini @@ -54,7 +54,7 @@ extra_scripts = pre:build.py otakeyfile = ota.conf lorakeyfile = loraconf.h lmicconfigfile = lmic_config.h -platform_espressif32 = espressif32@5.2.0 +platform_espressif32 = espressif32@5.1.0 monitor_speed = 115200 upload_speed = 115200 ; set by build.py and taken from hal file display_library = ; set by build.py and taken from hal file From 2e3cc4ec0292769ac99aea44c851e82c76843fb6 Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Mon, 24 Oct 2022 11:15:06 +0200 Subject: [PATCH 4/4] bugfix display layout --- src/display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/display.cpp b/src/display.cpp index 2526e514..f50402ef 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -204,7 +204,7 @@ void dp_refresh(bool nextPage) { if (cfg.wifiscan) dp->printf("WIFI:%-5u", count.wifi_count); else - dp->printf("WIFI:off"); + dp->printf("WIFI:off "); if (cfg.blescan) dp->printf("BLTH:%-5u", count.ble_count); else @@ -213,7 +213,7 @@ void dp_refresh(bool nextPage) { if (cfg.wifiscan) dp->printf("WIFI:%-5u", count.wifi_count); else - dp->printf("WIFI:off"); + dp->printf("WIFI:off "); #elif ((!WIFICOUNTER) && (BLECOUNTER)) if (cfg.blescan) dp->printf("BLTH:%-5u", count.ble_count);