Skip to content

Commit

Permalink
Update CHANGELOG and libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
fvanroie committed Jul 18, 2023
1 parent a790679 commit ed56d9e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@
- Add configuration for NTP servers and timezone

### Devices
- Add Elecrow ESP32-Terminal 3.5" SPI and RGB
- Add GS-T3E Smart Panel
- Add Lilygo Ttgo Lily Pi ESP32
- Add Makerfabs ESP32-S3 SPI
- Add Sunton ESP32-S3 TFT 4.3", 5.0" and 7.0"
- Add Sunton ESP32-2432S028R ESP32-3248S035C ESP32-3248S035R
- Add support for Wireless-Tag WT32-SC01 Plus and WT-86-32-3ZW1
- Add support for Wireless-Tag WT32-SC01 Plus and WT32S3-86V
- Deprecate support for WT-86-32-3ZW1 with ESP32-S2

## Bug fixes
- Fix for first touch not working properly
Expand All @@ -50,10 +52,10 @@
### Architecture
- Moved to Tasmota Arduino 2.0.10 and ESP-IDF 4.4.5 (thanks @Jason2866)
- Add Arduino-GFX display driver
- Add support for ESP32-S3 devices
- Add support for ESP32-S3 and ESP32-C3 devices
- Deprecation of support for ESP32-S2 devices due to lack of sRAM

Updated libraries to ArduinoJson 6.21.2, ArduinoStreamUtils 1.7.0, TFT_eSPI 2.5.0, LovyanGFX 1.1.7 and SimpleFTPServer 2.1.5
Updated libraries to ArduinoJson 6.21.2, ArduinoStreamUtils 1.7.3, AceButton 1.10.1, TFT_eSPI 2.5.0, LovyanGFX 1.1.7 and Adafruit STMPE610 1.1.5 and SimpleFTPServer 2.1.5


## v0.6.3
Expand Down
2 changes: 1 addition & 1 deletion include/lv_conf_v7.h
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ typedef void* lv_fs_drv_user_data_t;
#define LV_IMG_CACHE_DEF_SIZE 1
#endif
#ifndef LV_IMG_CACHE_DEF_SIZE_PSRAM
#define LV_IMG_CACHE_DEF_SIZE_PSRAM 20 // special openHASP setting when PSRAM is used
#define LV_IMG_CACHE_DEF_SIZE_PSRAM 12 // special openHASP setting when PSRAM is used
#endif

/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/
Expand Down
4 changes: 2 additions & 2 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ build_flags =
-D HASP_VER_MAJ=0
-D HASP_VER_MIN=7
;-D HASP_VER_REV=4
-D HASP_VER_REV=0-rc5
-D HASP_VER_REV=0-rc6
;-D HASP_VER_REV=4-rc1
${override.build_flags}

Expand Down Expand Up @@ -130,4 +130,4 @@ lib_deps =

[stmpe610]
lib_deps =
adafruit/Adafruit STMPE610@^1.1.4
adafruit/Adafruit STMPE610@^1.1.5
4 changes: 2 additions & 2 deletions src/drv/touch/touch_driver_lovyangfx.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ class TouchLovyanGfx : public BaseTouch {
void init(int w, int h)
{
#if defined(TOUCH_SDA) && defined(TOUCH_SCL) && defined(I2C_TOUCH_FREQUENCY)
Wire.begin(TOUCH_SDA, TOUCH_SCL, (uint32_t)I2C_TOUCH_FREQUENCY);
touch_scan(Wire);
// Wire.begin(TOUCH_SDA, TOUCH_SCL, (uint32_t)I2C_TOUCH_FREQUENCY);
// touch_scan(Wire);
#endif
}

Expand Down
4 changes: 2 additions & 2 deletions user_setups/esp32/_esp32.ini
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ lib_deps =
${env.lib_deps}
git+https://github.com/fvanroie/ConsoleInput.git#dev
; lorol/LittleFS_esp32@^1.0.6 ; for Arduino v1 only
bxparks/AceButton@^1.9.2 ; GPIO button library
bblanchon/StreamUtils@^1.6.3 ; for EEPromStream and BufferedTelnetClient
bxparks/AceButton@^1.10.1 ; GPIO button library
bblanchon/StreamUtils@^1.7.3 ; for EEPromStream and BufferedTelnetClient
; knolleary/PubSubClient@^2.8.0 ; MQTT client

extra_scripts =
Expand Down

0 comments on commit ed56d9e

Please sign in to comment.