Refactoring
This commit is contained in:
112
README.md
112
README.md
@@ -34,13 +34,14 @@ Others
|
||||
|
||||
## Quick installation with ESP32 flash tool
|
||||
|
||||
M5STACK (Many thanks to DimZen)
|
||||
See INSTALLATION.md
|
||||
|
||||
https://docs.google.com/document/d/17vJmeveNfN0exQy9wKC-5igU8zzNjsuOn1DPuPV_yJA/edit?usp=sharing
|
||||
## RELEASE NOTES
|
||||
see. RELEASENOTES.md file
|
||||
|
||||
TTGO-T4 (older)
|
||||
## Installation from sources
|
||||
|
||||
https://docs.google.com/document/d/1nEezrtXY-8X6mQ1hiZVWDjBVse1sXQg1SlnizaRmJwU/edit?usp=sharing
|
||||
See INSTALLATION.md
|
||||
|
||||
## Screens and shortcuts
|
||||
- Middle button - menu
|
||||
@@ -56,110 +57,7 @@ Screen list
|
||||
- no6. consumption table. Can be used to measure available battery capacity!
|
||||
- no7. debug screen (default off in the menu)
|
||||
|
||||
|
||||

|
||||
|
||||
[](https://www.youtube.com/watch?v=Jg5VP2P58Yg&)
|
||||
|
||||
### v1.8.3 2020-11-28
|
||||
- Automatic shutdown when car goes off
|
||||
- Fixed M5stack speaker noise
|
||||
- Fixed menu, added scroll support
|
||||
|
||||
### v1.8.2 2020-11-25
|
||||
- Removed screen flickering. (via Sprites, esp32 with SRAM is now required!)
|
||||
- Code cleaning. Removed force no/yes redraw mode. Not required with sprites
|
||||
- Arrow for current (based on bat.temperature) pre-drawn charging graph
|
||||
|
||||
### v1.8.1 2020-11-23
|
||||
- Pre-drawn charging graphs (based on coldgates)
|
||||
- Show version in menu
|
||||
|
||||
### v1.8.0 2020-11-20
|
||||
- Support for new device m5stack core1 iot development kit
|
||||
- TTGO T4 is still supported device!
|
||||
|
||||
### v1.7.5 2020-11-17
|
||||
- Settings: Debug screen off/on
|
||||
- Settings: LCD brightness (auto, 20, 50, 100%)
|
||||
- Speed screen: added motor rpm, brake lights indicator
|
||||
- Soc% to kWh is now calibrated for NiroEV/KonaEV 2020
|
||||
- eNiroDashboard speed improvements
|
||||
|
||||
### v1.7.4 2020-11-12
|
||||
- Added default screen option to settings
|
||||
- Initial config for Renault ZOE 22kWh
|
||||
- ODB response analyzer. Please help community to decode unknown values like BMS valves, heater ON switch,...
|
||||
https://docs.google.com/spreadsheets/d/1eT2R8hmsD1hC__9LtnkZ3eDjLcdib9JR-3Myc97jy8M/edit?usp=sharing
|
||||
|
||||
### v1.7.3 2020-11-11
|
||||
- Headlights reminder (if drive mode & headlights are off)
|
||||
|
||||
### v1.7.2 2020-11-10
|
||||
- improved charging graph
|
||||
|
||||
### v1.7.1 2020-10-20
|
||||
- added new screen 1 - auto mode
|
||||
- automatically shows screen 3 - speed when speed is >5kph
|
||||
- screen 5 chargin graph when power kw > 1kW
|
||||
- added bat.fan status and fan feedback in Hz for Ioniq
|
||||
|
||||
### v1.7 2020-09-16
|
||||
- added support for 39.2kWh Hyundai Kona and Kia e-Niro
|
||||
- added initial support for Hyundai Ioniq 28kWh (not working yet)
|
||||
|
||||
### v1.6 2020-06-30
|
||||
- fixed ble device pairing
|
||||
- added command to set protocol ISO 15765-4 CAN (11 bit ID, 500 kbit/s) - some vgate adapters freezes during "init at command" phase
|
||||
|
||||
### v1.5 2020-06-03
|
||||
- added support for different units (miles, fahrenheits, psi)
|
||||
|
||||
### v1.4 2020-05-29
|
||||
- added menu
|
||||
- Pairing with VGATE iCar Pro BLE4 adapter via menu!
|
||||
- Installation with flash tool. You don't have to install Arduino and compile sources :)
|
||||
- New screen 5. Conpumption... Can be used to measure available battery capacity!
|
||||
- Load/Save settings
|
||||
- Flip screen vertical option
|
||||
- Several different improvements
|
||||
|
||||
### v1.1 2020-04-12
|
||||
- added new screens (switch via left button)
|
||||
- screen 0. (blank screen, lcd off)
|
||||
- screen 1. (default) summary info
|
||||
- screen 2. speed kmh + kwh/100km (or kw for discharge)
|
||||
- screen 3. battery cells + battery module temperatures
|
||||
- screen 4. charging graph
|
||||
- added low batery temperature detection for slow charging on 50kW DC (15°C) and UFC >70kW (25°C).
|
||||
|
||||
### v1.0 2020-03-23
|
||||
- first release
|
||||
- basic dashboard
|
||||
|
||||
## About T4
|
||||
ESP32-TTGO-T4
|
||||
https://github.com/fdufnews/ESP32-TTGO-T4
|
||||
|
||||
## Installation from sources
|
||||
- install arduino IDE + ESP32 support
|
||||
- https://github.com/Bodmer/TFT_eSPI - display library
|
||||
- Configure TFT eSPI
|
||||
W:\Documents\Arduino\libraries\TFT_eSP\User_Setup_Select.h
|
||||
```
|
||||
// Comment
|
||||
//#include <User_Setup.h> // Default setup is root library folder
|
||||
// And uncomment
|
||||
#include <User_Setups/Setup22_TTGO_T4_v1.3.h> // Setup file for ESP32 and TTGO T4 version 1.3
|
||||
```
|
||||
|
||||
My configuration
|
||||
- Board ESP32 Dev module
|
||||
- Upload speed 921600
|
||||
- CPU freq: 240MHz (Wifi/BT)
|
||||
- Flash freq: 80MHz
|
||||
- Flash mode: QIO
|
||||
- Flash size 4MB (32mb)
|
||||
- Partion scheme: default 4MB with spiffs
|
||||
- Core debug level: none
|
||||
- PSRAM: disable
|
||||
|
||||
Reference in New Issue
Block a user