2.1.1
This commit is contained in:
@@ -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
|
||||
|
||||
4
config.h
4
config.h
@@ -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 */
|
||||
|
||||
BIN
dist/m5stack_core1/evDash.ino.bin
vendored
BIN
dist/m5stack_core1/evDash.ino.bin
vendored
Binary file not shown.
BIN
dist/ttgo_t4_v13/evDash.ino.bin
vendored
BIN
dist/ttgo_t4_v13/evDash.ino.bin
vendored
Binary file not shown.
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user