mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-07-28 13:46:36 +00:00
Update CHANGELOG and libraries
This commit is contained in:
parent
a790679466
commit
ed56d9ee42
@ -36,12 +36,14 @@
|
|||||||
- Add configuration for NTP servers and timezone
|
- Add configuration for NTP servers and timezone
|
||||||
|
|
||||||
### Devices
|
### Devices
|
||||||
|
- Add Elecrow ESP32-Terminal 3.5" SPI and RGB
|
||||||
- Add GS-T3E Smart Panel
|
- Add GS-T3E Smart Panel
|
||||||
- Add Lilygo Ttgo Lily Pi ESP32
|
- Add Lilygo Ttgo Lily Pi ESP32
|
||||||
- Add Makerfabs ESP32-S3 SPI
|
- Add Makerfabs ESP32-S3 SPI
|
||||||
- Add Sunton ESP32-S3 TFT 4.3", 5.0" and 7.0"
|
- Add Sunton ESP32-S3 TFT 4.3", 5.0" and 7.0"
|
||||||
- Add Sunton ESP32-2432S028R ESP32-3248S035C ESP32-3248S035R
|
- 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
|
## Bug fixes
|
||||||
- Fix for first touch not working properly
|
- Fix for first touch not working properly
|
||||||
@ -50,10 +52,10 @@
|
|||||||
### Architecture
|
### Architecture
|
||||||
- Moved to Tasmota Arduino 2.0.10 and ESP-IDF 4.4.5 (thanks @Jason2866)
|
- Moved to Tasmota Arduino 2.0.10 and ESP-IDF 4.4.5 (thanks @Jason2866)
|
||||||
- Add Arduino-GFX display driver
|
- 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
|
- 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
|
## v0.6.3
|
||||||
|
@ -254,7 +254,7 @@ typedef void* lv_fs_drv_user_data_t;
|
|||||||
#define LV_IMG_CACHE_DEF_SIZE 1
|
#define LV_IMG_CACHE_DEF_SIZE 1
|
||||||
#endif
|
#endif
|
||||||
#ifndef LV_IMG_CACHE_DEF_SIZE_PSRAM
|
#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
|
#endif
|
||||||
|
|
||||||
/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/
|
/*Declare the type of the user data of image decoder (can be e.g. `void *`, `int`, `struct`)*/
|
||||||
|
@ -75,7 +75,7 @@ build_flags =
|
|||||||
-D HASP_VER_MAJ=0
|
-D HASP_VER_MAJ=0
|
||||||
-D HASP_VER_MIN=7
|
-D HASP_VER_MIN=7
|
||||||
;-D HASP_VER_REV=4
|
;-D HASP_VER_REV=4
|
||||||
-D HASP_VER_REV=0-rc5
|
-D HASP_VER_REV=0-rc6
|
||||||
;-D HASP_VER_REV=4-rc1
|
;-D HASP_VER_REV=4-rc1
|
||||||
${override.build_flags}
|
${override.build_flags}
|
||||||
|
|
||||||
@ -130,4 +130,4 @@ lib_deps =
|
|||||||
|
|
||||||
[stmpe610]
|
[stmpe610]
|
||||||
lib_deps =
|
lib_deps =
|
||||||
adafruit/Adafruit STMPE610@^1.1.4
|
adafruit/Adafruit STMPE610@^1.1.5
|
@ -48,8 +48,8 @@ class TouchLovyanGfx : public BaseTouch {
|
|||||||
void init(int w, int h)
|
void init(int w, int h)
|
||||||
{
|
{
|
||||||
#if defined(TOUCH_SDA) && defined(TOUCH_SCL) && defined(I2C_TOUCH_FREQUENCY)
|
#if defined(TOUCH_SDA) && defined(TOUCH_SCL) && defined(I2C_TOUCH_FREQUENCY)
|
||||||
Wire.begin(TOUCH_SDA, TOUCH_SCL, (uint32_t)I2C_TOUCH_FREQUENCY);
|
// Wire.begin(TOUCH_SDA, TOUCH_SCL, (uint32_t)I2C_TOUCH_FREQUENCY);
|
||||||
touch_scan(Wire);
|
// touch_scan(Wire);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -94,8 +94,8 @@ lib_deps =
|
|||||||
${env.lib_deps}
|
${env.lib_deps}
|
||||||
git+https://github.com/fvanroie/ConsoleInput.git#dev
|
git+https://github.com/fvanroie/ConsoleInput.git#dev
|
||||||
; lorol/LittleFS_esp32@^1.0.6 ; for Arduino v1 only
|
; lorol/LittleFS_esp32@^1.0.6 ; for Arduino v1 only
|
||||||
bxparks/AceButton@^1.9.2 ; GPIO button library
|
bxparks/AceButton@^1.10.1 ; GPIO button library
|
||||||
bblanchon/StreamUtils@^1.6.3 ; for EEPromStream and BufferedTelnetClient
|
bblanchon/StreamUtils@^1.7.3 ; for EEPromStream and BufferedTelnetClient
|
||||||
; knolleary/PubSubClient@^2.8.0 ; MQTT client
|
; knolleary/PubSubClient@^2.8.0 ; MQTT client
|
||||||
|
|
||||||
extra_scripts =
|
extra_scripts =
|
||||||
|
Loading…
x
Reference in New Issue
Block a user