esphome 2025.7.0b1__py3-none-any.whl → 2025.7.0b3__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/api/__init__.py +19 -5
- esphome/components/api/api_connection.cpp +53 -175
- esphome/components/api/api_connection.h +28 -25
- esphome/components/api/api_frame_helper.cpp +2 -3
- esphome/components/api/api_frame_helper.h +7 -9
- esphome/components/api/api_pb2.cpp +1862 -5133
- esphome/components/api/api_pb2.h +291 -533
- esphome/components/api/api_pb2_dump.cpp +99 -0
- esphome/components/api/api_pb2_service.cpp +4 -0
- esphome/components/api/api_pb2_service.h +6 -0
- esphome/components/api/api_server.cpp +2 -9
- esphome/components/api/api_server.h +7 -33
- esphome/components/api/custom_api_device.h +8 -0
- esphome/components/api/list_entities.cpp +2 -0
- esphome/components/api/list_entities.h +3 -1
- esphome/components/api/proto.h +506 -23
- esphome/components/api/user_services.h +2 -0
- esphome/components/debug/debug_esp32.cpp +2 -0
- esphome/components/esp32/__init__.py +1 -0
- esphome/components/esp32_camera/__init__.py +1 -1
- esphome/components/esp32_touch/esp32_touch_v1.cpp +12 -10
- esphome/components/esp8266/__init__.py +1 -0
- esphome/components/esp_ldo/__init__.py +10 -8
- esphome/components/esp_ldo/esp_ldo.h +3 -0
- esphome/components/gpio/binary_sensor/__init__.py +24 -3
- esphome/components/host/__init__.py +1 -0
- esphome/components/i2s_audio/speaker/__init__.py +1 -1
- esphome/components/ld2410/ld2410.cpp +12 -28
- esphome/components/ld2420/binary_sensor/ld2420_binary_sensor.cpp +2 -2
- esphome/components/ld2420/button/reconfig_buttons.cpp +1 -1
- esphome/components/ld2420/ld2420.cpp +66 -57
- esphome/components/ld2420/ld2420.h +9 -11
- esphome/components/ld2420/number/gate_config_number.cpp +1 -1
- esphome/components/ld2420/select/operating_mode_select.cpp +1 -1
- esphome/components/ld2420/sensor/ld2420_sensor.cpp +2 -2
- esphome/components/ld2420/text_sensor/text_sensor.cpp +2 -2
- esphome/components/libretiny/__init__.py +1 -0
- esphome/components/lvgl/widgets/meter.py +20 -13
- esphome/components/mqtt/mqtt_backend_esp32.cpp +6 -2
- esphome/components/packet_transport/packet_transport.cpp +3 -0
- esphome/components/rp2040/__init__.py +1 -0
- esphome/components/substitutions/__init__.py +5 -2
- esphome/components/sx126x/__init__.py +3 -3
- esphome/components/sx127x/__init__.py +2 -2
- esphome/components/usb_host/usb_host_client.cpp +10 -10
- esphome/components/usb_uart/cp210x.cpp +1 -1
- esphome/components/usb_uart/usb_uart.cpp +41 -44
- esphome/components/usb_uart/usb_uart.h +4 -3
- esphome/const.py +1 -1
- esphome/core/component.cpp +8 -8
- esphome/core/component_iterator.cpp +4 -2
- esphome/core/component_iterator.h +3 -3
- esphome/core/defines.h +1 -1
- esphome/core/entity_helpers.py +6 -0
- esphome/core/helpers.h +1 -1
- esphome/core/scheduler.cpp +9 -12
- esphome/core/scheduler.h +0 -3
- esphome/wizard.py +1 -1
- {esphome-2025.7.0b1.dist-info → esphome-2025.7.0b3.dist-info}/METADATA +2 -2
- {esphome-2025.7.0b1.dist-info → esphome-2025.7.0b3.dist-info}/RECORD +64 -65
- esphome/components/api/api_pb2_size.h +0 -359
- {esphome-2025.7.0b1.dist-info → esphome-2025.7.0b3.dist-info}/WHEEL +0 -0
- {esphome-2025.7.0b1.dist-info → esphome-2025.7.0b3.dist-info}/entry_points.txt +0 -0
- {esphome-2025.7.0b1.dist-info → esphome-2025.7.0b3.dist-info}/licenses/LICENSE +0 -0
- {esphome-2025.7.0b1.dist-info → esphome-2025.7.0b3.dist-info}/top_level.txt +0 -0
esphome/core/scheduler.cpp
CHANGED
|
@@ -66,10 +66,8 @@ void HOT Scheduler::set_timer_common_(Component *component, SchedulerItem::Type
|
|
|
66
66
|
|
|
67
67
|
if (delay == SCHEDULER_DONT_RUN) {
|
|
68
68
|
// Still need to cancel existing timer if name is not empty
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
this->cancel_item_locked_(component, name_cstr, type);
|
|
72
|
-
}
|
|
69
|
+
LockGuard guard{this->lock_};
|
|
70
|
+
this->cancel_item_locked_(component, name_cstr, type);
|
|
73
71
|
return;
|
|
74
72
|
}
|
|
75
73
|
|
|
@@ -125,10 +123,8 @@ void HOT Scheduler::set_timer_common_(Component *component, SchedulerItem::Type
|
|
|
125
123
|
|
|
126
124
|
LockGuard guard{this->lock_};
|
|
127
125
|
// If name is provided, do atomic cancel-and-add
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
this->cancel_item_locked_(component, name_cstr, type);
|
|
131
|
-
}
|
|
126
|
+
// Cancel existing items
|
|
127
|
+
this->cancel_item_locked_(component, name_cstr, type);
|
|
132
128
|
// Add new item directly to to_add_
|
|
133
129
|
// since we have the lock held
|
|
134
130
|
this->to_add_.push_back(std::move(item));
|
|
@@ -442,10 +438,6 @@ bool HOT Scheduler::cancel_item_(Component *component, bool is_static_string, co
|
|
|
442
438
|
// Get the name as const char*
|
|
443
439
|
const char *name_cstr = this->get_name_cstr_(is_static_string, name_ptr);
|
|
444
440
|
|
|
445
|
-
// Handle null or empty names
|
|
446
|
-
if (!this->is_name_valid_(name_cstr))
|
|
447
|
-
return false;
|
|
448
|
-
|
|
449
441
|
// obtain lock because this function iterates and can be called from non-loop task context
|
|
450
442
|
LockGuard guard{this->lock_};
|
|
451
443
|
return this->cancel_item_locked_(component, name_cstr, type);
|
|
@@ -453,6 +445,11 @@ bool HOT Scheduler::cancel_item_(Component *component, bool is_static_string, co
|
|
|
453
445
|
|
|
454
446
|
// Helper to cancel items by name - must be called with lock held
|
|
455
447
|
bool HOT Scheduler::cancel_item_locked_(Component *component, const char *name_cstr, SchedulerItem::Type type) {
|
|
448
|
+
// Early return if name is invalid - no items to cancel
|
|
449
|
+
if (name_cstr == nullptr || name_cstr[0] == '\0') {
|
|
450
|
+
return false;
|
|
451
|
+
}
|
|
452
|
+
|
|
456
453
|
size_t total_cancelled = 0;
|
|
457
454
|
|
|
458
455
|
// Check all containers for matching items
|
esphome/core/scheduler.h
CHANGED
|
@@ -150,9 +150,6 @@ class Scheduler {
|
|
|
150
150
|
return is_static_string ? static_cast<const char *>(name_ptr) : static_cast<const std::string *>(name_ptr)->c_str();
|
|
151
151
|
}
|
|
152
152
|
|
|
153
|
-
// Helper to check if a name is valid (not null and not empty)
|
|
154
|
-
inline bool is_name_valid_(const char *name) { return name != nullptr && name[0] != '\0'; }
|
|
155
|
-
|
|
156
153
|
// Common implementation for cancel operations
|
|
157
154
|
bool cancel_item_(Component *component, bool is_static_string, const void *name_ptr, SchedulerItem::Type type);
|
|
158
155
|
|
esphome/wizard.py
CHANGED
|
@@ -411,7 +411,7 @@ def wizard(path):
|
|
|
411
411
|
safe_print("Options:")
|
|
412
412
|
for board_id, board_data in boards_list:
|
|
413
413
|
safe_print(f" - {board_id} - {board_data['name']}")
|
|
414
|
-
boards.append(board_id)
|
|
414
|
+
boards.append(board_id.lower())
|
|
415
415
|
|
|
416
416
|
while True:
|
|
417
417
|
board = safe_input(color(AnsiFore.BOLD_WHITE, "(board): "))
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: esphome
|
|
3
|
-
Version: 2025.7.
|
|
3
|
+
Version: 2025.7.0b3
|
|
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@openhomefoundation.org>
|
|
6
6
|
License: MIT
|
|
@@ -38,7 +38,7 @@ Requires-Dist: platformio==6.1.18
|
|
|
38
38
|
Requires-Dist: esptool==4.9.0
|
|
39
39
|
Requires-Dist: click==8.1.7
|
|
40
40
|
Requires-Dist: esphome-dashboard==20250514.0
|
|
41
|
-
Requires-Dist: aioesphomeapi==34.2.
|
|
41
|
+
Requires-Dist: aioesphomeapi==34.2.1
|
|
42
42
|
Requires-Dist: zeroconf==0.147.0
|
|
43
43
|
Requires-Dist: puremagic==1.30
|
|
44
44
|
Requires-Dist: ruamel.yaml==0.18.14
|
|
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=H_WB4rj0uEowvlhEb31EjJQwutLQ5CQkJIsNgDK-wx8,1917
|
|
|
5
5
|
esphome/config.py,sha256=b-Gh-DEx_pax0ZKqHTKb5gmMIvaQA71bJvE-15AI0JI,42211
|
|
6
6
|
esphome/config_helpers.py,sha256=BpyuWRxj5edJGIW7VP4S59i4I8g8baSlWpNyu6nB_uM,5413
|
|
7
7
|
esphome/config_validation.py,sha256=_SMAcS_AhMh0kaLki86hjPZp5b95culJZtQePqoL_fU,63712
|
|
8
|
-
esphome/const.py,sha256=
|
|
8
|
+
esphome/const.py,sha256=9UDpVL3euqlC_YJOtTLYHs4MpUCqRjI8hMV_71Asw8M,43369
|
|
9
9
|
esphome/coroutine.py,sha256=HNBqqhaTbpvsOI19bTXltxJCMVtoeqZPe4qTf4CKkAc,9309
|
|
10
10
|
esphome/cpp_generator.py,sha256=khmyuRIOc-ST9zIZjX7uOWLy9sSJhk4C2KexoBv51uk,31946
|
|
11
11
|
esphome/cpp_helpers.py,sha256=P9FVGpid75_UcKxIf-sj7GbhWGQNRcBm_2XVF3r7NtU,3998
|
|
@@ -27,7 +27,7 @@ esphome/types.py,sha256=hnt4C_y0BR9PiWRluaDom1L_afl3lgMma8AMASbJAbM,394
|
|
|
27
27
|
esphome/util.py,sha256=eIXhVyTcsgzUS9AwVmvlDgHDLuKsgFN-mjPO0SL87QQ,9298
|
|
28
28
|
esphome/voluptuous_schema.py,sha256=tQUOLvVec6v4pxfWpa8CMgXqBqomuqUUYEJqCJOPhNs,9417
|
|
29
29
|
esphome/vscode.py,sha256=pKBx_9jmQlRJB1xiqjWq2-pFhXae8VNSFGYoqxRBMkw,4279
|
|
30
|
-
esphome/wizard.py,sha256=
|
|
30
|
+
esphome/wizard.py,sha256=kOA1gdjgt1mCg5Le5ISOgrqo1s_craAHSIWxMZpc03U,15859
|
|
31
31
|
esphome/writer.py,sha256=Btr0GtSpag_rLLD7SCwCswzqKxgq2RDrUEHJEWkMCCY,11718
|
|
32
32
|
esphome/yaml_util.py,sha256=xATfWU3Q0bhmncp_M2gRJUIdp3giHYXSNfJAVeg7m-4,23158
|
|
33
33
|
esphome/zeroconf.py,sha256=dy3aWh1Lf4Sh5e7Izlq30FkdzAKWA6IGvZkXuxYrxFE,6511
|
|
@@ -182,31 +182,30 @@ esphome/components/apds9960/apds9960.cpp,sha256=L_iAjTdTdlgufwpn_v4CQ-Df3Ya7k-tR
|
|
|
182
182
|
esphome/components/apds9960/apds9960.h,sha256=oFrXPQrPDS16gNSVdN1n6SKuvjwc9LdvpKJckr5Tbdc,2136
|
|
183
183
|
esphome/components/apds9960/binary_sensor.py,sha256=MvCYb6pTgOU48TMm_YhN6uHKkoFKFvhma3lwQQD9xfM,787
|
|
184
184
|
esphome/components/apds9960/sensor.py,sha256=vUPm5H_IFROftGlMJWfgqSzm0IeLpYh5DvtA_DL1Amk,872
|
|
185
|
-
esphome/components/api/__init__.py,sha256=
|
|
186
|
-
esphome/components/api/api_connection.cpp,sha256=
|
|
187
|
-
esphome/components/api/api_connection.h,sha256=
|
|
188
|
-
esphome/components/api/api_frame_helper.cpp,sha256=
|
|
189
|
-
esphome/components/api/api_frame_helper.h,sha256=
|
|
185
|
+
esphome/components/api/__init__.py,sha256=c6z0YUDVDmGpZiiNAsiqiuheib4qv8cw1NfCL9OvVcA,12311
|
|
186
|
+
esphome/components/api/api_connection.cpp,sha256=O-1osGKN7dqC6X179V28lZfp0ipfDW-9FyEDrFai1n8,80703
|
|
187
|
+
esphome/components/api/api_connection.h,sha256=X57XY_kYpEcZdYpx1ShwLte_8jnnXq6me8K0-Y_M-lU,30537
|
|
188
|
+
esphome/components/api/api_frame_helper.cpp,sha256=fAt3UqdHCJSSggcJm1dqBz46PTbJS6lLrhwgXE-pZvw,38065
|
|
189
|
+
esphome/components/api/api_frame_helper.h,sha256=p6af-nRWvSLG4Vimtjzw2BKZJiCts9mknurSYZTeNsM,10293
|
|
190
190
|
esphome/components/api/api_noise_context.h,sha256=y_3hWMKXtKxyCwZ8cKQjn3gQqenaAX5DhcCFQ6kBiPc,606
|
|
191
|
-
esphome/components/api/api_pb2.cpp,sha256=
|
|
192
|
-
esphome/components/api/api_pb2.h,sha256=
|
|
193
|
-
esphome/components/api/api_pb2_dump.cpp,sha256=
|
|
194
|
-
esphome/components/api/api_pb2_service.cpp,sha256=
|
|
195
|
-
esphome/components/api/api_pb2_service.h,sha256=
|
|
196
|
-
esphome/components/api/
|
|
197
|
-
esphome/components/api/api_server.
|
|
198
|
-
esphome/components/api/api_server.h,sha256=rCmsRSE4tDcfGMHd2dRm4pZ6kIMILEVUpSMkq1X21MQ,7586
|
|
191
|
+
esphome/components/api/api_pb2.cpp,sha256=L-qDcoG-RyHhMCpQzr7LJpIxQAHnpXlAlopp8-tXR5o,114017
|
|
192
|
+
esphome/components/api/api_pb2.h,sha256=efAEytRR7iryZGPFr1AE1RhzZhZvFHx5Wi4QROXVpys,91442
|
|
193
|
+
esphome/components/api/api_pb2_dump.cpp,sha256=7JQpe3fxLUSjiw5yfEnb-rGE8-rQQwtzQQgevEW65zY,131620
|
|
194
|
+
esphome/components/api/api_pb2_service.cpp,sha256=N4nHS9RaXO6V2X3oRe_oHtCcGtv3HinD2sJy2YF_NU8,26605
|
|
195
|
+
esphome/components/api/api_pb2_service.h,sha256=Wl4-5vhqj3zhCQfKJ0vImEuSXRZUkyuu0Fsbeg-0D9E,16521
|
|
196
|
+
esphome/components/api/api_server.cpp,sha256=UeLT60naPcxqmvJlMR6MClnPl1gT1cggyeOR-9jq3_4,14321
|
|
197
|
+
esphome/components/api/api_server.h,sha256=fRTT9rZEIFzD3iI89Z9P7Dniw7lnuOCPk_exYqCsOoI,6513
|
|
199
198
|
esphome/components/api/client.py,sha256=47VYbSUN7SO3vjRHA4tzLw3Zwr8yhkbfLg9K7ELRDf8,2188
|
|
200
|
-
esphome/components/api/custom_api_device.h,sha256=
|
|
199
|
+
esphome/components/api/custom_api_device.h,sha256=HIOBfs2zP5lRIC9ur-Ae9zHkCa5ekV023uIa0oklpdo,7599
|
|
201
200
|
esphome/components/api/homeassistant_service.h,sha256=_ie-fI8yZ5hJfssBwFcXZz4pLseqTdtJDZ7AQekFLpI,2814
|
|
202
|
-
esphome/components/api/list_entities.cpp,sha256=
|
|
203
|
-
esphome/components/api/list_entities.h,sha256=
|
|
201
|
+
esphome/components/api/list_entities.cpp,sha256=EMysqDt2yeMDwaiorf0taqF8pXCA0QAcnvviedNbFzI,3112
|
|
202
|
+
esphome/components/api/list_entities.h,sha256=91kBP47ISJS7MQ9tg2kOmaYtLx-pPyquROzzBGkE66s,2898
|
|
204
203
|
esphome/components/api/proto.cpp,sha256=vrXe3Hd1XWjzWi6osqMICAEEKNNx6A4GAo_KHQ7hRZA,2696
|
|
205
|
-
esphome/components/api/proto.h,sha256=
|
|
204
|
+
esphome/components/api/proto.h,sha256=KNwbQ9agx4dEaGK8SJoffAwiqbw9pWYWfDVS-HHyGL8,31310
|
|
206
205
|
esphome/components/api/subscribe_state.cpp,sha256=gC7H5XLr-Od0V6AGpdn6m_aElD1sI8YqNln7lWA7eT0,1910
|
|
207
206
|
esphome/components/api/subscribe_state.h,sha256=QvgvpLEw3kjuTytQa02V8bwhfCVxhQSdTbhCaohmxVA,2593
|
|
208
207
|
esphome/components/api/user_services.cpp,sha256=uFB9ms2RCdTTnPLQ8YSL1hMIjMUTqPaBwHBWECfIpoA,2109
|
|
209
|
-
esphome/components/api/user_services.h,sha256=
|
|
208
|
+
esphome/components/api/user_services.h,sha256=wfdVEDDwVl2XkIBqLcvJ8DFga_rDotWw4pexbCIIaas,2321
|
|
210
209
|
esphome/components/as3935/__init__.py,sha256=HzgYbwDVTU-9ziVpmtAkRQoCJhTYwVFNmWnZ6SWzRn0,2274
|
|
211
210
|
esphome/components/as3935/as3935.cpp,sha256=WrWgbqFYjVUKrrLHuX-1ytfGVA4T2eHtVRCi5laRxHA,12813
|
|
212
211
|
esphome/components/as3935/as3935.h,sha256=OLsgTb53U4wIkfxI28u15bqSqccR6v7K5ywsLF89vxA,3632
|
|
@@ -655,7 +654,7 @@ esphome/components/datetime/time_entity.h,sha256=rNN9V8UH4ervs03lsuvR233dD13LYce
|
|
|
655
654
|
esphome/components/debug/__init__.py,sha256=3jG9TN662hFu3_uMsmb8OuaZjpJzMYFin8oqbAo0m_o,2126
|
|
656
655
|
esphome/components/debug/debug_component.cpp,sha256=KM-ejEa1bDxoSjxUBjA4EOGvuYEgL50gAsOaWbSjGqg,3033
|
|
657
656
|
esphome/components/debug/debug_component.h,sha256=lae6tHfcs0wWXczaXYRlot1SGC7zTA81PiHRAXUcxQ8,3088
|
|
658
|
-
esphome/components/debug/debug_esp32.cpp,sha256=
|
|
657
|
+
esphome/components/debug/debug_esp32.cpp,sha256=NMJ6CF9gJ5fk4pCuku-BKMs9WqrLjpkmtE4EIBb_1W8,7113
|
|
659
658
|
esphome/components/debug/debug_esp8266.cpp,sha256=eTj_cCcsHgG5YgtryxZFmM1bN2mHRXLEC1qPkfBDdDY,3145
|
|
660
659
|
esphome/components/debug/debug_host.cpp,sha256=DeAkj-QT8OPcQykp1Cl98YtnJ28kVd3TDR4LXgs1x-o,396
|
|
661
660
|
esphome/components/debug/debug_libretiny.cpp,sha256=18T23svXnWw-__ykQjxoaDQ5jpztW1MHiOWDh_XoTzM,1569
|
|
@@ -828,7 +827,7 @@ esphome/components/es8388/select/adc_input_mic_select.cpp,sha256=xBlweJHP_BHSvwP
|
|
|
828
827
|
esphome/components/es8388/select/adc_input_mic_select.h,sha256=1Wf54OGjnrj9vFe7WuIU10qraRAJX7HM1qEcCTTSlvc,336
|
|
829
828
|
esphome/components/es8388/select/dac_output_select.cpp,sha256=FDOC7NHBaR34BqzzsPrmzBIzY_4o_YkF3_wSs_A9LC8,302
|
|
830
829
|
esphome/components/es8388/select/dac_output_select.h,sha256=u00z0jHqKmqsaKht3b3k7aGtYudU0cCJRTOw1Zh-mbw,334
|
|
831
|
-
esphome/components/esp32/__init__.py,sha256=
|
|
830
|
+
esphome/components/esp32/__init__.py,sha256=MUdQKB2_en-8LrdI40Gr162DlRP_A24NClorhNBdBr0,35942
|
|
832
831
|
esphome/components/esp32/boards.py,sha256=RHJK4x6dEz4v3CuFHIPp0gvJmCWAl7hH3Xoy8-pq6wY,55161
|
|
833
832
|
esphome/components/esp32/const.py,sha256=3sPibOKzbGgtSUIn7PfTQJRyob6x1vUtxagKCGS9CyY,1130
|
|
834
833
|
esphome/components/esp32/core.cpp,sha256=7zSi6LBjWUV1qMNdCTs3R4LRLkg6Xnl8a7bsTGy-f8Q,2747
|
|
@@ -885,7 +884,7 @@ esphome/components/esp32_ble_tracker/__init__.py,sha256=ccak0vxtH0cvun10HRGFJJHo
|
|
|
885
884
|
esphome/components/esp32_ble_tracker/automation.h,sha256=0pDA6EX__f14sT0KJwcnqg7UOsueKjjegHPznQj9biw,3795
|
|
886
885
|
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=HYiT04Lc7UUf6R8bU4dzXjukHIYXxpUENDF3pbWsyEw,33210
|
|
887
886
|
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=XBjgf-yrkXGxoaQqTeAw70A59y8Th2c-57ctmhiuH18,11028
|
|
888
|
-
esphome/components/esp32_camera/__init__.py,sha256=
|
|
887
|
+
esphome/components/esp32_camera/__init__.py,sha256=ZGtx71UgtqHIhdZJSKHQqv7zIgtpFu6MFHfzAkf6DWc,13457
|
|
889
888
|
esphome/components/esp32_camera/esp32_camera.cpp,sha256=LLGw2p5RsbO-lCFBqkZsuzitMex1N3y3bEoZhnMV7k4,17110
|
|
890
889
|
esphome/components/esp32_camera/esp32_camera.h,sha256=ojiwjGpzUhYQepifWD2PyjByQklFRtQRTJrXFbZfSNM,7903
|
|
891
890
|
esphome/components/esp32_camera_web_server/__init__.py,sha256=ViM-dcI4ld95yL1a3LuOO4H-eW_1GmcN7fHDlsyu3f8,938
|
|
@@ -916,9 +915,9 @@ esphome/components/esp32_touch/__init__.py,sha256=zcxxAkhMPOd--SZyngwDEW-Q9AYcWm
|
|
|
916
915
|
esphome/components/esp32_touch/binary_sensor.py,sha256=JV0p5Ovn4E1EVj6L4JEmRJ--L-D7HWGK2PaQLE9hs3E,1165
|
|
917
916
|
esphome/components/esp32_touch/esp32_touch.h,sha256=Br1-5Lh4U6xmvrM59iuPe5hR6cmO-LO5vSoyc49k9QY,9644
|
|
918
917
|
esphome/components/esp32_touch/esp32_touch_common.cpp,sha256=engSTGARGHfLIwjceV2xrg0y0yX_gpb8MjoK2zd6KZQ,5703
|
|
919
|
-
esphome/components/esp32_touch/esp32_touch_v1.cpp,sha256=
|
|
918
|
+
esphome/components/esp32_touch/esp32_touch_v1.cpp,sha256=VQdfo4rsDCVZ7kvG7IXFoatg97AM_ZECMNGB55I7xwQ,8266
|
|
920
919
|
esphome/components/esp32_touch/esp32_touch_v2.cpp,sha256=SZPbpG3fOrJNMkzcJIYFubi4YcTspnVp58iO-_7rJdM,13475
|
|
921
|
-
esphome/components/esp8266/__init__.py,sha256
|
|
920
|
+
esphome/components/esp8266/__init__.py,sha256=-2xGbrwE5P4eTmQZRcoKwjBhtCVgnhdh3kEsrqYcGSI,9683
|
|
922
921
|
esphome/components/esp8266/boards.py,sha256=p2btoDa36gfr9QsCOBZuME7Pi20Xf2LcQ_F-oeMFFA8,8647
|
|
923
922
|
esphome/components/esp8266/const.py,sha256=bBUPq-_hzl36vVhKwCxCI_2TSNLJZpwbs6MtgHLVATI,380
|
|
924
923
|
esphome/components/esp8266/core.cpp,sha256=IMhgyjd1a5Jm0j1wsUKcv6eme8A4_IdFdvPjX0QXNzE,2673
|
|
@@ -934,9 +933,9 @@ esphome/components/esp8266_pwm/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
934
933
|
esphome/components/esp8266_pwm/esp8266_pwm.cpp,sha256=C6eQ2S2mgwDgeb-v1lqb81Ht462bQ8L7jyia6d9CC88,1684
|
|
935
934
|
esphome/components/esp8266_pwm/esp8266_pwm.h,sha256=YLObIixl3YFDx3biu1TVfH6qyOFFts-VGT4pxgN0PHw,1386
|
|
936
935
|
esphome/components/esp8266_pwm/output.py,sha256=s5sMTbATthPAJCJyTwvIBYQAoEcffAGxBvv7NLwtkZY,2041
|
|
937
|
-
esphome/components/esp_ldo/__init__.py,sha256=
|
|
936
|
+
esphome/components/esp_ldo/__init__.py,sha256=bBEaDXgqzFtcRSOcUttuA8VGJnayYjLU-zhvzGw8UiU,2892
|
|
938
937
|
esphome/components/esp_ldo/esp_ldo.cpp,sha256=cAnIUUnO9EGLEx2y0cZ7eT5eVeollwTxFLGQUdZ9sP8,1506
|
|
939
|
-
esphome/components/esp_ldo/esp_ldo.h,sha256=
|
|
938
|
+
esphome/components/esp_ldo/esp_ldo.h,sha256=M5pLF6Wv1_CasrOHDG9e6UIYD-7KNVbZtXk0uAt61Bc,1130
|
|
940
939
|
esphome/components/esphome/ota/__init__.py,sha256=KKXGpESL_RUHYUWqEZ_VPXnfJX5So8q7FX2E2A4hc4E,4880
|
|
941
940
|
esphome/components/esphome/ota/ota_esphome.cpp,sha256=nj1hd4fkGvKq95NYqhE9faG0pYJxeE1gLcmu-KBdwW8,12968
|
|
942
941
|
esphome/components/esphome/ota/ota_esphome.h,sha256=MHd6DPavp08gfb-bcttjCiv3U60XMSTMDi2nPcN8Y7s,1140
|
|
@@ -1045,7 +1044,7 @@ esphome/components/gp8403/output/__init__.py,sha256=3VX9AD0N0SRXdOfKJcMMgjCwA1-R
|
|
|
1045
1044
|
esphome/components/gp8403/output/gp8403_output.cpp,sha256=FQPUa_ZMgLz7LNHy6N8sNUpnI2hwOIZTRrwWtjXrbGs,714
|
|
1046
1045
|
esphome/components/gp8403/output/gp8403_output.h,sha256=wJd_-CtUSxw5ujhR21E1zCiB9hvpl3Ktt665D3iQLf4,598
|
|
1047
1046
|
esphome/components/gpio/__init__.py,sha256=afIFpPG_fsom-8vYV1yRyvhSCFyASlAdraUCuztWQZ4,103
|
|
1048
|
-
esphome/components/gpio/binary_sensor/__init__.py,sha256=
|
|
1047
|
+
esphome/components/gpio/binary_sensor/__init__.py,sha256=_rb3IP-gt1Fq5wSoFG36L7YATLF4xX2dRNlDI9sM1kU,2295
|
|
1049
1048
|
esphome/components/gpio/binary_sensor/gpio_binary_sensor.cpp,sha256=wVa5pNQMnUOO9RUovnf6G8MYQtKQoRSojA3MItHLnbg,3131
|
|
1050
1049
|
esphome/components/gpio/binary_sensor/gpio_binary_sensor.h,sha256=ukwmyxJhiYXMczcT16zwdliTX5Brf8fdgDzid6l13wE,2000
|
|
1051
1050
|
esphome/components/gpio/one_wire/__init__.py,sha256=oH6-6zy18pG_7iqzLegjh4AbjnbZHqBRZKHdHBI-828,714
|
|
@@ -1209,7 +1208,7 @@ esphome/components/honeywellabp2_i2c/__init__.py,sha256=q4EX44dXWVPn_6bcR0pbzsGW
|
|
|
1209
1208
|
esphome/components/honeywellabp2_i2c/honeywellabp2.cpp,sha256=MePCvLyyKeMbXryihlXo05l92nmR42RPb3KhrsZ5Mho,3593
|
|
1210
1209
|
esphome/components/honeywellabp2_i2c/honeywellabp2.h,sha256=dqxZCb2bPsx1GkI78ZptEvDUBuFO0jT3H8EHukh9-ms,2062
|
|
1211
1210
|
esphome/components/honeywellabp2_i2c/sensor.py,sha256=SgzprhKM9AR6voTktYUqvuFqxhOn9ak5xLeVH-L8vMk,2544
|
|
1212
|
-
esphome/components/host/__init__.py,sha256=
|
|
1211
|
+
esphome/components/host/__init__.py,sha256=vKZJ1cQKjbbUSuXMdEUscOSjSNfiQSzEIfIpb7UrWf8,1328
|
|
1213
1212
|
esphome/components/host/const.py,sha256=GvsG6HlxHm1Oh5rpiFTswpNIpG0xmfUvSHxtjZwmyuU,91
|
|
1214
1213
|
esphome/components/host/core.cpp,sha256=_CSOmrSgL-Zo707ff0xVsWnAFBRzjKWwE4EP-0LosZg,1766
|
|
1215
1214
|
esphome/components/host/gpio.cpp,sha256=OjPFXl9ZDLhsqUEuNvpAvZiiyeNuUyWjbi6DqZM2hFs,1582
|
|
@@ -1286,7 +1285,7 @@ esphome/components/i2s_audio/media_player/i2s_audio_media_player.h,sha256=gmG6n9
|
|
|
1286
1285
|
esphome/components/i2s_audio/microphone/__init__.py,sha256=m62jL72XwxBavk9cDULs2cdcbHHkM96JF5RPiPBHGcg,4281
|
|
1287
1286
|
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=TUsYopCDgzRWi4QRtw3hNx5qmsy4eT8hUnEeUvFyiA4,16932
|
|
1288
1287
|
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=74azu9ZjuKfbE5tPXIMDMQD241EqYU1VtV8gpwfLtHw,2409
|
|
1289
|
-
esphome/components/i2s_audio/speaker/__init__.py,sha256=
|
|
1288
|
+
esphome/components/i2s_audio/speaker/__init__.py,sha256=GqE7dlAd6cbn0Es_ZRWpLZhMG0UQrPmwABPfkdF1I_g,6149
|
|
1290
1289
|
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=WWsZ72wenICP37UHodPgT7_ui_SHKLsBKAff4RuCu2M,27353
|
|
1291
1290
|
esphome/components/i2s_audio/speaker/i2s_audio_speaker.h,sha256=JZLm5X2Anpx4R34eXONlHvzypJvLI8N-MQiZkFhx7B4,6697
|
|
1292
1291
|
esphome/components/iaqcore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1403,7 +1402,7 @@ esphome/components/lcd_pcf8574/pcf8574_display.h,sha256=QH4tY-ZqGblbOmXTcQ3LvM-w
|
|
|
1403
1402
|
esphome/components/ld2410/__init__.py,sha256=Ic9CV8t6qFpe5_VDXinO-lrK_9kjzmtaD7IruLan4T4,3540
|
|
1404
1403
|
esphome/components/ld2410/automation.h,sha256=ly1lq06Vc7XtfD9IgZwWY0wqiKlAVa9qCQsYn5cFh0s,587
|
|
1405
1404
|
esphome/components/ld2410/binary_sensor.py,sha256=XKy8DlgmA0OMsTEzSX68pzYAPYknOA8RYHbE-fFb6lM,2248
|
|
1406
|
-
esphome/components/ld2410/ld2410.cpp,sha256=
|
|
1405
|
+
esphome/components/ld2410/ld2410.cpp,sha256=AldMsq2_iJ5NZh6TwBkX59wXb233l5R1SEUWtv3ZXxw,30300
|
|
1407
1406
|
esphome/components/ld2410/ld2410.h,sha256=6-24T7yE69Bp23nlve7E9srvSjEvEUudFvkzmDZLni0,4167
|
|
1408
1407
|
esphome/components/ld2410/sensor.py,sha256=P1LCSK-otvDuIQJ8yhxSQIxY_Zb8iDKRuK796MrKgwA,4242
|
|
1409
1408
|
esphome/components/ld2410/text_sensor.py,sha256=vvkzr0HfErYORkU3u1gTpdEiXu5IKFIxDTm6gUe-zlA,1153
|
|
@@ -1434,25 +1433,25 @@ esphome/components/ld2410/switch/bluetooth_switch.h,sha256=B-oPEG1KV23aATKLLRqqt
|
|
|
1434
1433
|
esphome/components/ld2410/switch/engineering_mode_switch.cpp,sha256=DtyDtB0m9xyiEjfrKCg_z0aUVlexvS2t6EdkZ_j1S4Q,258
|
|
1435
1434
|
esphome/components/ld2410/switch/engineering_mode_switch.h,sha256=YtfYVHHSWRic0qg9iei16S52urpQHAeUMddDXon2EII,364
|
|
1436
1435
|
esphome/components/ld2420/__init__.py,sha256=iei6OBPy_GV2tvLBsK5y3BaLxGOkqPypozfNw4BfVLY,898
|
|
1437
|
-
esphome/components/ld2420/ld2420.cpp,sha256=
|
|
1438
|
-
esphome/components/ld2420/ld2420.h,sha256=
|
|
1436
|
+
esphome/components/ld2420/ld2420.cpp,sha256=gGtUOfbXuLfhiiAC5BDgAsnEQ6AQpXOJbvAuiZm-510,35757
|
|
1437
|
+
esphome/components/ld2420/ld2420.h,sha256=PDPHjm8gujPdiXyFj2PrqzmxlskuJyupyaAVysCVEJY,7605
|
|
1439
1438
|
esphome/components/ld2420/binary_sensor/__init__.py,sha256=dAItkJvREF_uaoUAwL_XZd8OpKDzFVh4IWSW6gGHY_I,1100
|
|
1440
|
-
esphome/components/ld2420/binary_sensor/ld2420_binary_sensor.cpp,sha256=
|
|
1439
|
+
esphome/components/ld2420/binary_sensor/ld2420_binary_sensor.cpp,sha256=hXrHfEkW0R4hOBnO4sf2NGJMpqbCLTrqcW0WR0__oNo,390
|
|
1441
1440
|
esphome/components/ld2420/binary_sensor/ld2420_binary_sensor.h,sha256=5xaOuNN3ewvyTyZW4eBi7G4kE9gLxPqsY3xbEibXRyQ,717
|
|
1442
1441
|
esphome/components/ld2420/button/__init__.py,sha256=vQgQJV2bMSXvGVP7UHP32CTfPpSbnYpdox_BlNnIdJE,2728
|
|
1443
|
-
esphome/components/ld2420/button/reconfig_buttons.cpp,sha256=
|
|
1442
|
+
esphome/components/ld2420/button/reconfig_buttons.cpp,sha256=X0mRuVq941A6j0AhNLVecElTKO86fzoHZ-YbP2bnarU,588
|
|
1444
1443
|
esphome/components/ld2420/button/reconfig_buttons.h,sha256=g7sUKrlQKMAXdngXnEWs6MkNPdTjdAuSa3KT9komxNQ,927
|
|
1445
1444
|
esphome/components/ld2420/number/__init__.py,sha256=Cc9MjrqowggJB6dxTptzy65rh65zWYbvFZUtm0Gcu9g,7961
|
|
1446
|
-
esphome/components/ld2420/number/gate_config_number.cpp,sha256=
|
|
1445
|
+
esphome/components/ld2420/number/gate_config_number.cpp,sha256=0a9KtptLjDRnAwGsbgGyt7l9bxq61zmqm71q1cJIcGU,2392
|
|
1447
1446
|
esphome/components/ld2420/number/gate_config_number.h,sha256=sYuklfUnQwoHsrcfzonabw9f0xfPmxyv4KrfdptqyKE,1902
|
|
1448
1447
|
esphome/components/ld2420/select/__init__.py,sha256=2e2h1F-5xUYt4ADkLgQxFsOJ1u6Xym0j1tXIhTTmF68,1013
|
|
1449
|
-
esphome/components/ld2420/select/operating_mode_select.cpp,sha256=
|
|
1448
|
+
esphome/components/ld2420/select/operating_mode_select.cpp,sha256=gfBUYCYp8GqoMcHW5ttIfYSHaYOKonS-akxQCKtC_iM,368
|
|
1450
1449
|
esphome/components/ld2420/select/operating_mode_select.h,sha256=YW2eqa9Ga6AC4-xk7UdcaMkkapQ3EVlzgdyGyKVg8zI,373
|
|
1451
1450
|
esphome/components/ld2420/sensor/__init__.py,sha256=O312BKb_LMxJM2IQDeCSHoGBfmmZ5zWUmiNWQXudE_g,1298
|
|
1452
|
-
esphome/components/ld2420/sensor/ld2420_sensor.cpp,sha256=
|
|
1451
|
+
esphome/components/ld2420/sensor/ld2420_sensor.cpp,sha256=0nkkrkvMJT2srNQ2JGGoOIOzT5p9VIka0n_Iv2NVF1U,355
|
|
1453
1452
|
esphome/components/ld2420/sensor/ld2420_sensor.h,sha256=wwS-YQmlrVFCtwshXKy3FTd16RLlx8_Qe-6j4tISXMI,1030
|
|
1454
1453
|
esphome/components/ld2420/text_sensor/__init__.py,sha256=3tURtfeJvPyYSn0qsb8ynmDx_Z0KCEXaq3VqZ8aKWY0,1139
|
|
1455
|
-
esphome/components/ld2420/text_sensor/text_sensor.cpp,sha256=
|
|
1454
|
+
esphome/components/ld2420/text_sensor/text_sensor.cpp,sha256=6rvT1dp3u9Fpmpm-3kHZTBnGZ8omsUABTM9jkey0-IA,379
|
|
1456
1455
|
esphome/components/ld2420/text_sensor/text_sensor.h,sha256=aK91ri0NvHth3ya0zN1OeX81v1nqveoiJcOfqCpaAJI,672
|
|
1457
1456
|
esphome/components/ld2450/__init__.py,sha256=n6KvEkMsoaR3DUix1a1MGq-ZyjAAIAKDZ0lYN7iKSpQ,1267
|
|
1458
1457
|
esphome/components/ld2450/binary_sensor.py,sha256=SyIw9c-4JqNm8JKuzSKA9rVWaVCGsYAslV0VbhqJnoM,1755
|
|
@@ -1484,7 +1483,7 @@ esphome/components/ledc/__init__.py,sha256=PTP_5q_K_2dNnUdkolkVd5komlEbJdS4lolCp
|
|
|
1484
1483
|
esphome/components/ledc/ledc_output.cpp,sha256=zJNvN-b8S4repjC2WCcJviXQLdgO5ISJy9QcYq29XI0,7926
|
|
1485
1484
|
esphome/components/ledc/ledc_output.h,sha256=hok37ypQ7BjJkJc22_z8p9qwkH4K1e_xRASNgMBZFyE,1663
|
|
1486
1485
|
esphome/components/ledc/output.py,sha256=wZ_1alEsSESanCb3NjkDP8LTKTyWXNTXY8S0wq5KkTM,2725
|
|
1487
|
-
esphome/components/libretiny/__init__.py,sha256=
|
|
1486
|
+
esphome/components/libretiny/__init__.py,sha256=Q6eT1pDL5bmWf7QB-a2HWb-WhbQ7tW0z0CSzb9Cjp2k,11629
|
|
1488
1487
|
esphome/components/libretiny/const.py,sha256=WCN4FZoUtktRgWBijFNJ0Mr4QPahdKAnZa0A1dtYOOU,2106
|
|
1489
1488
|
esphome/components/libretiny/core.cpp,sha256=Jaq_VlJpwc9iTXiH8b-2PFnNZupnJjJUQNqqHYUiues,991
|
|
1490
1489
|
esphome/components/libretiny/core.h,sha256=bsl2xiT0QgansYipejruyDLMagECncUMq-ghejC6aB4,175
|
|
@@ -1629,7 +1628,7 @@ esphome/components/lvgl/widgets/label.py,sha256=5xl1a6apdJgGKmkpL8m7RDASjaeKzjKT
|
|
|
1629
1628
|
esphome/components/lvgl/widgets/led.py,sha256=qoe_kvZpoRkwbxz25Z66KQ__KLC2tfhAukChp1jdlDc,888
|
|
1630
1629
|
esphome/components/lvgl/widgets/line.py,sha256=XwTZxoLeWb5_Bx4cRBjBxLd83DLGqFXSE8t9jNYasXk,1355
|
|
1631
1630
|
esphome/components/lvgl/widgets/lv_bar.py,sha256=FbDNEL9huqeKGiE_nqyoB6BVPOCEsQd3YgO5m07SI3M,2274
|
|
1632
|
-
esphome/components/lvgl/widgets/meter.py,sha256=
|
|
1631
|
+
esphome/components/lvgl/widgets/meter.py,sha256=ptMHG6LCky1jwtUcGODek0W94Ju9PWGPbkg91l3NyKA,11520
|
|
1633
1632
|
esphome/components/lvgl/widgets/msgbox.py,sha256=i98hz6RKJRMWQ4wz9T1qOHzmdmZ6yHDvHDeJ1T9_Gt0,5335
|
|
1634
1633
|
esphome/components/lvgl/widgets/obj.py,sha256=6lKIfsdKLWIE8u_Lw0X0ChMCKcV8EZYF8WQKQEBCKYU,439
|
|
1635
1634
|
esphome/components/lvgl/widgets/page.py,sha256=W7kQ1xfJLRMdy6wFKoA6tZxUXNKGBZWrjMw9OZRfLqA,5870
|
|
@@ -1950,7 +1949,7 @@ esphome/components/mqtt/custom_mqtt_device.h,sha256=4vsEvV0E_K8qd91f_l-6uh80T0-w
|
|
|
1950
1949
|
esphome/components/mqtt/mqtt_alarm_control_panel.cpp,sha256=UgJwyMp4eLl5w3XVsf0r-yPiM56dTTckGNkx1gM-uvg,4618
|
|
1951
1950
|
esphome/components/mqtt/mqtt_alarm_control_panel.h,sha256=dVadCXurMrLTR_nRTTSH0Nw5158tkwtu-gHXU0jH2Ls,875
|
|
1952
1951
|
esphome/components/mqtt/mqtt_backend.h,sha256=GR1t5zKWbpub9t3W_7mVbEgHG9HtaDTPDTZBFpJoa1I,2855
|
|
1953
|
-
esphome/components/mqtt/mqtt_backend_esp32.cpp,sha256=
|
|
1952
|
+
esphome/components/mqtt/mqtt_backend_esp32.cpp,sha256=moYkKcQlLs7iWai-4zSwfi1cxeAZ49J1AzX7zEsgV3A,10708
|
|
1954
1953
|
esphome/components/mqtt/mqtt_backend_esp32.h,sha256=LcF1lIn5JjeN0NXnWcbPIeOmKxcgTrwyUxgs6XebOX8,9173
|
|
1955
1954
|
esphome/components/mqtt/mqtt_backend_esp8266.h,sha256=vgp9J3GrrCvwMeE0faw17LYIM2B6zS9XS-84mlYSlQE,3275
|
|
1956
1955
|
esphome/components/mqtt/mqtt_backend_libretiny.h,sha256=gyEaZF8gxgdderLTRGzwlxALYBXMXkfKJFbArDNb7F0,3292
|
|
@@ -2190,7 +2189,7 @@ esphome/components/output/switch/output_switch.h,sha256=irORSQtpjDivfCCaBQCHMek1
|
|
|
2190
2189
|
esphome/components/packages/__init__.py,sha256=jUmmK0jWh36i87-YMOsjzPLygJdoJNlmXYwKoNjOjOM,6415
|
|
2191
2190
|
esphome/components/packet_transport/__init__.py,sha256=HO_mUUQe0LQWepajoGIVGUHbcIbN3m-ZaFlA6HXII0c,6359
|
|
2192
2191
|
esphome/components/packet_transport/binary_sensor.py,sha256=vysjJ9KDTzDssdNOlOT_tNVLT3jv5a_GRw1H5czPBLY,2329
|
|
2193
|
-
esphome/components/packet_transport/packet_transport.cpp,sha256=
|
|
2192
|
+
esphome/components/packet_transport/packet_transport.cpp,sha256=orygb4kg5L15h6p3i5mLQXCyKje19yDTBb3BMdML61Q,17360
|
|
2194
2193
|
esphome/components/packet_transport/packet_transport.h,sha256=8REDLYgpT3tjQyvpfz3eb_WKUJN9MXqN3x9Rdt7ndOk,5029
|
|
2195
2194
|
esphome/components/packet_transport/sensor.py,sha256=YOqWXwfd-E2VyHuMSE3o2ZEGjJ_d6Vn5yf4sptAS-CY,578
|
|
2196
2195
|
esphome/components/partition/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2511,7 +2510,7 @@ esphome/components/rotary_encoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
|
|
|
2511
2510
|
esphome/components/rotary_encoder/rotary_encoder.cpp,sha256=cs7GPg3aik11ustZvJPN8GiHODvdhdvETZb5jjorTr4,10687
|
|
2512
2511
|
esphome/components/rotary_encoder/rotary_encoder.h,sha256=oeCmz0ctT3CxP-16g3cie9kekgM79omeLQmunbCHRW0,4653
|
|
2513
2512
|
esphome/components/rotary_encoder/sensor.py,sha256=GFnAMS8bZjY9LaqZwQOU1JIDdTdYEzItxFWXgWZP6iM,5231
|
|
2514
|
-
esphome/components/rp2040/__init__.py,sha256=
|
|
2513
|
+
esphome/components/rp2040/__init__.py,sha256=b3Kit3lGqdk48GC1B07LPsgK3BrOCEjS5Woq_Aeb1c8,8517
|
|
2515
2514
|
esphome/components/rp2040/boards.py,sha256=O0LRt2Bhi5yVvW11iPLOTPkW3P_2WlTonQZERaNzea4,445
|
|
2516
2515
|
esphome/components/rp2040/build_pio.py.script,sha256=aNtrSnjYcLY6t0NYBGszhwMPISVNrNUg6nJtyBdfyh4,1218
|
|
2517
2516
|
esphome/components/rp2040/const.py,sha256=1x4XQlMfgQux1bllBAhz9ym-aUeFglxtPnQbpG3vUYQ,147
|
|
@@ -2945,7 +2944,7 @@ esphome/components/sts3x/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
|
2945
2944
|
esphome/components/sts3x/sensor.py,sha256=L3KzexM-oB7ZYLkyfuL2tGcr374xbMEtgh4qCC-O6RA,921
|
|
2946
2945
|
esphome/components/sts3x/sts3x.cpp,sha256=61I1NYl4UYc6H2LF3FCB9QJ_JV9QRFgIDXAWDuNxK7E,2080
|
|
2947
2946
|
esphome/components/sts3x/sts3x.h,sha256=MDc_-wFonrh4r4FKwm4OYT5nZiTDZKO0-gmadE-cvjA,610
|
|
2948
|
-
esphome/components/substitutions/__init__.py,sha256=
|
|
2947
|
+
esphome/components/substitutions/__init__.py,sha256=jTAm7n58NxQAfzszdlOfOIQXpAAexQ8oVHnq2Xl_NIU,7214
|
|
2949
2948
|
esphome/components/substitutions/jinja.py,sha256=knHsEQPpo2UqNS5r65CiqULoVrGp8lw3XY1_DrDzwO0,3793
|
|
2950
2949
|
esphome/components/sun/__init__.py,sha256=52Yrvmk4zJpfX3NdSaCsg3ZxXOCmY4W5cR7F5zbOzhs,5327
|
|
2951
2950
|
esphome/components/sun/sun.cpp,sha256=YEe2SsF4OEmK27NQRZ0tYBv_n5vnJd-6HA45GDTxqa8,11874
|
|
@@ -2969,7 +2968,7 @@ esphome/components/switch/switch.h,sha256=lLrzKALopIjcH0Zq7vjjwCjrKeQsiuLoKLtBQl
|
|
|
2969
2968
|
esphome/components/switch/binary_sensor/__init__.py,sha256=vSm7ahCF2DzXvYzbdfgAMZzcOimrO-ivfLkLf_q4kMo,760
|
|
2970
2969
|
esphome/components/switch/binary_sensor/switch_binary_sensor.cpp,sha256=ZPwaqXQTS_PIdBahVr_YMToaxckCMzDJAd7PqIIApls,470
|
|
2971
2970
|
esphome/components/switch/binary_sensor/switch_binary_sensor.h,sha256=xTqZLNBeZl6oah0rzOiuBfeeLTUnl-hSMzLALWhuOog,462
|
|
2972
|
-
esphome/components/sx126x/__init__.py,sha256=
|
|
2971
|
+
esphome/components/sx126x/__init__.py,sha256=ESYxzsog9kId6zUOE6AVohHp2UzQNM8gCB-ZnOwlDYA,11941
|
|
2973
2972
|
esphome/components/sx126x/automation.h,sha256=fgt45VPE4CbumQ7Cj8fsd5oKZSxDazoZROo4_sij-x0,1824
|
|
2974
2973
|
esphome/components/sx126x/sx126x.cpp,sha256=e3YKvAXV8_7S5Qoo7IO-eI8OWDZ6wQuY4SpikZXgL50,16720
|
|
2975
2974
|
esphome/components/sx126x/sx126x.h,sha256=-jHgmn1dNUwwGf1eGrU19Z3BxwpFX49JxoVxSUlMQjM,5312
|
|
@@ -2977,7 +2976,7 @@ esphome/components/sx126x/sx126x_reg.h,sha256=GSWkorZRYDeqMO8oTIozvfL2WLYAz66y3o
|
|
|
2977
2976
|
esphome/components/sx126x/packet_transport/__init__.py,sha256=pQohjHA2lZTqq3ziua_W1_DVkIY6ldh1WVzh80c8zvA,716
|
|
2978
2977
|
esphome/components/sx126x/packet_transport/sx126x_transport.cpp,sha256=5TBsftQSup0or1nVu5O_di08BOCx7yI0o0i30cT8RiA,697
|
|
2979
2978
|
esphome/components/sx126x/packet_transport/sx126x_transport.h,sha256=P9rUlpZta5J0G_dcUU6YArz39dTHGuljk2k8uqHeRPY,833
|
|
2980
|
-
esphome/components/sx127x/__init__.py,sha256=
|
|
2979
|
+
esphome/components/sx127x/__init__.py,sha256=L-p5AW4FkA1xG6aSVEc3fDQo8pNur0j-QaEh7iwCBDg,12458
|
|
2981
2980
|
esphome/components/sx127x/automation.h,sha256=MrU0gzxLiAh8Z81IByoBaDyIXkK4B3P0ctc_Mri-zjE,1814
|
|
2982
2981
|
esphome/components/sx127x/sx127x.cpp,sha256=jTjDETDnosa-jRkz92IES_fQqTV0nvbeje-mu5zYGBM,17692
|
|
2983
2982
|
esphome/components/sx127x/sx127x.h,sha256=CeonOXY3iEOHIRTw2VWh0jRZjvUb7C9OjdOnz5Fv8AA,4878
|
|
@@ -3333,13 +3332,13 @@ esphome/components/uptime/text_sensor/uptime_text_sensor.cpp,sha256=9kXOUyFFojTm
|
|
|
3333
3332
|
esphome/components/uptime/text_sensor/uptime_text_sensor.h,sha256=hKsnhovbSiYZEsMFHP1A7t-02Lml_CA0qzNICSmfdy0,1493
|
|
3334
3333
|
esphome/components/usb_host/__init__.py,sha256=Ch57YBggSFDrVtzNQeLl6gG0NJuWLXQLqmKAESIfc-Y,2142
|
|
3335
3334
|
esphome/components/usb_host/usb_host.h,sha256=Bi1Y0ZQd_ecbEhIXdnfgO7fPEoWXxjN-hZCvTErkpdk,3426
|
|
3336
|
-
esphome/components/usb_host/usb_host_client.cpp,sha256=
|
|
3335
|
+
esphome/components/usb_host/usb_host_client.cpp,sha256=bh9CCTb9qG_5Cpks4iOwDprjGNzNonWF1hcyBrXURWQ,14645
|
|
3337
3336
|
esphome/components/usb_host/usb_host_component.cpp,sha256=NmiqSWOdOg2ZgGEGV5MR8wA7GtEz2n9glR-r1INNdsM,954
|
|
3338
3337
|
esphome/components/usb_uart/__init__.py,sha256=hj_dUGWhiwrlhZaiMrY4j8IX_Kn3EIk3JfCCrths7so,4951
|
|
3339
3338
|
esphome/components/usb_uart/ch34x.cpp,sha256=Frz9ZsQqCJGdU8gwl7VNoNHDAgoh5ufHX43oQpNg17o,2321
|
|
3340
|
-
esphome/components/usb_uart/cp210x.cpp,sha256=
|
|
3341
|
-
esphome/components/usb_uart/usb_uart.cpp,sha256=
|
|
3342
|
-
esphome/components/usb_uart/usb_uart.h,sha256=
|
|
3339
|
+
esphome/components/usb_uart/cp210x.cpp,sha256=8h_-Rr0Hy7BBisGhbOulTaJUYO8_HlMZBVUj35UPqk8,6006
|
|
3340
|
+
esphome/components/usb_uart/usb_uart.cpp,sha256=XFQIkGDEvZmLExVAEcydQi1Sk0SluhOxQiWSOtjrS18,12863
|
|
3341
|
+
esphome/components/usb_uart/usb_uart.h,sha256=z6I-t409XJcVSsvWgGk_HvscM8nsmZM6593XP-qYyUE,4977
|
|
3343
3342
|
esphome/components/valve/__init__.py,sha256=Zh88-A_iUBTEaQECCk2zeTUa9wqQYYDSW_PEuZYgehs,8232
|
|
3344
3343
|
esphome/components/valve/automation.h,sha256=KyWITRr3fHrl0YYuY_DDSrp93fCI1dHX3at1sfnWZIk,2716
|
|
3345
3344
|
esphome/components/valve/valve.cpp,sha256=uE562HP1awwV1rQ8PDZ9p22n2rq2D11hVdpKFUu9LRw,5446
|
|
@@ -3601,25 +3600,25 @@ esphome/core/automation.h,sha256=UgoI-ebaL5YJ_cyRB-3ijHQxzt4cTbTaWw4eRGoOwBI,862
|
|
|
3601
3600
|
esphome/core/base_automation.h,sha256=wAJu_yy1tDjwARdCZ312t7anzR9dBF_54qiXm1sy-_g,11216
|
|
3602
3601
|
esphome/core/color.cpp,sha256=gcFk-FTJzvrePzqgA5gvsXv8iWct0ykdVGx_ivrilR0,254
|
|
3603
3602
|
esphome/core/color.h,sha256=K2iTTKgOgXcCm61S1f2P_k7YheKP654gUubWq5X0FhE,6647
|
|
3604
|
-
esphome/core/component.cpp,sha256
|
|
3603
|
+
esphome/core/component.cpp,sha256=HooDcPKuf7AzdOJuUAB72ecKCMqWUNGH5Z9qVVeE1OA,16722
|
|
3605
3604
|
esphome/core/component.h,sha256=Z1TYaQDGkoddm75zaPTQc_C0STpCCl200oDZsoc6yAk,17985
|
|
3606
|
-
esphome/core/component_iterator.cpp,sha256=
|
|
3607
|
-
esphome/core/component_iterator.h,sha256
|
|
3605
|
+
esphome/core/component_iterator.cpp,sha256=VD_bSv474jQlKctKIzYSPUK8zpm01PJ1Fymix1c92Jg,11121
|
|
3606
|
+
esphome/core/component_iterator.h,sha256=-j9hGIY8mCmgq2nLuoG_IFY0lSoHkImXMEVtUKYpngA,3791
|
|
3608
3607
|
esphome/core/config.py,sha256=l2z33FfZoBsg06RQajomXbepXUZD1oXwEnTv_yy1Sds,19628
|
|
3609
3608
|
esphome/core/controller.cpp,sha256=nRJZK4B5WWad98tGGEESSGcKWcpWhExaUOIXO3Iu_xQ,4602
|
|
3610
3609
|
esphome/core/controller.h,sha256=UCvtMbw21KvAQHaO_fgDRr1OjcXEYzEC8JupPmHrNic,3708
|
|
3611
3610
|
esphome/core/datatypes.h,sha256=TNuXjWQIK7KjDwMAccMFws2SimaUlsgim96SI0cCdCY,2110
|
|
3612
|
-
esphome/core/defines.h,sha256=
|
|
3611
|
+
esphome/core/defines.h,sha256=p58MqkO1WCVCpy9qe5O-GC1LncWZA74QHHAPce63y2E,5860
|
|
3613
3612
|
esphome/core/device.h,sha256=mYTwRg92-BU8uTTzmrufH-KkHCMLKsKWnvM-mjzw6I0,531
|
|
3614
3613
|
esphome/core/doxygen.h,sha256=9fAJ2T-1z96-NYnj63vQhsnKthHBrh3EqBnY0h3ZN-A,439
|
|
3615
3614
|
esphome/core/entity_base.cpp,sha256=4JMAGN8w3bMW-kTchQxlbA-zS43NOdYhT1Fo0Celx78,2453
|
|
3616
3615
|
esphome/core/entity_base.h,sha256=bzNEdGDbJsO0ijowJHmLMLeCN3mY1hqzWK4dF39bpik,6429
|
|
3617
|
-
esphome/core/entity_helpers.py,sha256=
|
|
3616
|
+
esphome/core/entity_helpers.py,sha256=03-t7OcXa8L-_634OAEU9s-opgjoIKqC9acXHoXR6lA,8169
|
|
3618
3617
|
esphome/core/event_pool.h,sha256=TjA2sl_s5ScKC9d_5nssvImbPkpJJUWo5DDZwCaZ0QU,2457
|
|
3619
3618
|
esphome/core/gpio.h,sha256=kLkCnPxu4_1CsLR4BI_Baj1lDGoRIh8uubbwsIkJPIA,2575
|
|
3620
3619
|
esphome/core/hal.h,sha256=Le0-vtdDylYCaE9i4yvrv5-Y5PB5xoL3PM2FfMJsIeA,970
|
|
3621
3620
|
esphome/core/helpers.cpp,sha256=eyOYJWmMEcdX8dJ3RoIcl6MeOmc0C3cTPafZDTzQ4OM,20961
|
|
3622
|
-
esphome/core/helpers.h,sha256=
|
|
3621
|
+
esphome/core/helpers.h,sha256=jhoCkhTlwqSVOXVNWK7RnIXgJQiu9QvbsZV-WmPWOTY,33362
|
|
3623
3622
|
esphome/core/lock_free_queue.h,sha256=S6QMMT8L8rG_qOzkTHWqcP9amok99hFhXGlZoj8C4XU,5104
|
|
3624
3623
|
esphome/core/log.cpp,sha256=cc6JIMRlIEk7lCQa6JFrL6bTBZ89xWNLwf26AFNzKC0,1625
|
|
3625
3624
|
esphome/core/log.h,sha256=Fb0_ORK0q-WV0i49gzb8i9_C38RUe8VILIdbu1Bel5M,6627
|
|
@@ -3629,8 +3628,8 @@ esphome/core/optional.h,sha256=uKMzglliXSA5eC3ujwrADmyt8m7X4WkBQcOL6p3ET7E,7144
|
|
|
3629
3628
|
esphome/core/preferences.h,sha256=RxgWuAi-uo6SZiK8UKX4KTwVfIMnaaLvrZP2rqTn_mE,1959
|
|
3630
3629
|
esphome/core/ring_buffer.cpp,sha256=6vOoKNjO4dSLYfqJYM8AXclpKgQOH6C79CqocwTSv-k,3526
|
|
3631
3630
|
esphome/core/ring_buffer.h,sha256=4SeN2DYZLCHrLIjSPDsiAynIjwOoItiRUDO-u1wjq-o,2997
|
|
3632
|
-
esphome/core/scheduler.cpp,sha256=
|
|
3633
|
-
esphome/core/scheduler.h,sha256=
|
|
3631
|
+
esphome/core/scheduler.cpp,sha256=EujNgcC6CgG_IGydPyylRB3qC4Q34cgcn7eIfqD1Zx0,19968
|
|
3632
|
+
esphome/core/scheduler.h,sha256=Im_s45ic3Km2ejByqVfeTSMYWJDu6oAf3zVvn1EM_iw,8193
|
|
3634
3633
|
esphome/core/string_ref.cpp,sha256=of1TYMY6t3t4HjjPLSiItuPSa62AMG0lK_CU2HS1RvM,242
|
|
3635
3634
|
esphome/core/string_ref.h,sha256=Rd8HVBiUZrPA3TkPCwuAxGw91VX-e3Fky812OCNhNvA,5227
|
|
3636
3635
|
esphome/core/time.cpp,sha256=ML3sAvlSgDaUkhbPmBkUkSFhGM78j0d7cL8CHAIgfow,7667
|
|
@@ -3656,9 +3655,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
|
3656
3655
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
|
3657
3656
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
|
3658
3657
|
esphome/dashboard/util/text.py,sha256=wwFtORlvHjsYkqb68IT-772LHAhWxT4OtnkIcPICQB0,317
|
|
3659
|
-
esphome-2025.7.
|
|
3660
|
-
esphome-2025.7.
|
|
3661
|
-
esphome-2025.7.
|
|
3662
|
-
esphome-2025.7.
|
|
3663
|
-
esphome-2025.7.
|
|
3664
|
-
esphome-2025.7.
|
|
3658
|
+
esphome-2025.7.0b3.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
|
3659
|
+
esphome-2025.7.0b3.dist-info/METADATA,sha256=W0Ip6b7lVsdNwuH3YrV7gqVmt36KiktFKGIoFas9w6I,3707
|
|
3660
|
+
esphome-2025.7.0b3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
3661
|
+
esphome-2025.7.0b3.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
|
3662
|
+
esphome-2025.7.0b3.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
|
3663
|
+
esphome-2025.7.0b3.dist-info/RECORD,,
|