esphome 2025.3.0b5__py3-none-any.whl → 2025.3.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- esphome/components/ft63x6/ft63x6.cpp +4 -2
- esphome/components/lvgl/lvgl_esphome.cpp +2 -4
- esphome/const.py +1 -1
- {esphome-2025.3.0b5.dist-info → esphome-2025.3.1.dist-info}/METADATA +1 -1
- {esphome-2025.3.0b5.dist-info → esphome-2025.3.1.dist-info}/RECORD +9 -9
- {esphome-2025.3.0b5.dist-info → esphome-2025.3.1.dist-info}/LICENSE +0 -0
- {esphome-2025.3.0b5.dist-info → esphome-2025.3.1.dist-info}/WHEEL +0 -0
- {esphome-2025.3.0b5.dist-info → esphome-2025.3.1.dist-info}/entry_points.txt +0 -0
- {esphome-2025.3.0b5.dist-info → esphome-2025.3.1.dist-info}/top_level.txt +0 -0
@@ -42,10 +42,10 @@ void FT63X6Touchscreen::setup() {
|
|
42
42
|
|
43
43
|
// Get touch resolution
|
44
44
|
if (this->x_raw_max_ == this->x_raw_min_) {
|
45
|
-
this->x_raw_max_ =
|
45
|
+
this->x_raw_max_ = this->display_->get_native_width();
|
46
46
|
}
|
47
47
|
if (this->y_raw_max_ == this->y_raw_min_) {
|
48
|
-
this->y_raw_max_ =
|
48
|
+
this->y_raw_max_ = this->display_->get_native_height();
|
49
49
|
}
|
50
50
|
uint8_t chip_id = this->read_byte_(FT63X6_ADDR_CHIP_ID);
|
51
51
|
if (chip_id != 0) {
|
@@ -71,6 +71,8 @@ void FT63X6Touchscreen::dump_config() {
|
|
71
71
|
LOG_I2C_DEVICE(this);
|
72
72
|
LOG_PIN(" Interrupt Pin: ", this->interrupt_pin_);
|
73
73
|
LOG_PIN(" Reset Pin: ", this->reset_pin_);
|
74
|
+
ESP_LOGCONFIG(TAG, " X Calibration: [%d, %d]", this->x_raw_min_, this->x_raw_max_);
|
75
|
+
ESP_LOGCONFIG(TAG, " Y Calibration: [%d, %d]", this->y_raw_min_, this->y_raw_max_);
|
74
76
|
LOG_UPDATE_INTERVAL(this);
|
75
77
|
}
|
76
78
|
|
@@ -423,8 +423,6 @@ LvglComponent::LvglComponent(std::vector<display::Display *> displays, float buf
|
|
423
423
|
this->disp_drv_.full_refresh = this->full_refresh_;
|
424
424
|
this->disp_drv_.flush_cb = static_flush_cb;
|
425
425
|
this->disp_drv_.rounder_cb = rounder_cb;
|
426
|
-
this->disp_drv_.hor_res = 0;
|
427
|
-
this->disp_drv_.ver_res = 0;
|
428
426
|
this->disp_ = lv_disp_drv_register(&this->disp_drv_);
|
429
427
|
}
|
430
428
|
|
@@ -441,14 +439,14 @@ void LvglComponent::setup() {
|
|
441
439
|
this->status_set_error("Memory allocation failure");
|
442
440
|
return;
|
443
441
|
}
|
444
|
-
lv_disp_draw_buf_init(&this->draw_buf_, buffer, nullptr,
|
442
|
+
lv_disp_draw_buf_init(&this->draw_buf_, buffer, nullptr, buffer_pixels);
|
445
443
|
this->disp_drv_.hor_res = width;
|
446
444
|
this->disp_drv_.ver_res = height;
|
447
445
|
// this->setup_driver_(display->get_width(), display->get_height());
|
448
446
|
lv_disp_drv_update(this->disp_, &this->disp_drv_);
|
449
447
|
this->rotation = display->get_rotation();
|
450
448
|
if (this->rotation != display::DISPLAY_ROTATION_0_DEGREES) {
|
451
|
-
this->rotate_buf_ = static_cast<lv_color_t *>(lv_custom_mem_alloc(
|
449
|
+
this->rotate_buf_ = static_cast<lv_color_t *>(lv_custom_mem_alloc(buf_bytes)); // NOLINT
|
452
450
|
if (this->rotate_buf_ == nullptr) {
|
453
451
|
this->mark_failed();
|
454
452
|
this->status_set_error("Memory allocation failure");
|
esphome/const.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: esphome
|
3
|
-
Version: 2025.3.
|
3
|
+
Version: 2025.3.1
|
4
4
|
Summary: ESPHome is a system to configure your microcontrollers by simple yet powerful configuration files and control them remotely through Home Automation systems.
|
5
5
|
Author-email: The ESPHome Authors <esphome@nabucasa.com>
|
6
6
|
License: MIT
|
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=GePHUM7xdXb_Pil59SHVsXg2F4VBPgkH-Fz2PDX8Z54,1873
|
|
5
5
|
esphome/config.py,sha256=fFrDYbhWY1xn_onAl_0jwlg9D8NkK_FdKULTlnjZtxs,39832
|
6
6
|
esphome/config_helpers.py,sha256=MKf_wzO35nn41FvigXE0iYKDslPgL2ruf8R-EPtTT2I,3256
|
7
7
|
esphome/config_validation.py,sha256=9KOhLHQXmDbahg6zHynXfXDfAL2bciu35_SHxHrzZ2M,63705
|
8
|
-
esphome/const.py,sha256=
|
8
|
+
esphome/const.py,sha256=Z-fLrCBLlybH5KtmXHQNv8bjBDCoOb0JPyjE6tSTtdI,40762
|
9
9
|
esphome/coroutine.py,sha256=j_14z8dIIzIBeuNO30D4c1RJvMMt1xZFZ58Evd-EvJA,9344
|
10
10
|
esphome/cpp_generator.py,sha256=1g-y3fxWSrd5Kpbz6DrJXaQajjuwQiTIaTRIz9n7svI,31237
|
11
11
|
esphome/cpp_helpers.py,sha256=6C2vNbOIhZKi43xRVlk5hp9GfshfBn-rc5D_ZFUEYaE,4801
|
@@ -964,7 +964,7 @@ esphome/components/ft5x06/touchscreen/__init__.py,sha256=AmmuZTCHzhibpvwG0NLZN-i
|
|
964
964
|
esphome/components/ft5x06/touchscreen/ft5x06_touchscreen.cpp,sha256=a9wlKitnVOj1XqU-CGQkpbsgtRTXpBAnuMkqjmOBuA4,3021
|
965
965
|
esphome/components/ft5x06/touchscreen/ft5x06_touchscreen.h,sha256=Zt6J5AwmFm26bZQT0vM4cI_1QFC8saZi8hq_JxfAFvc,1344
|
966
966
|
esphome/components/ft63x6/__init__.py,sha256=AZTVj3nuR8bEezWlL7fHudnq11QeX_4gfbhFCcdCGxc,29
|
967
|
-
esphome/components/ft63x6/ft63x6.cpp,sha256=
|
967
|
+
esphome/components/ft63x6/ft63x6.cpp,sha256=5oUdMMmg3lN0q7oUKmodYDIOwSmCMUWBAipuqPsvN_4,4896
|
968
968
|
esphome/components/ft63x6/ft63x6.h,sha256=7OeQW8-Qa3LzA3ewowTHjhQpsGoy_OlQK-O6jD0euWU,1469
|
969
969
|
esphome/components/ft63x6/touchscreen.py,sha256=F0CIxxL4Hvfc9RQGm6dlBO8etW0_T0a7cmqWUa6qwik,1450
|
970
970
|
esphome/components/fujitsu_general/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1524,7 +1524,7 @@ esphome/components/lvgl/helpers.py,sha256=XI3C5IHwoSVlgR32kMxeXTZWK6iW112nmWv5wB
|
|
1524
1524
|
esphome/components/lvgl/keypads.py,sha256=jtQjAG4vbTzI5Pr1IBfrEEPzV_0k4wkKfCMfsef6VT4,2124
|
1525
1525
|
esphome/components/lvgl/lv_validation.py,sha256=IynpHUX1ynyEeylQqEDFMaBM6efeSna0Kqd_XCUgebs,13716
|
1526
1526
|
esphome/components/lvgl/lvcode.py,sha256=IkvCq59dR0RYJ-wKeO95zJEX-vNBWUkHEX5tJJfvv-Q,10018
|
1527
|
-
esphome/components/lvgl/lvgl_esphome.cpp,sha256=
|
1527
|
+
esphome/components/lvgl/lvgl_esphome.cpp,sha256=ZxJ-bm7wTxIbNST4uPLlhvGysfqOVqKyg1AOJzQe0aE,19253
|
1528
1528
|
esphome/components/lvgl/lvgl_esphome.h,sha256=0jUIbdD4b5dLP_fd6fl5GWcsPI_p3ulvIVkAS5Hh24A,13270
|
1529
1529
|
esphome/components/lvgl/lvgl_hal.h,sha256=aZqWpSmKKAB-ZfNxxgxjgASTtLpAZjXJKuoTiPB0qqU,431
|
1530
1530
|
esphome/components/lvgl/lvgl_proxy.h,sha256=JPmVBVh5zD5nraJCN7PqXVmQQlc4CPJe_X9tA6IAtXQ,547
|
@@ -3474,9 +3474,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3474
3474
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3475
3475
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3476
3476
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3477
|
-
esphome-2025.3.
|
3478
|
-
esphome-2025.3.
|
3479
|
-
esphome-2025.3.
|
3480
|
-
esphome-2025.3.
|
3481
|
-
esphome-2025.3.
|
3482
|
-
esphome-2025.3.
|
3477
|
+
esphome-2025.3.1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3478
|
+
esphome-2025.3.1.dist-info/METADATA,sha256=CwwM_TlOJ86BSoNW80T3-5088bU4a_ElSaJs1_FtJe4,3689
|
3479
|
+
esphome-2025.3.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
3480
|
+
esphome-2025.3.1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3481
|
+
esphome-2025.3.1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3482
|
+
esphome-2025.3.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|