This commit is contained in:
Lubos Petrovic
2020-12-14 11:44:28 +01:00
parent d7c14bd3dc
commit 9dad64d3fb
5 changed files with 6 additions and 5 deletions

View File

@@ -1,6 +1,8 @@
# RELEASE NOTES
### Next version
### v2.1.1 2020-12-14
- tech refactoring: `hexToDecFromResponse`, `decFromResponse`
- added support for GPS module on HW UART (user HWUART=2 for m5stack NEO-M8N)
- sd card logging - added gps sat/lat/lot/alt + SD filename + time is synchronized from GPS

View File

@@ -3,8 +3,8 @@
#include <BLEDevice.h>
#define APP_VERSION "v2.1.0"
#define APP_RELEASE_DATE "2020-12-06"
#define APP_VERSION "v2.1.1"
#define APP_RELEASE_DATE "2020-12-14"
// TFT COLORS FOR TTGO
#define TFT_BLACK 0x0000 /* 0, 0, 0 */

Binary file not shown.

Binary file not shown.

View File

@@ -31,8 +31,8 @@
////////////////////////////////////////////////////////////
// Boards
//#define BOARD_TTGO_T4
#define BOARD_M5STACK_CORE
#define BOARD_TTGO_T4
//#define BOARD_M5STACK_CORE
//#define SIM800L_ENABLED
@@ -498,7 +498,6 @@ bool sendDataViaGPRS() {
jsonData["batInletC"] = liveData->params.batInletC;
jsonData["batFanStatus"] = liveData->params.batFanStatus;
jsonData["speedKmh"] = liveData->params.speedKmh;
jsonData["odoKm"] = liveData->params.odoKm;
jsonData["cumulativeEnergyChargedKWh"] = liveData->params.cumulativeEnergyChargedKWh;
jsonData["cumulativeEnergyDischargedKWh"] = liveData->params.cumulativeEnergyDischargedKWh;