v2.0 project renamed to evDash
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# KIA ENIRO DASHBOARD
|
# evDash (older nama enirodashboard)
|
||||||
|
|
||||||
Supported devices
|
Supported devices
|
||||||
1. LILYGO TTGO T4 v1.3
|
1. LILYGO TTGO T4 v1.3
|
||||||
@@ -57,7 +57,7 @@ Screen list
|
|||||||
- no6. consumption table. Can be used to measure available battery capacity!
|
- no6. consumption table. Can be used to measure available battery capacity!
|
||||||
- no7. debug screen (default off in the menu)
|
- no7. debug screen (default off in the menu)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
[](https://www.youtube.com/watch?v=Jg5VP2P58Yg&)
|
[](https://www.youtube.com/watch?v=Jg5VP2P58Yg&)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,8 @@
|
|||||||
# RELEASE NOTES
|
# RELEASE NOTES
|
||||||
|
|
||||||
|
### v2.0.0 2020-12-02
|
||||||
|
- Project renamed from eNiroDashboard to evDash
|
||||||
|
|
||||||
### v1.9.0 2020-11-30
|
### v1.9.0 2020-11-30
|
||||||
- Refactoring (classes)
|
- Refactoring (classes)
|
||||||
- SIM800L (m5stack) code from https://github.com/kolaCZek
|
- SIM800L (m5stack) code from https://github.com/kolaCZek
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
|
|
||||||
rem slow GUI performance via arduino-cli yet
|
rem slow GUI performance via arduino-cli yet
|
||||||
|
|
||||||
arduino-cli compile -v -b esp32:esp32:esp32wrover --build-properties build.extra_flags=-BOARD_TTGO_T4=1 -v enirodashboard.ino
|
arduino-cli compile -v -b esp32:esp32:esp32wrover --build-properties build.extra_flags=-BOARD_TTGO_T4=1 -v evDash.ino
|
||||||
rem arduino-cli compile -v -b esp32:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app,CPUFreq=80 --build-properties build.extra_flags=-BOARD_TTGO_T4=1 -v enirodashboard.ino
|
rem arduino-cli compile -v -b esp32:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app,CPUFreq=80 --build-properties build.extra_flags=-BOARD_TTGO_T4=1 -v evDash.ino
|
||||||
rem rduino-cli upload -b esp32:esp32:esp32 -v -p COM6
|
rem rduino-cli upload -b esp32:esp32:esp32 -v -p COM6
|
||||||
|
|
||||||
rem arduino-cli compile -v -b esp32:esp32:m5stack-core-esp32 --build-properties build.extra_flags=-BOARD_M5STACK=1 enirodashboard.ino
|
rem arduino-cli compile -v -b esp32:esp32:m5stack-core-esp32 --build-properties build.extra_flags=-BOARD_M5STACK=1 evDash.ino
|
||||||
rem arduino-cli upload -v -b esp32:esp32:m5stack-core-esp32 -p COM9
|
rem arduino-cli upload -v -b esp32:esp32:m5stack-core-esp32 -p COM9
|
||||||
|
|
||||||
rem arduino-cli compile -v -b esp32:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app,CPUFreq=80 --build-properties build.extra_flags=-BOARD_M5STACK=1 -v enirodashboard.ino
|
rem arduino-cli compile -v -b esp32:esp32:esp32:PSRAM=enabled,PartitionScheme=huge_app,CPUFreq=80 --build-properties build.extra_flags=-BOARD_M5STACK=1 -v evDash.ino
|
||||||
rem arduino-cli upload -b esp32:esp32:esp32 -v -p COM9
|
rem arduino-cli upload -b esp32:esp32:esp32 -v -p COM9
|
||||||
|
|
||||||
pause
|
pause
|
||||||
4
config.h
4
config.h
@@ -3,8 +3,8 @@
|
|||||||
|
|
||||||
#include <BLEDevice.h>
|
#include <BLEDevice.h>
|
||||||
|
|
||||||
#define APP_VERSION "v1.9.0b"
|
#define APP_VERSION "v2.0.0"
|
||||||
#define APP_RELEASE_DATE "2020-11-30"
|
#define APP_RELEASE_DATE "2020-12-02"
|
||||||
|
|
||||||
// TFT COLORS FOR TTGO
|
// TFT COLORS FOR TTGO
|
||||||
#define TFT_BLACK 0x0000 /* 0, 0, 0 */
|
#define TFT_BLACK 0x0000 /* 0, 0, 0 */
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,4 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
|
* 2020-12-02
|
||||||
|
* Project renamed from eNiroDashboard to evDash
|
||||||
|
*
|
||||||
!! working only with OBD BLE 4.0 adapters
|
!! working only with OBD BLE 4.0 adapters
|
||||||
!! Supported adapter is Vgate ICar Pro (must be BLE4.0 version)
|
!! Supported adapter is Vgate ICar Pro (must be BLE4.0 version)
|
||||||
!! Not working with standard BLUETOOTH 3 adapters
|
!! Not working with standard BLUETOOTH 3 adapters
|
||||||
@@ -17,8 +20,8 @@
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
// Boards
|
// Boards
|
||||||
//#define BOARD_TTGO_T4
|
#define BOARD_TTGO_T4
|
||||||
#define BOARD_M5STACK_CORE
|
//#define BOARD_M5STACK_CORE
|
||||||
|
|
||||||
//#define SIM800L_ENABLED
|
//#define SIM800L_ENABLED
|
||||||
//#define SD_ENABLED
|
//#define SD_ENABLED
|
||||||
Reference in New Issue
Block a user