esphome 2025.6.0b1__py3-none-any.whl → 2025.6.0b2__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/api_connection.cpp +53 -33
- esphome/components/api/api_connection.h +24 -25
- esphome/components/api/api_pb2.cpp +1 -0
- esphome/components/api/api_pb2.h +65 -226
- esphome/components/api/client.py +1 -3
- esphome/components/api/proto.h +1 -1
- esphome/components/bluetooth_proxy/bluetooth_proxy.cpp +2 -2
- esphome/components/bluetooth_proxy/bluetooth_proxy.h +1 -1
- esphome/components/bme280_base/bme280_base.cpp +2 -3
- esphome/components/datetime/date_entity.cpp +5 -5
- esphome/components/datetime/datetime_base.h +0 -5
- esphome/components/datetime/datetime_entity.cpp +8 -8
- esphome/components/datetime/time_entity.cpp +4 -4
- esphome/components/esp32/__init__.py +30 -3
- esphome/components/esp32_ble/ble.cpp +90 -45
- esphome/components/esp32_ble/ble.h +24 -5
- esphome/components/esp32_ble/ble_event.h +172 -32
- esphome/components/esp32_ble/ble_scan_result.h +24 -0
- esphome/components/esp32_ble/queue.h +53 -27
- esphome/components/esp32_ble_tracker/__init__.py +1 -0
- esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp +95 -66
- esphome/components/esp32_ble_tracker/esp32_ble_tracker.h +16 -16
- esphome/components/esp32_camera/esp32_camera.cpp +1 -1
- esphome/components/fan/fan.cpp +26 -17
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp +12 -9
- esphome/components/kmeteriso/kmeteriso.cpp +2 -3
- esphome/components/logger/logger.cpp +2 -15
- esphome/components/logger/logger.h +1 -2
- esphome/components/mqtt/mqtt_component.cpp +1 -1
- esphome/components/nextion/binary_sensor/nextion_binarysensor.cpp +1 -1
- esphome/components/nextion/nextion_upload_arduino.cpp +12 -9
- esphome/components/nextion/nextion_upload_idf.cpp +11 -9
- esphome/components/nextion/sensor/nextion_sensor.cpp +1 -1
- esphome/components/nextion/text_sensor/nextion_textsensor.cpp +1 -1
- esphome/components/number/number.cpp +1 -1
- esphome/components/number/number.h +0 -4
- esphome/components/prometheus/__init__.py +0 -1
- esphome/components/select/select.cpp +1 -1
- esphome/components/select/select.h +0 -4
- esphome/components/sensor/sensor.cpp +8 -4
- esphome/components/sensor/sensor.h +3 -6
- esphome/components/status_led/light/status_led_light.cpp +2 -2
- esphome/components/status_led/light/status_led_light.h +1 -1
- esphome/components/template/alarm_control_panel/template_alarm_control_panel.cpp +14 -9
- esphome/components/template/alarm_control_panel/template_alarm_control_panel.h +1 -0
- esphome/components/text/text.cpp +1 -1
- esphome/components/text/text.h +0 -4
- esphome/components/text_sensor/text_sensor.cpp +8 -4
- esphome/components/text_sensor/text_sensor.h +6 -6
- esphome/components/update/update_entity.cpp +1 -1
- esphome/components/update/update_entity.h +0 -3
- esphome/components/uptime/sensor/uptime_timestamp_sensor.cpp +1 -1
- esphome/components/web_server_idf/__init__.py +0 -2
- esphome/components/web_server_idf/web_server_idf.cpp +6 -2
- esphome/components/web_server_idf/web_server_idf.h +7 -0
- esphome/components/weikai/weikai.cpp +1 -1
- esphome/const.py +1 -1
- esphome/core/application.cpp +14 -8
- esphome/core/application.h +7 -7
- esphome/core/component.cpp +36 -15
- esphome/core/component.h +30 -13
- esphome/core/entity_base.cpp +4 -16
- esphome/core/entity_base.h +27 -13
- esphome/core/helpers.h +1 -1
- esphome/wizard.py +0 -16
- {esphome-2025.6.0b1.dist-info → esphome-2025.6.0b2.dist-info}/METADATA +2 -2
- {esphome-2025.6.0b1.dist-info → esphome-2025.6.0b2.dist-info}/RECORD +71 -70
- {esphome-2025.6.0b1.dist-info → esphome-2025.6.0b2.dist-info}/WHEEL +0 -0
- {esphome-2025.6.0b1.dist-info → esphome-2025.6.0b2.dist-info}/entry_points.txt +0 -0
- {esphome-2025.6.0b1.dist-info → esphome-2025.6.0b2.dist-info}/licenses/LICENSE +0 -0
- {esphome-2025.6.0b1.dist-info → esphome-2025.6.0b2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: esphome
|
3
|
-
Version: 2025.6.
|
3
|
+
Version: 2025.6.0b2
|
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.8.1
|
39
39
|
Requires-Dist: click==8.1.7
|
40
40
|
Requires-Dist: esphome-dashboard==20250514.0
|
41
|
-
Requires-Dist: aioesphomeapi==32.2.
|
41
|
+
Requires-Dist: aioesphomeapi==32.2.3
|
42
42
|
Requires-Dist: zeroconf==0.147.0
|
43
43
|
Requires-Dist: puremagic==1.29
|
44
44
|
Requires-Dist: ruamel.yaml==0.18.14
|
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=GePHUM7xdXb_Pil59SHVsXg2F4VBPgkH-Fz2PDX8Z54,1873
|
|
5
5
|
esphome/config.py,sha256=GsKqzNb4OBxA92eltdGYtP7e9fgtk80QsquhnUesb50,39948
|
6
6
|
esphome/config_helpers.py,sha256=MKf_wzO35nn41FvigXE0iYKDslPgL2ruf8R-EPtTT2I,3256
|
7
7
|
esphome/config_validation.py,sha256=N3za01KZnbbj4GqUAB1y0nW9qHRQUazsPzIVv1ZoxBk,62366
|
8
|
-
esphome/const.py,sha256=
|
8
|
+
esphome/const.py,sha256=yWoUe4wzMy7SUiZdlxof7PjhMrGErQlWYSLQQ2rJuFo,41817
|
9
9
|
esphome/coroutine.py,sha256=HNBqqhaTbpvsOI19bTXltxJCMVtoeqZPe4qTf4CKkAc,9309
|
10
10
|
esphome/cpp_generator.py,sha256=2MbyMVt9hg7cFD0X8885IiJfFNjdqkqjis3P-0oa5L0,31346
|
11
11
|
esphome/cpp_helpers.py,sha256=6C2vNbOIhZKi43xRVlk5hp9GfshfBn-rc5D_ZFUEYaE,4801
|
@@ -26,7 +26,7 @@ esphome/types.py,sha256=hnt4C_y0BR9PiWRluaDom1L_afl3lgMma8AMASbJAbM,394
|
|
26
26
|
esphome/util.py,sha256=eIXhVyTcsgzUS9AwVmvlDgHDLuKsgFN-mjPO0SL87QQ,9298
|
27
27
|
esphome/voluptuous_schema.py,sha256=tQUOLvVec6v4pxfWpa8CMgXqBqomuqUUYEJqCJOPhNs,9417
|
28
28
|
esphome/vscode.py,sha256=pKBx_9jmQlRJB1xiqjWq2-pFhXae8VNSFGYoqxRBMkw,4279
|
29
|
-
esphome/wizard.py,sha256=
|
29
|
+
esphome/wizard.py,sha256=mru5jCpYTNrgaure7bP6fTkZ-1OfoUmqsowYuFBWRdU,15377
|
30
30
|
esphome/writer.py,sha256=qxT5CJOIXEJlqJy490layWc-47QLPFBWUpKOsy8FQvQ,11040
|
31
31
|
esphome/yaml_util.py,sha256=PewbmiODTAuJ5pTlawtGi-vdTdOHhzgproUhed5Bbk8,23140
|
32
32
|
esphome/zeroconf.py,sha256=dy3aWh1Lf4Sh5e7Izlq30FkdzAKWA6IGvZkXuxYrxFE,6511
|
@@ -182,25 +182,25 @@ esphome/components/apds9960/apds9960.h,sha256=oFrXPQrPDS16gNSVdN1n6SKuvjwc9LdvpK
|
|
182
182
|
esphome/components/apds9960/binary_sensor.py,sha256=MvCYb6pTgOU48TMm_YhN6uHKkoFKFvhma3lwQQD9xfM,787
|
183
183
|
esphome/components/apds9960/sensor.py,sha256=vUPm5H_IFROftGlMJWfgqSzm0IeLpYh5DvtA_DL1Amk,872
|
184
184
|
esphome/components/api/__init__.py,sha256=X2G3QNRraBP8IOP7kY3MCgsF-1aDI-VGC54Tlb0xMg8,10678
|
185
|
-
esphome/components/api/api_connection.cpp,sha256=
|
186
|
-
esphome/components/api/api_connection.h,sha256=
|
185
|
+
esphome/components/api/api_connection.cpp,sha256=5HGHwfrCgAHeoKmg4w0MrKDnJwEF-n5xPZNeNVS6cT0,87057
|
186
|
+
esphome/components/api/api_connection.h,sha256=oZhcUrl6RByGhtLENp41-5b6CC0NXgbTucJ94cb81YY,26920
|
187
187
|
esphome/components/api/api_frame_helper.cpp,sha256=KCHNw9HQ_Id3TirJytskB_1AO4tZz5NtZVZ9DCl3zPM,38965
|
188
188
|
esphome/components/api/api_frame_helper.h,sha256=gytvsuTbh4beQ2lGgGy-Crf-gQSCDU2z3plEa6EbgX8,9944
|
189
189
|
esphome/components/api/api_noise_context.h,sha256=y_3hWMKXtKxyCwZ8cKQjn3gQqenaAX5DhcCFQ6kBiPc,606
|
190
|
-
esphome/components/api/api_pb2.cpp,sha256=
|
191
|
-
esphome/components/api/api_pb2.h,sha256=
|
190
|
+
esphome/components/api/api_pb2.cpp,sha256=nBWCdtEy754ZsoF6uAXwAD28xEdOrOEbpiThyV6Mk1I,319294
|
191
|
+
esphome/components/api/api_pb2.h,sha256=3QNzjjz7AYbGYcZhOayD7GWEQMLMAQeP_naEx17IK4U,106863
|
192
192
|
esphome/components/api/api_pb2_service.cpp,sha256=6K191Ols2tcmccr0leWTGgyJljPyfzOAJdF4Ep9TIrY,32073
|
193
193
|
esphome/components/api/api_pb2_service.h,sha256=CiUQWqbEIWSTN_Ku8RgA1UoVHUT2EWKjOUw9g28rYDc,16444
|
194
194
|
esphome/components/api/api_pb2_size.h,sha256=i9wFf675YrfJy9Em_vZLPJ9osRHRNkOb7DMd1LpK3YM,13430
|
195
195
|
esphome/components/api/api_server.cpp,sha256=9TMUKMTJrML5-_1q9T28xsl-fEuZo9ITDPPhaNJglWY,14402
|
196
196
|
esphome/components/api/api_server.h,sha256=ZWX0n80nf5TjEjvm-oVR5S4cutbfhcg8e8XNnZ2s_l4,5934
|
197
|
-
esphome/components/api/client.py,sha256=
|
197
|
+
esphome/components/api/client.py,sha256=1C85JrkIxtDqXGuxNQz7PMxZaSap1HOSuAFdE_qtfVM,1953
|
198
198
|
esphome/components/api/custom_api_device.h,sha256=CyFBolpdvgrJ0vrHUwcHzUh5SV4Fh5296ro4w8e19MQ,7454
|
199
199
|
esphome/components/api/homeassistant_service.h,sha256=_ie-fI8yZ5hJfssBwFcXZz4pLseqTdtJDZ7AQekFLpI,2814
|
200
200
|
esphome/components/api/list_entities.cpp,sha256=yRhKcSw6U1Ah1znEBd2nNwWLZyyttFniUGHMRW0M0Sw,4092
|
201
201
|
esphome/components/api/list_entities.h,sha256=Kcl43Q7pHbgRJ148XXMWWCUwNdg6z9R15nkf0vRf4IM,2412
|
202
202
|
esphome/components/api/proto.cpp,sha256=vrXe3Hd1XWjzWi6osqMICAEEKNNx6A4GAo_KHQ7hRZA,2696
|
203
|
-
esphome/components/api/proto.h,sha256=
|
203
|
+
esphome/components/api/proto.h,sha256=gF_1Nuzr4cKwdwJkkMcSc1le-BOnj_4n4tD1oC315es,12309
|
204
204
|
esphome/components/api/subscribe_state.cpp,sha256=FhhPW786ttgHe-nT5_XyklyzaDP3AYQr0eBolZfelqw,3142
|
205
205
|
esphome/components/api/subscribe_state.h,sha256=uZMouF7qWmR-H4i9Js3n2S8kS-_i0efbmzVnpla_KYg,2304
|
206
206
|
esphome/components/api/user_services.cpp,sha256=uFB9ms2RCdTTnPLQ8YSL1hMIjMUTqPaBwHBWECfIpoA,2109
|
@@ -384,10 +384,10 @@ esphome/components/ble_scanner/text_sensor.py,sha256=yOB-AMBbNwJ0K9zYXh3ZedA42Os
|
|
384
384
|
esphome/components/bluetooth_proxy/__init__.py,sha256=9Fsrcxvs72d1O7mCC35StuIKQtBztKW6X08Nd2mkr1E,3474
|
385
385
|
esphome/components/bluetooth_proxy/bluetooth_connection.cpp,sha256=5HadjiwGN6-KycIN_BPY1j7V1OFMad79baZ7enLDoCE,11190
|
386
386
|
esphome/components/bluetooth_proxy/bluetooth_connection.h,sha256=oR0r7QAUNABFMKB_anI_l7lI-iOE6RbyBPkDozoC14Y,1171
|
387
|
-
esphome/components/bluetooth_proxy/bluetooth_proxy.cpp,sha256=
|
388
|
-
esphome/components/bluetooth_proxy/bluetooth_proxy.h,sha256=
|
387
|
+
esphome/components/bluetooth_proxy/bluetooth_proxy.cpp,sha256=ubLzspdDo2MVCcH8cuDN7HEq5GWNzvIy0IaFVbgV3bk,26977
|
388
|
+
esphome/components/bluetooth_proxy/bluetooth_proxy.h,sha256=pz58pL9Jxge6JbN9FeAud--tKSYNXum_NtgQOUZaQXk,5408
|
389
389
|
esphome/components/bme280_base/__init__.py,sha256=KQhkrj8Ny2lMRUdJXaem5z3-fiR2J82b9AGe58xnZgE,3688
|
390
|
-
esphome/components/bme280_base/bme280_base.cpp,sha256=
|
390
|
+
esphome/components/bme280_base/bme280_base.cpp,sha256=DFHU3ipni1JapYaBjWwFFDLr-5q02AwZ67KuymrSc0I,12837
|
391
391
|
esphome/components/bme280_base/bme280_base.h,sha256=oQawFchVefNaYKHMixkqUID5IQK5tF1dyQXaAOznnhw,4300
|
392
392
|
esphome/components/bme280_i2c/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
393
393
|
esphome/components/bme280_i2c/bme280_i2c.cpp,sha256=r7P3rZuET6XPP5AJm3fP4jPqUPm9-FzLYezklcZgR9E,865
|
@@ -640,12 +640,12 @@ esphome/components/dashboard_import/__init__.py,sha256=zC8GemN_wuFUWJ2KlL6okQzTV
|
|
640
640
|
esphome/components/dashboard_import/dashboard_import.cpp,sha256=G5aiH2f1mS_NZ0sgIMIVHFtw2rZMnEe84TT-Cn3kbR8,350
|
641
641
|
esphome/components/dashboard_import/dashboard_import.h,sha256=rEtCkCQHpV7Wf240qqMREfQXE90s4zOdwQEYLG6xdCI,225
|
642
642
|
esphome/components/datetime/__init__.py,sha256=w8v_2rmdJRrhsk9oNTESwcQezA6EhETunS7UtYq15Ig,8858
|
643
|
-
esphome/components/datetime/date_entity.cpp,sha256=
|
643
|
+
esphome/components/datetime/date_entity.cpp,sha256=IbEWpZwT6bqNOd6WRu8_Jm6RH9j2oXznydiZ_xRPg7w,3700
|
644
644
|
esphome/components/datetime/date_entity.h,sha256=72vM34Ap7iUPoOtGMpudEQ_4489zY13UHhX3tzZopiY,2584
|
645
|
-
esphome/components/datetime/datetime_base.h,sha256=
|
646
|
-
esphome/components/datetime/datetime_entity.cpp,sha256=
|
645
|
+
esphome/components/datetime/datetime_base.h,sha256=t-65pTVsHCOk9zWNWkgLFC296DjHAZb5NvKCC_smWCw,1051
|
646
|
+
esphome/components/datetime/datetime_entity.cpp,sha256=gWxzAJFSnkxWw1xYdPo-KDYvjZxMs-IHT8UAN8q476A,7758
|
647
647
|
esphome/components/datetime/datetime_entity.h,sha256=qN4CuohdTVq5g0VKrl8whUE1FjFFvIqlxTCOzzDNfws,3742
|
648
|
-
esphome/components/datetime/time_entity.cpp,sha256=
|
648
|
+
esphome/components/datetime/time_entity.cpp,sha256=R7bZ569BcA8qxhl0cfhEyh2uyxLdIrfbcWCvM4wHjd0,4411
|
649
649
|
esphome/components/datetime/time_entity.h,sha256=rNN9V8UH4ervs03lsuvR233dD13LYceAy597vXbURcY,2915
|
650
650
|
esphome/components/debug/__init__.py,sha256=llo39yz0GH4Lo10IIVJfwna6okFO4g4-L0D1dStlK5U,1463
|
651
651
|
esphome/components/debug/debug_component.cpp,sha256=KM-ejEa1bDxoSjxUBjA4EOGvuYEgL50gAsOaWbSjGqg,3033
|
@@ -819,7 +819,7 @@ esphome/components/es8388/select/adc_input_mic_select.cpp,sha256=xBlweJHP_BHSvwP
|
|
819
819
|
esphome/components/es8388/select/adc_input_mic_select.h,sha256=1Wf54OGjnrj9vFe7WuIU10qraRAJX7HM1qEcCTTSlvc,336
|
820
820
|
esphome/components/es8388/select/dac_output_select.cpp,sha256=FDOC7NHBaR34BqzzsPrmzBIzY_4o_YkF3_wSs_A9LC8,302
|
821
821
|
esphome/components/es8388/select/dac_output_select.h,sha256=u00z0jHqKmqsaKht3b3k7aGtYudU0cCJRTOw1Zh-mbw,334
|
822
|
-
esphome/components/esp32/__init__.py,sha256=
|
822
|
+
esphome/components/esp32/__init__.py,sha256=bG12yoNWbKS-pM5PRHZAz2yBWyowD8LtM7xy_ZgG0tQ,37264
|
823
823
|
esphome/components/esp32/boards.py,sha256=RHJK4x6dEz4v3CuFHIPp0gvJmCWAl7hH3Xoy8-pq6wY,55161
|
824
824
|
esphome/components/esp32/const.py,sha256=3sPibOKzbGgtSUIn7PfTQJRyob6x1vUtxagKCGS9CyY,1130
|
825
825
|
esphome/components/esp32/core.cpp,sha256=7O7S5bJPNUeX8ge1mxpyZ1WzxTf1fFDCRK3P5UxZvq8,2865
|
@@ -839,14 +839,15 @@ esphome/components/esp32/post_build.py.script,sha256=ZBsPNunx2BH4ZiRyXnjTP7D7eN2
|
|
839
839
|
esphome/components/esp32/preferences.cpp,sha256=WpEG6PenHwrAIonuoV_chdDJriJXF5dcpIbuYfmaUCQ,6229
|
840
840
|
esphome/components/esp32/preferences.h,sha256=9HIy-BOgjOXJiEgOizZ_Qb8-l6K4eb3VSPW8Y8ffuWM,165
|
841
841
|
esphome/components/esp32_ble/__init__.py,sha256=aShI9hnF7NU0M8GrIYgOFqF4N2QL96Iuhzrh8SV1pus,9598
|
842
|
-
esphome/components/esp32_ble/ble.cpp,sha256=
|
843
|
-
esphome/components/esp32_ble/ble.h,sha256=
|
842
|
+
esphome/components/esp32_ble/ble.cpp,sha256=UxTFLB0HG6z8ypHN2UcW1fiXt_LYngOtDz5qTkL8NZc,15451
|
843
|
+
esphome/components/esp32_ble/ble.h,sha256=XiX3hvjhqQRc01xrLVus8q8J4iZo36m5Z8xbYeaDd1I,5798
|
844
844
|
esphome/components/esp32_ble/ble_advertising.cpp,sha256=LFrrx7xMjXAf7pt7Q43XzlwwcE1YKKulE3Zbuqow6JU,6104
|
845
845
|
esphome/components/esp32_ble/ble_advertising.h,sha256=tbN2CN1CqlosOvnG0NlMHC_0JPMZ2ugTzIIOSmQl30s,1576
|
846
|
-
esphome/components/esp32_ble/ble_event.h,sha256=
|
846
|
+
esphome/components/esp32_ble/ble_event.h,sha256=YuYhDR-ELOXWQkzD9xLZ6C9NioVInOraUlROwOnlp4c,9190
|
847
|
+
esphome/components/esp32_ble/ble_scan_result.h,sha256=3hpnLDvy9Fr7sMuophP_db4GcF76qWSZKOn_ZljYoME,546
|
847
848
|
esphome/components/esp32_ble/ble_uuid.cpp,sha256=2go_q78xgFlQRH_ZpM4tdsDJqyqe_3Ssn2PJFkpjlfI,6167
|
848
849
|
esphome/components/esp32_ble/ble_uuid.h,sha256=6OL7GrNP-pxIqANnLlsd4IWCRnVzRD3Zx20pD4uGymA,916
|
849
|
-
esphome/components/esp32_ble/queue.h,sha256=
|
850
|
+
esphome/components/esp32_ble/queue.h,sha256=Tu2gzHSkErzIkGFWDNrkEVaNjHuDb8BiWhfncZJfTD4,2308
|
850
851
|
esphome/components/esp32_ble_beacon/__init__.py,sha256=ts8d3ZFLBH_QE6cW748AZUXaK_yCqg3rzlJcObTGkAQ,3190
|
851
852
|
esphome/components/esp32_ble_beacon/esp32_ble_beacon.cpp,sha256=Y1xsFMHU306rZ8ZU7Y0UmhU22gXYe_28o7jg1t5e3Ms,4202
|
852
853
|
esphome/components/esp32_ble_beacon/esp32_ble_beacon.h,sha256=tDM9fy5VLIrCp45bqgsqHAm6FTsn7ixoOZkuTugZqqw,1868
|
@@ -871,12 +872,12 @@ esphome/components/esp32_ble_server/ble_server_automations.cpp,sha256=6fV-Rxduht
|
|
871
872
|
esphome/components/esp32_ble_server/ble_server_automations.h,sha256=BEHS1WWvLSqIiumRTMHV-rZzpIoAdRpL4c9Rg_k0UWw,4364
|
872
873
|
esphome/components/esp32_ble_server/ble_service.cpp,sha256=cLJpq-eEFNXV4tlkSHXQWLCSDkPD8I5HXVDwogCH1sk,5606
|
873
874
|
esphome/components/esp32_ble_server/ble_service.h,sha256=BvKpr2fsUlNnviH9gdokI7IcuTBu0C7bNFT0vvIuN1Y,2306
|
874
|
-
esphome/components/esp32_ble_tracker/__init__.py,sha256=
|
875
|
+
esphome/components/esp32_ble_tracker/__init__.py,sha256=cWHciy2tEUDNBC_bUqE-1hPSSGecbat3-8HUBitjOqQ,15170
|
875
876
|
esphome/components/esp32_ble_tracker/automation.h,sha256=0pDA6EX__f14sT0KJwcnqg7UOsueKjjegHPznQj9biw,3795
|
876
|
-
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256
|
877
|
-
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=
|
877
|
+
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=-ZbJGP_aANwaqqL9F30zMJHfHmbDn00M6Wi4n3NR3iI,33168
|
878
|
+
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=SDSrBSFfdL3owk2lwBcyfG5JvgxBQyOVSx6CqgbIwEQ,10678
|
878
879
|
esphome/components/esp32_camera/__init__.py,sha256=3M3EhzV9jPpWMiAHPaVWbYUW3D_uEM_6Je4Gd2EGhNg,12631
|
879
|
-
esphome/components/esp32_camera/esp32_camera.cpp,sha256=
|
880
|
+
esphome/components/esp32_camera/esp32_camera.cpp,sha256=Q7QjA1DBd_dnQkB6xos7STKZPhSDM0C09m1YvO7E1U4,16685
|
880
881
|
esphome/components/esp32_camera/esp32_camera.h,sha256=bCDwl44XrornN6_KHe8htnrUJOoFlE-KMipggt3NWa8,7590
|
881
882
|
esphome/components/esp32_camera_web_server/__init__.py,sha256=iPu6MKMAUqaFpMRm59fzA1Nm0RYPvo_gINaqkV2tRYU,920
|
882
883
|
esphome/components/esp32_camera_web_server/camera_web_server.cpp,sha256=LWVAbNLHOaigCBFkJz15Y95VQWHW39pkoYGDWCJorkk,6960
|
@@ -966,7 +967,7 @@ esphome/components/factory_reset/switch/factory_reset_switch.cpp,sha256=ft1_L7We
|
|
966
967
|
esphome/components/factory_reset/switch/factory_reset_switch.h,sha256=uNwChe9vzBIHfXJPX3Jj6W1iZZgaTSKf3JUeg-gc95Y,366
|
967
968
|
esphome/components/fan/__init__.py,sha256=orJMYgq4DvgJb6vzb5UEjv0n8Zsr2JQADMxY308R5vk,14410
|
968
969
|
esphome/components/fan/automation.h,sha256=2Q2jqt0JaajDyRo18uY5XLeSYOizkRZjZk4z0Kc2Th4,6160
|
969
|
-
esphome/components/fan/fan.cpp,sha256=
|
970
|
+
esphome/components/fan/fan.cpp,sha256=R9MeXfuBCjgdibDM64OXVwru2jAhnzBliuW26bzb4FM,7636
|
970
971
|
esphome/components/fan/fan.h,sha256=lQ2Hq5eMO4RjVW0TKjvAooeC9aO8YKMgZr6VZjtC3uM,4008
|
971
972
|
esphome/components/fan/fan_state.cpp,sha256=gPRO2nTp9bMQ-w1Yx7Gp0pfwBk8yrT8qOCty3Hn-vTs,350
|
972
973
|
esphome/components/fan/fan_state.h,sha256=sU5uewzMJuriK3YL_3M-qtH2WGJmxOi3fCAPD4Xj3iU,917
|
@@ -1266,7 +1267,7 @@ esphome/components/i2s_audio/media_player/__init__.py,sha256=YKIoFb4ANgc6_jIV3t6
|
|
1266
1267
|
esphome/components/i2s_audio/media_player/i2s_audio_media_player.cpp,sha256=CiO08AVUZG-egAIOs9OSgYttC1d3xQT871wJoq4718o,7563
|
1267
1268
|
esphome/components/i2s_audio/media_player/i2s_audio_media_player.h,sha256=gmG6n9YU2Mz85CFa3fO7Na2KBdt9fOrGbDg0-C7jwjI,2078
|
1268
1269
|
esphome/components/i2s_audio/microphone/__init__.py,sha256=m62jL72XwxBavk9cDULs2cdcbHHkM96JF5RPiPBHGcg,4281
|
1269
|
-
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=
|
1270
|
+
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=eQpQ2jYRJnlA4Fae6r_ZYRZSwefAsrIKVaXFFiA-Wkc,16720
|
1270
1271
|
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=QefL91wL9KHO6pN5DCxbrYNV1KsYGmR9cG8CosUe0pY,2348
|
1271
1272
|
esphome/components/i2s_audio/speaker/__init__.py,sha256=EUWTtCtc3T5zoaHMUnqu-KjJh5nnwKrkUAQi3QYEDi0,6152
|
1272
1273
|
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=SP--OFpLpgIUZL529WnqjGgfQEXmSB5h8HMkef-qv5c,26847
|
@@ -1357,7 +1358,7 @@ esphome/components/key_provider/__init__.py,sha256=9Z0Uuyy9k1e4k4QniuTwZZSG0Wcee
|
|
1357
1358
|
esphome/components/key_provider/key_provider.cpp,sha256=rjEDMaOkGNPwwHLglOu5nKaWYeVfrUBs9Jf0ZaSPwDM,335
|
1358
1359
|
esphome/components/key_provider/key_provider.h,sha256=-oZdEHtqNKo1NHnJeyi_yNc9nWZE2WjZW8bjVIovYM4,437
|
1359
1360
|
esphome/components/kmeteriso/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1360
|
-
esphome/components/kmeteriso/kmeteriso.cpp,sha256=
|
1361
|
+
esphome/components/kmeteriso/kmeteriso.cpp,sha256=fo5dWA_XlpGH1id1oGCpBunP_2A9-g4Z5BtIZFcSnm4,2759
|
1361
1362
|
esphome/components/kmeteriso/kmeteriso.h,sha256=EAC1Rk2JhpHQaQfVBgZK7NUNHt46bR8BMogEgOgvqUE,1028
|
1362
1363
|
esphome/components/kmeteriso/sensor.py,sha256=HyRH4PjK5xoOXJ_haDfwazir9g21HxH5pApZXoL-hSM,1832
|
1363
1364
|
esphome/components/kuntze/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1531,8 +1532,8 @@ esphome/components/lock/automation.h,sha256=7MU5AuJizydt7mKTr_uFsNleFI2jeBf7B_dN
|
|
1531
1532
|
esphome/components/lock/lock.cpp,sha256=IyEt5xShAxMpmcn_GAPFv2lRCS-kr4MjjfExxfXuK-Q,3212
|
1532
1533
|
esphome/components/lock/lock.h,sha256=p_t5cG-75MNGVM8zEyfKJlziSjeUiIbpYan3tlZG6W8,6042
|
1533
1534
|
esphome/components/logger/__init__.py,sha256=1NscJRrQTsSrbIvxaERk5AxiYSRn-ZW08LJ_hVEglHw,15082
|
1534
|
-
esphome/components/logger/logger.cpp,sha256=
|
1535
|
-
esphome/components/logger/logger.h,sha256=
|
1535
|
+
esphome/components/logger/logger.cpp,sha256=b7UAk0YSMWWlDJAjXgBXRx7-7glArQbEJoSdKBdxJ2E,10034
|
1536
|
+
esphome/components/logger/logger.h,sha256=Tf8BldTb3myh1R2t0HJObqbwB9lN91mQpJADMQjf1OU,12942
|
1536
1537
|
esphome/components/logger/logger_esp32.cpp,sha256=_7E01E1p7DzwQ-_d8JpzyYvngvYXltCw4-QyQobGPbg,6123
|
1537
1538
|
esphome/components/logger/logger_esp8266.cpp,sha256=k7GvUlcLxXCVYqBw7tlHRikmRe7hdO6qV837wr4N2ww,1182
|
1538
1539
|
esphome/components/logger/logger_host.cpp,sha256=h3Its8pHiVvnyOc6rj5zRiug8rLi42f5QTQiTbBiCNo,450
|
@@ -1937,7 +1938,7 @@ esphome/components/mqtt/mqtt_client.cpp,sha256=MQb_6ilcs1DPBuSzFb9JivFBRYkeY06M0
|
|
1937
1938
|
esphome/components/mqtt/mqtt_client.h,sha256=F3h8l8xrMAXhEynuJ4wOyIYICizJbG6cxHq5mA22seI,16044
|
1938
1939
|
esphome/components/mqtt/mqtt_climate.cpp,sha256=QWvWnTiD0CjFFyXN9kjg1iPaZsKXzqvRquN1LmSZEb4,16712
|
1939
1940
|
esphome/components/mqtt/mqtt_climate.h,sha256=20FAWmZ-zk2RFakvRSyiZEHemo8kBKxPi3xDmJfzXLw,1805
|
1940
|
-
esphome/components/mqtt/mqtt_component.cpp,sha256=
|
1941
|
+
esphome/components/mqtt/mqtt_component.cpp,sha256=8amtGh4QgTxwp-TI9PbbCaldj0BoQBW5ldCSpLRT-o4,12460
|
1941
1942
|
esphome/components/mqtt/mqtt_component.h,sha256=xz5MnCzGuFscyt_tuZ9vghBg10t7qSkcbznjgh11EFk,7669
|
1942
1943
|
esphome/components/mqtt/mqtt_const.h,sha256=AkBGHsDCaRSMguP0us5kKFanmIw7aq6ao9_j-OKaz-M,37279
|
1943
1944
|
esphome/components/mqtt/mqtt_cover.cpp,sha256=zesS4-nViwkQDwhVqypI2b0vKymMADDvQjkH1xynVrc,4723
|
@@ -2021,19 +2022,19 @@ esphome/components/nextion/nextion_commands.cpp,sha256=XjTHKSw7UHf0fujti5u_keUFG
|
|
2021
2022
|
esphome/components/nextion/nextion_component.cpp,sha256=nvYRfsb2NN9VyNaw_fG4A91CDHsAx0ohl2tQgSss7PA,3872
|
2022
2023
|
esphome/components/nextion/nextion_component.h,sha256=95FQYB9kKZXnSr6xLYEhTp9ONIdiiE5ryYJ62SUAJ1s,1266
|
2023
2024
|
esphome/components/nextion/nextion_component_base.h,sha256=3_CKQ5aVgDa-SmqsM5oVqOFYgbCUTtQkSF6uGc1uEFU,3865
|
2024
|
-
esphome/components/nextion/nextion_upload_arduino.cpp,sha256=
|
2025
|
-
esphome/components/nextion/nextion_upload_idf.cpp,sha256=
|
2025
|
+
esphome/components/nextion/nextion_upload_arduino.cpp,sha256=hdZWTFNOTEdZ7Ldn8VkidL7k2smmXgupSV3_qBCIqko,13313
|
2026
|
+
esphome/components/nextion/nextion_upload_idf.cpp,sha256=vBKZHS6FKAzWUCumwzk7FZr_-gWLvGLiOoKRbgZb6Gk,13202
|
2026
2027
|
esphome/components/nextion/binary_sensor/__init__.py,sha256=DyJeJDbqxNWmCvH5l8XTpB1sP0beJAJEyd30BDGmYTQ,2869
|
2027
|
-
esphome/components/nextion/binary_sensor/nextion_binarysensor.cpp,sha256=
|
2028
|
+
esphome/components/nextion/binary_sensor/nextion_binarysensor.cpp,sha256=tuNOZMbWEFgxkQ_h6PdfLU_fQJazDw4jzw5P4j_ou_Q,1831
|
2028
2029
|
esphome/components/nextion/binary_sensor/nextion_binarysensor.h,sha256=oX5afYNFfqm4L1qxx4U15bhInZ2srAJ5dXyVM1RbQK8,1786
|
2029
2030
|
esphome/components/nextion/sensor/__init__.py,sha256=if9Usd9kFPo7wrTDnELzh__Zr3waDSnnEmu5L9qxSM0,4088
|
2030
|
-
esphome/components/nextion/sensor/nextion_sensor.cpp,sha256=
|
2031
|
+
esphome/components/nextion/sensor/nextion_sensor.cpp,sha256=y0NYe2EcSo_L2SvB7fFDTrHJdZct_PSH8z-RJwJMsqg,3233
|
2031
2032
|
esphome/components/nextion/sensor/nextion_sensor.h,sha256=u5sMuIKjazI0etDlF2ZoBtlhWAYv06NMoA7X9oz4gxA,2154
|
2032
2033
|
esphome/components/nextion/switch/__init__.py,sha256=J5hDN8ec_rqVOjOVnncjo0RU6dsZu56g9HAHGDoCErA,2227
|
2033
2034
|
esphome/components/nextion/switch/nextion_switch.cpp,sha256=xM0R71njFkV6tORE7adQkxL7flkRnr6jbNoqLoRicek,1373
|
2034
2035
|
esphome/components/nextion/switch/nextion_switch.h,sha256=pA_9ONkNwc5pHR6vwu6pmcQAdOo_6-RxWbkeIzrY-iE,1343
|
2035
2036
|
esphome/components/nextion/text_sensor/__init__.py,sha256=hXyuVSenJOnl3EtmV3QAq0wNSJvckINXpVlWA_EUJKQ,2177
|
2036
|
-
esphome/components/nextion/text_sensor/nextion_textsensor.cpp,sha256=
|
2037
|
+
esphome/components/nextion/text_sensor/nextion_textsensor.cpp,sha256=_1B_ABRmpXXCIFspmEkqT6req4DfWvNkAa6LMcY9Mzo,1364
|
2037
2038
|
esphome/components/nextion/text_sensor/nextion_textsensor.h,sha256=902JxGn7EvUDWRd3vHEv1rzEm2U6b8IIvtChjhMRZsk,1434
|
2038
2039
|
esphome/components/nfc/__init__.py,sha256=hJ3uY61tQIw3sCTwXuW1LTZ32BPXuo3Xi04l1-x7l1g,362
|
2039
2040
|
esphome/components/nfc/automation.cpp,sha256=xiSgjcMz0L-O1cwwV3YDJC9u8wVH9GrUegUxJZnfR0U,226
|
@@ -2073,8 +2074,8 @@ esphome/components/ntc/sensor.py,sha256=lEn_K0xZMr8ftKQzJ8aP1BPQIYYa9XlUbSZN08MY
|
|
2073
2074
|
esphome/components/number/__init__.py,sha256=rUWa-WAWG3MbK0GyhIaMLLHiiHj1KFnc4nY_XU2MBbA,13581
|
2074
2075
|
esphome/components/number/automation.cpp,sha256=W-Vr0ZOUO-6IWROVohkXvKyBQEHZ-7mcPCF3WcK0Ofc,1516
|
2075
2076
|
esphome/components/number/automation.h,sha256=9tDblvLQ71QEC-oVHWLcYM4mmLRJSfuur3hnbYBi_xE,2482
|
2076
|
-
esphome/components/number/number.cpp,sha256
|
2077
|
-
esphome/components/number/number.h,sha256=
|
2077
|
+
esphome/components/number/number.cpp,sha256=Di4WEIvhw1qrRshrn4YL4JiMc5Hm2K4imOYYnobJhz8,519
|
2078
|
+
esphome/components/number/number.h,sha256=9J-LFvrfc_aGPgLZQPc-SWtk1wFsuUfeWovlW3Zzeyo,1821
|
2078
2079
|
esphome/components/number/number_call.cpp,sha256=XAJpfbUF3iO5w7TZ5c-Nck40rikhrxip5kwpoRjIL6c,3848
|
2079
2080
|
esphome/components/number/number_call.h,sha256=x-av6Jz2Z7HgSx4dH4FOOueN5Aig3Ii4dDag564PbaM,884
|
2080
2081
|
esphome/components/number/number_traits.cpp,sha256=jEj9pSXVvVg9oszH6Ha--oZ4KN0Yq7IdKbdL4Tp3OxY,187
|
@@ -2275,7 +2276,7 @@ esphome/components/power_supply/power_supply.cpp,sha256=qa-Qa5G3rTuD_sZd2IpCOXX8
|
|
2275
2276
|
esphome/components/power_supply/power_supply.h,sha256=KwFAwb2sBjnQlkyWMtMpWrBLixsGIiENWr093rl3tmA,1784
|
2276
2277
|
esphome/components/preferences/__init__.py,sha256=CAMqPVjUJGRT0WwZiPEzKatwsY5Ln0tHapQw8n5u2Ig,710
|
2277
2278
|
esphome/components/preferences/syncer.h,sha256=lp2FscYiaVOIRkuSuaQtqXm9MDDy21-z0MlCfUjGFLA,784
|
2278
|
-
esphome/components/prometheus/__init__.py,sha256=
|
2279
|
+
esphome/components/prometheus/__init__.py,sha256=nDE6iM3mGGovPVT74EOrDgXKv4yq0kQaK2UUbEbSllg,1697
|
2279
2280
|
esphome/components/prometheus/prometheus_handler.cpp,sha256=dTvIT7QbsLDLM6VERKH0ipEKMY5oiamnNy6Eg7AVVuo,39091
|
2280
2281
|
esphome/components/prometheus/prometheus_handler.h,sha256=dDKLGd-mzMkyFEmU2tzrv1NAczy1X7kmcrl5pATFJB8,7828
|
2281
2282
|
esphome/components/psram/__init__.py,sha256=r2eZzC5oWFNmCOJkKKe_YxDsnXH2KYpW23SdUsckwUI,4902
|
@@ -2626,8 +2627,8 @@ esphome/components/selec_meter/selec_meter_registers.h,sha256=fcST4F67QNayD7A33Z
|
|
2626
2627
|
esphome/components/selec_meter/sensor.py,sha256=HCdBr4XMdTsnKDiS_PCXa0r1TuG0LDpI9SYqNj0BdGA,5493
|
2627
2628
|
esphome/components/select/__init__.py,sha256=g7h4dl8bqHdm53B5sxrgcjVCJ8ycOdRiHiq0xruSFTQ,7372
|
2628
2629
|
esphome/components/select/automation.h,sha256=LM-EbLGcn2LzEBIjw5YZwGijausYO2F93QeIl7d_3T8,1706
|
2629
|
-
esphome/components/select/select.cpp,sha256=
|
2630
|
-
esphome/components/select/select.h,sha256=
|
2630
|
+
esphome/components/select/select.cpp,sha256=1TYub0pDh-FYtdx9h0qw2xKzbilRGDwsuVI6ldj2yTM,1683
|
2631
|
+
esphome/components/select/select.h,sha256=GOFFbBcwftiLX4N507iIkPmT0ZZLC1QAZeY5UrXaJSc,2285
|
2631
2632
|
esphome/components/select/select_call.cpp,sha256=PdH-8q4ZwU9JEW66kUCiJM6qDlNuyRH-rHVGOdK1fCU,4076
|
2632
2633
|
esphome/components/select/select_call.h,sha256=I7ViWLJLigDaLbkKF18zMQDQCIBiA8SfaIRPXKwj3rM,1005
|
2633
2634
|
esphome/components/select/select_traits.cpp,sha256=ufkcAU3NPO8x6f8GSI1PqtYEP1n2TqBbUS4xFrjw0XQ,309
|
@@ -2657,8 +2658,8 @@ esphome/components/sensor/automation.cpp,sha256=UcPBe_uOYAIG4ovtvbNLgthzjHVizoHW
|
|
2657
2658
|
esphome/components/sensor/automation.h,sha256=fNLel2ZPmcT35d3poc4Fw-aVtYqUS-UZHuoEWfzOXUY,3135
|
2658
2659
|
esphome/components/sensor/filter.cpp,sha256=-AtlNtdQz4gHlXT9LNayjP3xSq0wEUgzYonZ0pjgaXw,17188
|
2659
2660
|
esphome/components/sensor/filter.h,sha256=zyBvJA7j2tAZRxNOtTSt36Jcvq0wqJIQA4IruSExUIw,12976
|
2660
|
-
esphome/components/sensor/sensor.cpp,sha256=
|
2661
|
-
esphome/components/sensor/sensor.h,sha256=
|
2661
|
+
esphome/components/sensor/sensor.cpp,sha256=JjDukizXHcLdYQwtioKeBFtdCec-taCkkTBnDSiUPvg,3226
|
2662
|
+
esphome/components/sensor/sensor.h,sha256=MT9v_WftAZT2C6x0nU_2UFd7NUilpMhcjGL741W1Ntw,5796
|
2662
2663
|
esphome/components/servo/__init__.py,sha256=4l_eF8T0pXXAzOKauE7fNld-hdurWMbCCIk8sR9se-w,2833
|
2663
2664
|
esphome/components/servo/servo.cpp,sha256=yk7UUJXDqHglgqeYMB_j0A59KyiFlj9rGnK8k1oL_bE,3455
|
2664
2665
|
esphome/components/servo/servo.h,sha256=47omGAx6gSx7KtoL6XbRHXetGtS-pb4eaurg0RNNfJw,2316
|
@@ -2903,8 +2904,8 @@ esphome/components/status_led/__init__.py,sha256=dJAGehNOBzTTS0yM1rKXROjXfe-Jyuq
|
|
2903
2904
|
esphome/components/status_led/status_led.cpp,sha256=eAg3kEZ1hGggCwD_jAxqkBzdf021qtPv8ysYskojK2w,1105
|
2904
2905
|
esphome/components/status_led/status_led.h,sha256=Rzsh2bRhSo1a3M7a5l1Wt6vIftwKXnHOw5aJjoPMNfE,558
|
2905
2906
|
esphome/components/status_led/light/__init__.py,sha256=OZW4fPGjQ2E6grv6AU1wxAfHyof3O-oAGFnFMhbzMY4,1135
|
2906
|
-
esphome/components/status_led/light/status_led_light.cpp,sha256=
|
2907
|
-
esphome/components/status_led/light/status_led_light.h,sha256=
|
2907
|
+
esphome/components/status_led/light/status_led_light.cpp,sha256=6XKnkLvkaU5n-VJo7g_0xpFu3SwRNPWi-I_YfIGp1vQ,2233
|
2908
|
+
esphome/components/status_led/light/status_led_light.h,sha256=hqrwQOgAYvXnXXBoTkvjkbJ4vpobkbUg5OJtEnVqqz0,1180
|
2908
2909
|
esphome/components/stepper/__init__.py,sha256=tkldh7xYOjm3-Y-v7CuV7pPRNA89Ga2IOWsR8GtBHiA,5712
|
2909
2910
|
esphome/components/stepper/stepper.cpp,sha256=aAcX9qROk2DqIM5xyIOxxr9u7V4Pjm8os2ITI3s6-UA,1522
|
2910
2911
|
esphome/components/stepper/stepper.h,sha256=cWWqN-f2ARieKB3fCIh7U1CJUBqVtRw7bmdJVKKu-sM,3092
|
@@ -2990,8 +2991,8 @@ esphome/components/tem3200/tem3200.cpp,sha256=r6YxuzJu8Qkhon-25-C4mP3SpHy6KewQRi
|
|
2990
2991
|
esphome/components/tem3200/tem3200.h,sha256=LyYVOmO6G9HULqJv9o0uanVKCRsiY4UA7jya8cCQ2nk,977
|
2991
2992
|
esphome/components/template/__init__.py,sha256=4y46sApuV5_H5Biq0amzdLKFmuI8GgBBAJe04btldXY,81
|
2992
2993
|
esphome/components/template/alarm_control_panel/__init__.py,sha256=bAcyBPvv59b2CiBs_y-xRu-IQ8L8I--YD7-0oFcx-A0,5800
|
2993
|
-
esphome/components/template/alarm_control_panel/template_alarm_control_panel.cpp,sha256=
|
2994
|
-
esphome/components/template/alarm_control_panel/template_alarm_control_panel.h,sha256=
|
2994
|
+
esphome/components/template/alarm_control_panel/template_alarm_control_panel.cpp,sha256=QUx-95Pn2YGflvdfCLi61wRub8sAvbR_5fXZF5bJzyU,11428
|
2995
|
+
esphome/components/template/alarm_control_panel/template_alarm_control_panel.h,sha256=sfKpLT_g1FLIvlawYoMjZow6sgl51oybg-yUy8dbU4c,4720
|
2995
2996
|
esphome/components/template/binary_sensor/__init__.py,sha256=l7D1QfHCalE8eKlcXmbVIkGeP9Ir1KQeJ844QesBIqA,2066
|
2996
2997
|
esphome/components/template/binary_sensor/template_binary_sensor.cpp,sha256=3w7GVXhcS_SFcM-TRciY4gKkJ6rGga41VtYslswYuo4,710
|
2997
2998
|
esphome/components/template/binary_sensor/template_binary_sensor.h,sha256=EM4WYLyFbUlVQrvmukiBIjaUqAfaz44p1ZeAKbRZC44,599
|
@@ -3042,8 +3043,8 @@ esphome/components/template/valve/template_valve.cpp,sha256=He6SZaID4XVjOrAUtP-p
|
|
3042
3043
|
esphome/components/template/valve/template_valve.h,sha256=vBtui3-zZjwwjgczaa-NHEvHtThVvLp_sNIH94hj83A,1711
|
3043
3044
|
esphome/components/text/__init__.py,sha256=EZPNxhiTPICOmM54rui_McK-l-ZtDIrWGIQN0mwTffc,4787
|
3044
3045
|
esphome/components/text/automation.h,sha256=UxGU9YHT1aB0Oj99MOyaiN8YbBRsuksNmgCb4Vjb_3Y,750
|
3045
|
-
esphome/components/text/text.cpp,sha256=
|
3046
|
-
esphome/components/text/text.h,sha256=
|
3046
|
+
esphome/components/text/text.cpp,sha256=I4ecfqKke-Hxof8N_J0YnHbDBf05vOeRFV2oQjb6Kto,710
|
3047
|
+
esphome/components/text/text.h,sha256=QUPxkr8CBTst5FtvfIZ6VWIRW8FnX-qH8SKOhi0Zb1Y,1375
|
3047
3048
|
esphome/components/text/text_call.cpp,sha256=3DNZUL_kQNR6z1_6FXTIRTaE22q1J53Lj2Y914UCgV0,1486
|
3048
3049
|
esphome/components/text/text_call.h,sha256=ki3-770vpc8MbIDAJxJEszj3L1xlmgRFjNyX56KJVhI,411
|
3049
3050
|
esphome/components/text/text_traits.h,sha256=wVWGuN7Fsf3MOhUdr6NUyGx4ac-7WlxdOU3YOn5B4pQ,988
|
@@ -3051,8 +3052,8 @@ esphome/components/text_sensor/__init__.py,sha256=jU0DKKQrhpveb1HDxAvC0K3_fPUyAz
|
|
3051
3052
|
esphome/components/text_sensor/automation.h,sha256=JQvC1b0IK_LJ-sRER9EYZBfMD552gMhIyW75ZyJO630,1400
|
3052
3053
|
esphome/components/text_sensor/filter.cpp,sha256=BmVanhIb_j2h7UrrmEgyHLbNXlKcIZWOiswJyW7Cr7E,2620
|
3053
3054
|
esphome/components/text_sensor/filter.h,sha256=N-ncn31mD8wQedGvXCfGiiGRJmDLfIMaxFuKIx-ZpPw,3713
|
3054
|
-
esphome/components/text_sensor/text_sensor.cpp,sha256=
|
3055
|
-
esphome/components/text_sensor/text_sensor.h,sha256=
|
3055
|
+
esphome/components/text_sensor/text_sensor.cpp,sha256=iw7jEJuXK4Akns6g7an7pH0bAU8t6-A1kX7PCA8Eyp0,2375
|
3056
|
+
esphome/components/text_sensor/text_sensor.h,sha256=y_WB0bor4Xhq-snrHxLhZ1YQk5-k-7gfd4dATrwEz_8,2806
|
3056
3057
|
esphome/components/thermostat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
3057
3058
|
esphome/components/thermostat/climate.py,sha256=LYmHFXh72zTKgr9iqt3qsezJV0qogRLEPRSQBX3j13Y,38467
|
3058
3059
|
esphome/components/thermostat/thermostat_climate.cpp,sha256=TLhcY8ZCLhgx3DZdrp6miYKfWfshuXVgFPJ6dXpJs78,63380
|
@@ -3261,8 +3262,8 @@ esphome/components/ultrasonic/ultrasonic_sensor.cpp,sha256=s0Bn48ok1qEBQeCQbm2j-
|
|
3261
3262
|
esphome/components/ultrasonic/ultrasonic_sensor.h,sha256=Xf0Fn8sVX-DdClbrL45Koo9OX5JMIwzpKkhOLLMVmlw,1389
|
3262
3263
|
esphome/components/update/__init__.py,sha256=ZThXnUMh46-SX0csj43FSOpzltSmhw1ITKp6vkrE8k4,4821
|
3263
3264
|
esphome/components/update/automation.h,sha256=7BhYuN0xiQsnU0whERcTPuXa7xmqGZrqN9MjDVtgNCo,613
|
3264
|
-
esphome/components/update/update_entity.cpp,sha256
|
3265
|
-
esphome/components/update/update_entity.h,sha256=
|
3265
|
+
esphome/components/update/update_entity.cpp,sha256=-P52sqr19FXIGAxzG6oSQpsj4zlpyPUb0BdYhc0fm1U,1141
|
3266
|
+
esphome/components/update/update_entity.h,sha256=E1cp9IZ9u8uXTJcY8dAy0O54du2pGLeua_JWZZmYMmA,1151
|
3266
3267
|
esphome/components/uponor_smatrix/__init__.py,sha256=ICulytl6S-4mDmDdJeBNfLeFxEmXpSHEib-56IH5dbQ,2290
|
3267
3268
|
esphome/components/uponor_smatrix/uponor_smatrix.cpp,sha256=yzkivroo2NyqmvuBdCYL7n1XAi1tgwGyluiC2qVKSyM,7771
|
3268
3269
|
esphome/components/uponor_smatrix/uponor_smatrix.h,sha256=f5S5m94N6-kIjOD6o8YzL-L_KNQgyKTUwVnhZdTZ-fI,4106
|
@@ -3276,7 +3277,7 @@ esphome/components/uptime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
|
|
3276
3277
|
esphome/components/uptime/sensor/__init__.py,sha256=Zh2E4J38HQqSfGEAzQjOnKbbvWx7mDxtzg2Y1liT4c4,1856
|
3277
3278
|
esphome/components/uptime/sensor/uptime_seconds_sensor.cpp,sha256=fuWwd8kdmFE_VuYN9S0uAomG5VRVmax8J-rGy7fDO-Y,1348
|
3278
3279
|
esphome/components/uptime/sensor/uptime_seconds_sensor.h,sha256=snxpzCtbaP7ozWrlsoebgYdvTk9ZOjNTiBu8_y1kbfs,450
|
3279
|
-
esphome/components/uptime/sensor/uptime_timestamp_sensor.cpp,sha256
|
3280
|
+
esphome/components/uptime/sensor/uptime_timestamp_sensor.cpp,sha256=-FAas4VMax6hhHZYWtg_ZUmbcsajx0Jxyj9IRXeROjY,1031
|
3280
3281
|
esphome/components/uptime/sensor/uptime_timestamp_sensor.h,sha256=7SkfWvU2rfIGUg8fM-hOM_JV5qVYT2KzB4GXYv0GWHI,608
|
3281
3282
|
esphome/components/uptime/text_sensor/__init__.py,sha256=b8dj_xoRPd-bzjp0O91I9NFf-iIPzeYjx3eC2nZOYh8,1718
|
3282
3283
|
esphome/components/uptime/text_sensor/uptime_text_sensor.cpp,sha256=9kXOUyFFojTm7QbHMKF0Irf8vXKowEgOJokDMl7zrBI,2213
|
@@ -3349,13 +3350,13 @@ esphome/components/web_server/web_server_v1.cpp,sha256=Ri32qveJXRPxCpgWz-0Eo3it2
|
|
3349
3350
|
esphome/components/web_server_base/__init__.py,sha256=LoNl37e466BYz6tST9mhSanB2vcPl1LSjKaulZZYFTE,1122
|
3350
3351
|
esphome/components/web_server_base/web_server_base.cpp,sha256=Fgu2ECOFtjZOXfr45cWdccfrLrwHUyQIAOgvH3bhOLE,3367
|
3351
3352
|
esphome/components/web_server_base/web_server_base.h,sha256=L0TBleoo3qQ3uh90GfFT3RnEDj6hEh2aRuGB_VTOU3E,4675
|
3352
|
-
esphome/components/web_server_idf/__init__.py,sha256=
|
3353
|
+
esphome/components/web_server_idf/__init__.py,sha256=suQYP-zxgx9bk7qmUVQ0P8FkwXqajUKDoEwenxD20Hg,409
|
3353
3354
|
esphome/components/web_server_idf/utils.cpp,sha256=KWcEjTSJG4FgGl8b7MYc43vpR-BJqXnyfbH6VX_gDHw,2048
|
3354
3355
|
esphome/components/web_server_idf/utils.h,sha256=0KdOXbDhmi_giR2_70RgMuwFsZFlFp4AZ--RVwp1W4A,519
|
3355
|
-
esphome/components/web_server_idf/web_server_idf.cpp,sha256=
|
3356
|
-
esphome/components/web_server_idf/web_server_idf.h,sha256=
|
3356
|
+
esphome/components/web_server_idf/web_server_idf.cpp,sha256=wwYUwZwFB7FucANbA3SihQfVVqfkzvpQH5oyElzVEuE,16948
|
3357
|
+
esphome/components/web_server_idf/web_server_idf.h,sha256=19zw57mTa2v8yS80-kHzHEs7Qmxx2eEjx13zuQklkcI,12151
|
3357
3358
|
esphome/components/weikai/__init__.py,sha256=La3-TGypeigmzkwDnHVRm0M6up_pRQVIw09Ip8YkiI8,3629
|
3358
|
-
esphome/components/weikai/weikai.cpp,sha256
|
3359
|
+
esphome/components/weikai/weikai.cpp,sha256=-F6VuJTVOcgkC0y0ArFnb7Y1OaTOZbakKUEUEcl4nSg,19566
|
3359
3360
|
esphome/components/weikai/weikai.h,sha256=Sm0oOP2fdzLXnyRcCB-bfOQTYbavNLNOX9M_As89bz0,18524
|
3360
3361
|
esphome/components/weikai/wk_reg_def.h,sha256=mn2Ds5UBaDrawn4GmhZGbdq7HsddI4FdIkB7h7itN2g,15509
|
3361
3362
|
esphome/components/weikai_i2c/__init__.py,sha256=Cm-PtMFji7HXVnU2IPp7v4UB-e0Ls4-SQMnm-L7SjS4,28
|
@@ -3535,14 +3536,14 @@ esphome/components/zyaura/sensor.py,sha256=cSmO4ozYdi4ZD7NK4lmYjswWVmJoDvEruU1Hh
|
|
3535
3536
|
esphome/components/zyaura/zyaura.cpp,sha256=F7WM8XAZ5MYuCD3eERm2_IA-O7sP1i-A-yF5TV4PqX8,3679
|
3536
3537
|
esphome/components/zyaura/zyaura.h,sha256=yWrcYj_CnLDyopkuIVySJy5dB-R5X9zwm5fWjBDTSts,2384
|
3537
3538
|
esphome/core/__init__.py,sha256=casNDxXlJzeg0BbxF7DRmgV9M9ig_6A2k65AagPd2ao,27777
|
3538
|
-
esphome/core/application.cpp,sha256=
|
3539
|
-
esphome/core/application.h,sha256=
|
3539
|
+
esphome/core/application.cpp,sha256=796JKydgqcLJda901XwyKZ-8NWTXaIfxBZPvmTWnsvI,11829
|
3540
|
+
esphome/core/application.h,sha256=a4k3vTFqEYuQui7G2rVXTLa_MZPX7Qcsd7hr6LMcU2Y,22478
|
3540
3541
|
esphome/core/automation.h,sha256=luxlfmVa5u5JNUbOUdu80YQ9mPThw1jyld3WOmPlo00,7362
|
3541
3542
|
esphome/core/base_automation.h,sha256=wAJu_yy1tDjwARdCZ312t7anzR9dBF_54qiXm1sy-_g,11216
|
3542
3543
|
esphome/core/color.cpp,sha256=w-ZjkOzdIhrcAHcx0N_QfMxbEdulc6qU4ruigK2snSY,246
|
3543
3544
|
esphome/core/color.h,sha256=JSVK8Gq7vuv6sLW4vB_uKgMPdHB-NTHLnRewyuwJnns,6472
|
3544
|
-
esphome/core/component.cpp,sha256=
|
3545
|
-
esphome/core/component.h,sha256=
|
3545
|
+
esphome/core/component.cpp,sha256=5HKR6X8SKYsP4G3IkYyIMVRRf5WsOvnuDAGjJLYv16s,11303
|
3546
|
+
esphome/core/component.h,sha256=kWM9vValrFAj9jmtnOTdQV8Nzpo9IzHwVn78DxkxWwQ,13684
|
3546
3547
|
esphome/core/component_iterator.cpp,sha256=TUu2K34ATYa1Qyf2s-sZJBksAiFIGj3egzbDKPuFtTQ,11117
|
3547
3548
|
esphome/core/component_iterator.h,sha256=cjacKgRrlxl-VwPOysfBJZNK0NMzcc-w9xXn82m5dYc,3599
|
3548
3549
|
esphome/core/config.py,sha256=M9XL6OyJBX9in32sO5scjE3C78WbE1AdGquLDJMRyHs,14639
|
@@ -3551,13 +3552,13 @@ esphome/core/controller.h,sha256=PXCcMqYpq0xjFCdlOKv6WuYlcETnB4sq3UQWdOTt9PU,372
|
|
3551
3552
|
esphome/core/datatypes.h,sha256=wN8xro8vqXT13w9KvVOXeQfBwlI_WQZ6uFaIGyub67E,2114
|
3552
3553
|
esphome/core/defines.h,sha256=YePCd1o60gWSI9osD2EH9faOxEOiWqHDMpl8gnJfBQA,5501
|
3553
3554
|
esphome/core/doxygen.h,sha256=9fAJ2T-1z96-NYnj63vQhsnKthHBrh3EqBnY0h3ZN-A,439
|
3554
|
-
esphome/core/entity_base.cpp,sha256=
|
3555
|
-
esphome/core/entity_base.h,sha256=
|
3555
|
+
esphome/core/entity_base.cpp,sha256=ZU44BlMSBMVrwxjUt9T1fjbrGBPGmV9LNBxl3mYZ89k,2593
|
3556
|
+
esphome/core/entity_base.h,sha256=7DWRW8RsViaTK5bCHf9vH_5SCzrxdiGb8UyDvSqOiSk,3582
|
3556
3557
|
esphome/core/entity_helpers.py,sha256=s5lYCG5hu_1SROtSWgzI0T6802l5-I8udGy1_6HNSdc,2337
|
3557
3558
|
esphome/core/gpio.h,sha256=kLkCnPxu4_1CsLR4BI_Baj1lDGoRIh8uubbwsIkJPIA,2575
|
3558
3559
|
esphome/core/hal.h,sha256=Le0-vtdDylYCaE9i4yvrv5-Y5PB5xoL3PM2FfMJsIeA,970
|
3559
3560
|
esphome/core/helpers.cpp,sha256=8K7bgflIcrDZqIVf8Cc0hh0-fFSgAJAqrDR7MsYJl-g,25140
|
3560
|
-
esphome/core/helpers.h,sha256=
|
3561
|
+
esphome/core/helpers.h,sha256=cmT3ggnkspfREn1dqyKnUbw8p9eGy0Qgst9gCUfOk8Y,30325
|
3561
3562
|
esphome/core/log.cpp,sha256=MDCx87ytW6Fz6basxYUpagkubFzUKO1ysvU5RXbXoII,1581
|
3562
3563
|
esphome/core/log.h,sha256=Sc4uD1XuOk4eNiC9iyFErRxHB6qhKszsnvE76_2hsG8,6520
|
3563
3564
|
esphome/core/log_const_en.h,sha256=zrLwl0tQmh1pkNB1bq8lqLdJKbo7_dFmppRI7hVKAf8,133
|
@@ -3594,9 +3595,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3594
3595
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3595
3596
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3596
3597
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3597
|
-
esphome-2025.6.
|
3598
|
-
esphome-2025.6.
|
3599
|
-
esphome-2025.6.
|
3600
|
-
esphome-2025.6.
|
3601
|
-
esphome-2025.6.
|
3602
|
-
esphome-2025.6.
|
3598
|
+
esphome-2025.6.0b2.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3599
|
+
esphome-2025.6.0b2.dist-info/METADATA,sha256=WJv_h6dV_s2gEIWv2P15FqC_Bt7L3JHSWNJ_pK0Vz-Y,3680
|
3600
|
+
esphome-2025.6.0b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3601
|
+
esphome-2025.6.0b2.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3602
|
+
esphome-2025.6.0b2.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3603
|
+
esphome-2025.6.0b2.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|