v2.0 project renamed to evDash

This commit is contained in:
Lubos Petrovic
2020-12-02 08:45:18 +01:00
parent 2f2495d229
commit 02ac50199c
9 changed files with 17 additions and 11 deletions

View File

@@ -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)
![image](https://github.com/nickn17/enirodashboard/blob/master/screenshots/v1.jpg) ![image](https://github.com/nickn17/evDash/blob/master/screenshots/v1.jpg)
[![Watch the video](https://github.com/nickn17/enirodashboard/blob/master/screenshots/v0.9.jpg)](https://www.youtube.com/watch?v=Jg5VP2P58Yg&) [![Watch the video](https://github.com/nickn17/evDash/blob/master/screenshots/v0.9.jpg)](https://www.youtube.com/watch?v=Jg5VP2P58Yg&)

View File

@@ -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

View File

@@ -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

View File

@@ -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 */

View File

@@ -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