esphome 2024.6.6__py3-none-any.whl → 2024.7.0__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/aht10/aht10.cpp +4 -2
- esphome/components/climate/climate.cpp +10 -6
- esphome/components/climate/climate_traits.h +3 -3
- esphome/components/cover/cover.h +2 -2
- esphome/components/esp32_camera/__init__.py +6 -3
- esphome/components/esp32_can/canbus.py +3 -0
- esphome/components/ethernet/ethernet_component.cpp +8 -3
- esphome/components/font/__init__.py +2 -28
- esphome/components/gree/climate.py +1 -0
- esphome/components/gree/gree.cpp +11 -3
- esphome/components/gree/gree.h +5 -1
- esphome/components/haier/binary_sensor/__init__.py +4 -4
- esphome/components/haier/button/__init__.py +1 -1
- esphome/components/haier/climate.py +43 -9
- esphome/components/haier/haier_base.cpp +4 -0
- esphome/components/haier/haier_base.h +11 -1
- esphome/components/haier/hon_climate.cpp +109 -55
- esphome/components/haier/hon_climate.h +7 -1
- esphome/components/haier/hon_packet.h +5 -0
- esphome/components/haier/sensor/__init__.py +5 -5
- esphome/components/haier/smartair2_climate.cpp +1 -0
- esphome/components/haier/text_sensor/__init__.py +4 -4
- esphome/components/heatpumpir/climate.py +12 -5
- esphome/components/heatpumpir/heatpumpir.cpp +11 -0
- esphome/components/heatpumpir/heatpumpir.h +11 -0
- esphome/components/http_request/http_request_arduino.cpp +7 -2
- esphome/components/http_request/update/http_request_update.cpp +6 -7
- esphome/components/http_request/update/http_request_update.h +0 -3
- esphome/components/i2s_audio/__init__.py +10 -0
- esphome/components/i2s_audio/microphone/__init__.py +7 -0
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp +2 -3
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.h +3 -0
- esphome/components/image/__init__.py +2 -29
- esphome/components/improv_serial/improv_serial_component.cpp +9 -8
- esphome/components/ltr390/ltr390.cpp +44 -29
- esphome/components/ltr390/ltr390.h +9 -5
- esphome/components/ltr390/sensor.py +35 -5
- esphome/components/mdns/__init__.py +3 -3
- esphome/components/mdns/mdns_component.cpp +3 -1
- esphome/components/mdns/mdns_component.h +3 -1
- esphome/components/mdns/mdns_esp32.cpp +2 -1
- esphome/components/mdns/mdns_esp8266.cpp +2 -1
- esphome/components/mdns/mdns_host.cpp +2 -1
- esphome/components/mdns/mdns_libretiny.cpp +2 -1
- esphome/components/mdns/mdns_rp2040.cpp +2 -1
- esphome/components/micro_wake_word/__init__.py +205 -56
- esphome/components/micro_wake_word/micro_wake_word.cpp +225 -275
- esphome/components/micro_wake_word/micro_wake_word.h +77 -107
- esphome/components/micro_wake_word/preprocessor_settings.h +20 -0
- esphome/components/micro_wake_word/streaming_model.cpp +189 -0
- esphome/components/micro_wake_word/streaming_model.h +84 -0
- esphome/components/mitsubishi/mitsubishi.cpp +1 -0
- esphome/components/modbus_controller/text_sensor/__init__.py +2 -1
- esphome/components/modbus_controller/text_sensor/modbus_textsensor.cpp +4 -1
- esphome/components/modbus_controller/text_sensor/modbus_textsensor.h +1 -1
- esphome/components/number/__init__.py +2 -0
- esphome/components/ota/ota_backend_arduino_esp32.cpp +22 -7
- esphome/components/ota/ota_backend_arduino_esp8266.cpp +23 -8
- esphome/components/ota/ota_backend_arduino_libretiny.cpp +22 -7
- esphome/components/ota/ota_backend_arduino_rp2040.cpp +22 -7
- esphome/components/pmsa003i/pmsa003i.cpp +9 -0
- esphome/components/qspi_amoled/display.py +16 -4
- esphome/components/qspi_amoled/qspi_amoled.cpp +16 -0
- esphome/components/qspi_amoled/qspi_amoled.h +0 -3
- esphome/components/remote_base/dooya_protocol.cpp +4 -4
- esphome/components/remote_base/rc_switch_protocol.cpp +1 -1
- esphome/components/restart/button/__init__.py +2 -0
- esphome/components/script/__init__.py +1 -1
- esphome/components/sensor/__init__.py +2 -0
- esphome/components/tuya/tuya.cpp +8 -2
- esphome/components/tuya/tuya.h +3 -1
- esphome/components/uart/__init__.py +72 -9
- esphome/components/uart/uart_component_esp32_arduino.cpp +18 -4
- esphome/components/uart/uart_component_esp_idf.cpp +22 -2
- esphome/components/uart/uart_component_host.cpp +295 -0
- esphome/components/uart/uart_component_host.h +38 -0
- esphome/components/uptime/sensor.py +44 -11
- esphome/components/uptime/{uptime_sensor.cpp → uptime_seconds_sensor.cpp} +11 -7
- esphome/components/uptime/{uptime_sensor.h → uptime_seconds_sensor.h} +2 -2
- esphome/components/uptime/uptime_timestamp_sensor.cpp +39 -0
- esphome/components/uptime/uptime_timestamp_sensor.h +30 -0
- esphome/components/veml7700/veml7700.cpp +1 -1
- esphome/components/veml7700/veml7700.h +5 -5
- esphome/components/voice_assistant/voice_assistant.cpp +4 -2
- esphome/components/web_server/server_index_v2.h +42 -41
- esphome/components/web_server/server_index_v3.h +368 -367
- esphome/components/wifi/wifi_component_esp_idf.cpp +1 -1
- esphome/components/wifi/wifi_component_pico_w.cpp +18 -2
- esphome/components/wireguard/__init__.py +1 -1
- esphome/components/x9c/output.py +7 -1
- esphome/const.py +2 -1
- esphome/core/defines.h +1 -0
- esphome/core/helpers.cpp +2 -2
- esphome/core/helpers.h +1 -1
- esphome/external_files.py +26 -0
- {esphome-2024.6.6.dist-info → esphome-2024.7.0.dist-info}/METADATA +1 -1
- {esphome-2024.6.6.dist-info → esphome-2024.7.0.dist-info}/RECORD +101 -95
- esphome/components/micro_wake_word/audio_preprocessor_int8_model_data.h +0 -493
- {esphome-2024.6.6.dist-info → esphome-2024.7.0.dist-info}/LICENSE +0 -0
- {esphome-2024.6.6.dist-info → esphome-2024.7.0.dist-info}/WHEEL +0 -0
- {esphome-2024.6.6.dist-info → esphome-2024.7.0.dist-info}/entry_points.txt +0 -0
- {esphome-2024.6.6.dist-info → esphome-2024.7.0.dist-info}/top_level.txt +0 -0
@@ -5,13 +5,13 @@ esphome/codegen.py,sha256=LCJVpAwy1L9DTBsIvbgAbHj1TOXUSPgBoN--aio0gBk,1855
|
|
5
5
|
esphome/config.py,sha256=wztK2UmO7-hc6HFDAi6YWtrPVy5mH0diKuqpsWp4-XA,39616
|
6
6
|
esphome/config_helpers.py,sha256=MKf_wzO35nn41FvigXE0iYKDslPgL2ruf8R-EPtTT2I,3256
|
7
7
|
esphome/config_validation.py,sha256=G79LGVIh5BdpGkzuehkm7Db_llpbC2of4dKqZEpHc3A,64838
|
8
|
-
esphome/const.py,sha256=
|
8
|
+
esphome/const.py,sha256=Rly9E-5HSTggdbUJYP0G4PFtZiQl2oHzDDCq_YtoDqs,38952
|
9
9
|
esphome/coroutine.py,sha256=IG2kC92OrenyiRm7Qo9uC-4qU4b4-Lmj0TkMIjRG2RY,9344
|
10
10
|
esphome/cpp_generator.py,sha256=hW2EfubUiildhKXZIdV8Dr3Q9TM5oHybFwiTo5-vEUE,31203
|
11
11
|
esphome/cpp_helpers.py,sha256=KadRBBoo4QRT-VwdWFtvxv_FYjqhZTkBhfMX-JhEMwg,4803
|
12
12
|
esphome/cpp_types.py,sha256=e4e7bEc_tuH_tVlU1ninne7fYuMFa1SdUzN99OQ-i4g,1787
|
13
13
|
esphome/espota2.py,sha256=KuDuWCn_IHd3VBmVf2T00T1k25l3ty63_WluRMirYKs,11760
|
14
|
-
esphome/external_files.py,sha256=
|
14
|
+
esphome/external_files.py,sha256=UapOnyN9K1_KGzSY5pT2wsCxNC3TZCfYPtgSmILsRwE,3353
|
15
15
|
esphome/final_validate.py,sha256=oW3hlx3K7fuyEZ6N7R4L-_LLXMY622DSEIU78smsUfk,1898
|
16
16
|
esphome/git.py,sha256=8aWhZmApkYn_fcfgLiZlfhOKfNJHHkD4ReB5M9es8ns,6296
|
17
17
|
esphome/helpers.py,sha256=oemmoxyMo8cQd_fThxQ9lj6LS9ZNPFcLrSk9uscUKI0,10454
|
@@ -104,7 +104,7 @@ esphome/components/ags10/ags10.cpp,sha256=jtvTYeZeI2Uq4jEADc-VndYEDPKXssLHRuRwhx
|
|
104
104
|
esphome/components/ags10/ags10.h,sha256=pZP8RAAzkp3nQZv-oTN0jaEbrv8jjikV6EfAAdVUJVU,3600
|
105
105
|
esphome/components/ags10/sensor.py,sha256=oddJHNHS6_U4CA4QgU8Bn-NhjVCDkJDfMVXtndWEj70,4258
|
106
106
|
esphome/components/aht10/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
107
|
-
esphome/components/aht10/aht10.cpp,sha256=
|
107
|
+
esphome/components/aht10/aht10.cpp,sha256=QhcSDPRoCMGAMeiiibjUqaT7Zdn9aehYda6sbcDt7Cc,6193
|
108
108
|
esphome/components/aht10/aht10.h,sha256=FUL-REZboZSfPlQteMh1pWveQHB27FPJOqCvT5cMbms,1005
|
109
109
|
esphome/components/aht10/sensor.py,sha256=OqR-FjFMAfyrSWVNGZCgi5it0CFvkrjkhAjPNhaInfU,2013
|
110
110
|
esphome/components/airthings_ble/__init__.py,sha256=HuY9Cowue4_SF3HtSQ6VUAvoYHUm2a8yMhuIuqlvCug,667
|
@@ -421,12 +421,12 @@ esphome/components/cd74hc4067/cd74hc4067.h,sha256=TrFuZ2-hLWxpS1gmg4fHDb2jUZa_HB
|
|
421
421
|
esphome/components/cd74hc4067/sensor.py,sha256=a2yXhXZ05NeCsb6Q3gyopgbt_hArPYqz4TjBy7qW3_g,1487
|
422
422
|
esphome/components/climate/__init__.py,sha256=GlD9A9C8aeUiZFH7JvO9wNOularSvt1lF9giF_SOEjw,19603
|
423
423
|
esphome/components/climate/automation.h,sha256=YxlOa_s6NJLFubHx4-GQBbMKMqfifPsNyf2XWpYDSqQ,2147
|
424
|
-
esphome/components/climate/climate.cpp,sha256=
|
424
|
+
esphome/components/climate/climate.cpp,sha256=m4gW-mZwz1G9wk0eoLmk8XYldNbReMPhdvRD_4Az-6s,26530
|
425
425
|
esphome/components/climate/climate.h,sha256=X_5MnFxhGE3v74NA8PZgM89Vgg41X7pDR7DW752Ox00,12643
|
426
426
|
esphome/components/climate/climate_mode.cpp,sha256=rnU6iMxkhvTFph0RevwaEx_PIa2axPnebutIWs05xXk,3144
|
427
427
|
esphome/components/climate/climate_mode.h,sha256=qeJzD4TxuWzK-dL9El7Quzmy9cbrztvKloZg3erJXx0,3853
|
428
428
|
esphome/components/climate/climate_traits.cpp,sha256=XotFyerOjvJwAl81_99VAKcw982m7Lf6mcTCNIF28gA,422
|
429
|
-
esphome/components/climate/climate_traits.h,sha256=
|
429
|
+
esphome/components/climate/climate_traits.h,sha256=GOwwusVa1ZdTsZD-rfPN6wia3oVbkFb1a6-jVgQ_AIo,12742
|
430
430
|
esphome/components/climate_ir/__init__.py,sha256=xSe-ui5khS_1hd31amxoM6Br04g5ABS4lGbnmX7rBiE,1656
|
431
431
|
esphome/components/climate_ir/climate_ir.cpp,sha256=OCUMcZ-qkrRm_-uxJLC6s3bI5nBdsAV87BF91QiwgKo,3167
|
432
432
|
esphome/components/climate_ir/climate_ir.h,sha256=PHhLlcRDwD2RBMtGljfIeLxevyXtujt3LthP3N48gVQ,2760
|
@@ -483,7 +483,7 @@ esphome/components/copy/text_sensor/copy_text_sensor.h,sha256=hqzlFlSVGIheaLBqq8
|
|
483
483
|
esphome/components/cover/__init__.py,sha256=8N7kmoru_Dx9sfXgLVohX9DaWj_ElA1QyOwExtlACrM,8369
|
484
484
|
esphome/components/cover/automation.h,sha256=hfl7gIMITw-AB2MkQiJFSlcZx_No5_ggDlHpaIHMXZc,3503
|
485
485
|
esphome/components/cover/cover.cpp,sha256=JBOBWZb5ImaJRuNbcmxvMxKXPpHYGVihYrLOUvyePE8,6935
|
486
|
-
esphome/components/cover/cover.h,sha256=
|
486
|
+
esphome/components/cover/cover.h,sha256=0I32rynJGr3wZHGhTSEusfjuaa4Gx93ElJAL8MfIT6Q,6022
|
487
487
|
esphome/components/cover/cover_traits.h,sha256=0DesZ6GmrdzXWgBQOrtQaOqAjbnRTQ90MSV_F7YREH4,1151
|
488
488
|
esphome/components/cs5460a/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
489
489
|
esphome/components/cs5460a/cs5460a.cpp,sha256=PUaN96LH-hKR08dzFUPFp_6M4GL8B1pfIM6svQRUTgI,10805
|
@@ -768,14 +768,14 @@ esphome/components/esp32_ble_tracker/__init__.py,sha256=AQzgrlm2M8yJGHonr8zBZrrN
|
|
768
768
|
esphome/components/esp32_ble_tracker/automation.h,sha256=0pDA6EX__f14sT0KJwcnqg7UOsueKjjegHPznQj9biw,3795
|
769
769
|
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=8onqXeXMzyfcKcgFjqxh6eqv9fXxeacEDnlL7YgJTrk,26335
|
770
770
|
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=D2Tl9kmxM5NclVzxjcHR-th2_CfEvEvZXiGGNc0Bv98,8913
|
771
|
-
esphome/components/esp32_camera/__init__.py,sha256
|
771
|
+
esphome/components/esp32_camera/__init__.py,sha256=cm8220vtMNSiiiT-MvsY9Q8pGx6WvVPvYS9bY8sq-4s,12430
|
772
772
|
esphome/components/esp32_camera/esp32_camera.cpp,sha256=0KrZmjP7jDL0kANJG4O6KeZQ8ANPLN18L_B4-WUuKTA,16535
|
773
773
|
esphome/components/esp32_camera/esp32_camera.h,sha256=RSztqvV5BzGbGmy0FwUMI3VFsqc2vPTVXy08xMStRp0,7462
|
774
774
|
esphome/components/esp32_camera_web_server/__init__.py,sha256=_Nuf7iCtQSn78Ib96054F_Qqf4842UCyX6Lfo4kI5Z0,920
|
775
775
|
esphome/components/esp32_camera_web_server/camera_web_server.cpp,sha256=rguN-bI60pFVM9DhxkB5WVkuIhnkWCiao4izos5s2OQ,6933
|
776
776
|
esphome/components/esp32_camera_web_server/camera_web_server.h,sha256=o54AcHRtHtBeb194Ne56asimChEIddYwzQ77SoKXgKc,1265
|
777
777
|
esphome/components/esp32_can/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
778
|
-
esphome/components/esp32_can/canbus.py,sha256=
|
778
|
+
esphome/components/esp32_can/canbus.py,sha256=SxdzxCCbozEVNtuPdYK_GiRPsFfhxghbZ9tWX9gdCJU,2833
|
779
779
|
esphome/components/esp32_can/esp32_can.cpp,sha256=e831uu_aPoYPrHImuP5CCHZX6o-iX1Ai4DdsNo7uyT8,4637
|
780
780
|
esphome/components/esp32_can/esp32_can.h,sha256=6WJH7EqLwB8ixgEfN7fQOoqovNvgfXe93jl4VsFwFZ0,578
|
781
781
|
esphome/components/esp32_dac/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -818,7 +818,7 @@ esphome/components/esphome/ota/ota_esphome.cpp,sha256=k2mo3SWZvQXLCZIeEIb_d6IV8D
|
|
818
818
|
esphome/components/esphome/ota/ota_esphome.h,sha256=8j_EDYbc7UiALElGt6NN834RDfCxD8oLHkJbhyaXtV4,1118
|
819
819
|
esphome/components/ethernet/__init__.py,sha256=5mP3op-0A0eSGc8NyrmzEEPaDgt4pBj2NKFubj7E7tw,8821
|
820
820
|
esphome/components/ethernet/esp_eth_phy_jl1101.c,sha256=vcT2EJ2S2i6q_vzmRyJY1pod5C05oMW3EpjFHF008L4,12572
|
821
|
-
esphome/components/ethernet/ethernet_component.cpp,sha256=
|
821
|
+
esphome/components/ethernet/ethernet_component.cpp,sha256=Ct5J1DnFYoY12YrPh57TjDHl3W3Cn5hU4oprXRU6hlA,22589
|
822
822
|
esphome/components/ethernet/ethernet_component.h,sha256=qOv56iV1EiPlKy7jsaAXT20gNOPaYyHGnrorgGXzvAo,4232
|
823
823
|
esphome/components/ethernet_info/__init__.py,sha256=LoiZr_nRyJfR5w1ZWOFppOVTQRwlgmHU-boDala2fLA,33
|
824
824
|
esphome/components/ethernet_info/ethernet_info_text_sensor.cpp,sha256=nfP7xeusvbzee1KHfuipELWvF1vmuk_2e4G_NlLeJ3M,564
|
@@ -873,7 +873,7 @@ esphome/components/fingerprint_grow/binary_sensor.py,sha256=NeVcqVCpmjGdnfimIIWS
|
|
873
873
|
esphome/components/fingerprint_grow/fingerprint_grow.cpp,sha256=Nip7c1baE8bKItUBO8bo0LKBBx-lphFC_jyd5mrVBuk,18670
|
874
874
|
esphome/components/fingerprint_grow/fingerprint_grow.h,sha256=zHx_VcD3_CWPUEaaSSPIajXuowWemCazSwJtQjH9x0U,11187
|
875
875
|
esphome/components/fingerprint_grow/sensor.py,sha256=eazvZvdtt1Rl8o3Aw6eYKn-kb2sNDfZKHegxpFFdQeg,2244
|
876
|
-
esphome/components/font/__init__.py,sha256=
|
876
|
+
esphome/components/font/__init__.py,sha256=Z4deDgYukUp7Puw15ipTOnuYR78BNpLUVKJ7hwHeP1o,14672
|
877
877
|
esphome/components/font/font.cpp,sha256=wIMp_-KGtF6q0sVaeP6T8IjR6YiQcyGMbwLC8Zh3MfU,5299
|
878
878
|
esphome/components/font/font.h,sha256=DOER6vAuu3wT30pQRykOLUjkz8rJuvJ-_fHtHcbuC0s,1900
|
879
879
|
esphome/components/fs3000/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -935,9 +935,9 @@ esphome/components/graphical_display_menu/__init__.py,sha256=z6JlRNjj-4aIntk1eau
|
|
935
935
|
esphome/components/graphical_display_menu/graphical_display_menu.cpp,sha256=_1xbdf6a_krZS-xD8D4kRW32QPz68zWs-MrXLOYYThU,9146
|
936
936
|
esphome/components/graphical_display_menu/graphical_display_menu.h,sha256=wxHyShfCIFDgvppSatvxAYPSnGNjYF9uuh-sloI53MI,2957
|
937
937
|
esphome/components/gree/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
938
|
-
esphome/components/gree/climate.py,sha256=
|
939
|
-
esphome/components/gree/gree.cpp,sha256=
|
940
|
-
esphome/components/gree/gree.h,sha256=
|
938
|
+
esphome/components/gree/climate.py,sha256=N7RLWNnRkJmAHk4m0nijnZvXczZ3WvmR04YEFuEtlqo,878
|
939
|
+
esphome/components/gree/gree.cpp,sha256=dY61ahWQPiPHy0lz_v16UB2Wt2ufAzbv2UPqQ4JEFpk,4661
|
940
|
+
esphome/components/gree/gree.h,sha256=34rO3QEk_XRH6Rlsp4IAGhq-kbrllX8smKO5pgoapBE,3133
|
941
941
|
esphome/components/grove_tb6612fng/__init__.py,sha256=uBNNMEIypUDnhQGMf3Z0R3LQWBt59Fh7kNNeIJSMmGc,5292
|
942
942
|
esphome/components/grove_tb6612fng/grove_tb6612fng.cpp,sha256=e_OgyvaVhOkO_xQOwkZefR4j8sv1wZ1irmSNR7lwLBI,5001
|
943
943
|
esphome/components/grove_tb6612fng/grove_tb6612fng.h,sha256=mg0LACEr0dCVSxb3y2_WMP7rBekbTrL_01y5tmtFV1E,7666
|
@@ -954,25 +954,25 @@ esphome/components/gt911/touchscreen/gt911_touchscreen.cpp,sha256=mBn0zSBXN7Oovn
|
|
954
954
|
esphome/components/gt911/touchscreen/gt911_touchscreen.h,sha256=14aG7nVJu6nvCuOwa1aoXLGP-e9uevjLkrFz1x4KYGE,938
|
955
955
|
esphome/components/haier/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
956
956
|
esphome/components/haier/automation.h,sha256=xHnMbqHWFwtibKxgqLraPeNlKLWv2_AT7VX0aMVYtr8,3688
|
957
|
-
esphome/components/haier/climate.py,sha256=
|
958
|
-
esphome/components/haier/haier_base.cpp,sha256=
|
959
|
-
esphome/components/haier/haier_base.h,sha256=
|
960
|
-
esphome/components/haier/hon_climate.cpp,sha256=
|
961
|
-
esphome/components/haier/hon_climate.h,sha256=
|
962
|
-
esphome/components/haier/hon_packet.h,sha256=
|
957
|
+
esphome/components/haier/climate.py,sha256=ygBfU0Ebc7s3w4KZNMAk9sqJqJdwTzp0FrrGKLNGJGI,19771
|
958
|
+
esphome/components/haier/haier_base.cpp,sha256=pvAZTZC7lPEg_YSdjU0kDC7Xa-TArJbOxkHqCY5Z9KQ,15548
|
959
|
+
esphome/components/haier/haier_base.h,sha256=FxkvUN2tdKohdxJKmXUy9PNKxN1d8cMaXS98N0RBT40,7073
|
960
|
+
esphome/components/haier/hon_climate.cpp,sha256=IMm0FxWr4DPmh-h-aV9iiarA3drcalHM9k_bePAGPGA,63170
|
961
|
+
esphome/components/haier/hon_climate.h,sha256=w2lBxd5LYMFwYQuOUDyEe27MtkhDdjYCjAqWl3nfxcA,8358
|
962
|
+
esphome/components/haier/hon_packet.h,sha256=saK4vrc3vAybCm_heUmASk8r3W1RzQDTvQx3SrdSrNI,9753
|
963
963
|
esphome/components/haier/logger_handler.cpp,sha256=FPjk7oSvQnOvZ9u5xX7e8kDgTPT8YAwnRKCFdx-1Auw,1159
|
964
964
|
esphome/components/haier/logger_handler.h,sha256=syhoaUq_rRhwhd2568EbpOMco3gmR6_VD-b_fXdOTfA,272
|
965
|
-
esphome/components/haier/smartair2_climate.cpp,sha256=
|
965
|
+
esphome/components/haier/smartair2_climate.cpp,sha256=s15kAG_morzA1yc0yI6j_wHchpKdlaue7cwbwYz9QFk,23264
|
966
966
|
esphome/components/haier/smartair2_climate.h,sha256=SY0apuaNTUrX8RLw1UZurLna8Cy53STlYDek3hmrLLE,1889
|
967
967
|
esphome/components/haier/smartair2_packet.h,sha256=G7RX31e8TjsihoB29xcbyzsUuiRcwO3v2x5yVD1KCT8,2544
|
968
|
-
esphome/components/haier/binary_sensor/__init__.py,sha256=
|
969
|
-
esphome/components/haier/button/__init__.py,sha256=
|
968
|
+
esphome/components/haier/binary_sensor/__init__.py,sha256=DdOtwRmVCJ_7RFIxPrRb1jMqv2apMVBYZWD5kkJUZNU,2294
|
969
|
+
esphome/components/haier/button/__init__.py,sha256=fHOUN-xwVRqsNwzNvUZYDGL1XM4h0qiH2YQVBKsq1tQ,1154
|
970
970
|
esphome/components/haier/button/self_cleaning.cpp,sha256=Qzjt4cX3GrAtKsK9-9xz7O-q42e4Yjf__2v_2LYKdiE,196
|
971
971
|
esphome/components/haier/button/self_cleaning.h,sha256=5ACjl313ph32t1Jkj1Y49QtNaY2EJLMu51gGGRRYrtw,346
|
972
972
|
esphome/components/haier/button/steri_cleaning.cpp,sha256=bDQNDE-azAKQ-fYqW2LNnEKjZ5fIJ-yRer8E12TM3SU,199
|
973
973
|
esphome/components/haier/button/steri_cleaning.h,sha256=9pehd9dJoXQYfi1QSgt2XkmWtsaLdNSIhVTOecHTtto,348
|
974
|
-
esphome/components/haier/sensor/__init__.py,sha256
|
975
|
-
esphome/components/haier/text_sensor/__init__.py,sha256=
|
974
|
+
esphome/components/haier/sensor/__init__.py,sha256=-NVaO17kEhtOiCusCCD-Dz2JcJFUugy8BUMQnU7GiwQ,5082
|
975
|
+
esphome/components/haier/text_sensor/__init__.py,sha256=cZHgqmD0XQ1gsNoDkXzEaWk4MktaJQUzzK5hhIot838,1601
|
976
976
|
esphome/components/havells_solar/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
977
977
|
esphome/components/havells_solar/havells_solar.cpp,sha256=plqdTc2w6CzUvH5Gutp4qMTgqbkZXEeWRpFgS5NVVY8,8487
|
978
978
|
esphome/components/havells_solar/havells_solar.h,sha256=bYsIWwkGJuIMysgVZS0qjQEB1I_1Izgij3Yzk7QFzFY,5301
|
@@ -993,9 +993,9 @@ esphome/components/he60r/cover.py,sha256=ES3bNeF_3bOMuZuGyHbA0kpMTHtvJ1rjGl00d8Y
|
|
993
993
|
esphome/components/he60r/he60r.cpp,sha256=yR8FiHWRr4ZwAZaUuQgI6n7quPY5FyejpNiX5Yc_6Wg,8710
|
994
994
|
esphome/components/he60r/he60r.h,sha256=9PXOGaUNx8Zfw_ewHAuOpCkgljLjiGvK1bFwBeo5Abo,1449
|
995
995
|
esphome/components/heatpumpir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
996
|
-
esphome/components/heatpumpir/climate.py,sha256=
|
997
|
-
esphome/components/heatpumpir/heatpumpir.cpp,sha256=
|
998
|
-
esphome/components/heatpumpir/heatpumpir.h,sha256=
|
996
|
+
esphome/components/heatpumpir/climate.py,sha256=_bFEV5jvbjvvyLsdp_lch7v4rETmiomoWg-0oo5K4k0,5434
|
997
|
+
esphome/components/heatpumpir/heatpumpir.cpp,sha256=EWcDXuqMULSgdCMRg88ONAwv5ef2KcBhBhz6tHLMxxs,9850
|
998
|
+
esphome/components/heatpumpir/heatpumpir.h,sha256=aBKYfdWD9_6_1-xCDwVv0UFP6FBDpID4Fk2EhoplGFA,3756
|
999
999
|
esphome/components/heatpumpir/ir_sender_esphome.cpp,sha256=MOAYkculr1fFhFIa3_12yLZFblDcWBlvFyr5cQtMYIQ,734
|
1000
1000
|
esphome/components/heatpumpir/ir_sender_esphome.h,sha256=h_W7rXwQ5LzeelRREJ_3Ma99oqnauhaNnFLM-Uz5IBc,662
|
1001
1001
|
esphome/components/hitachi_ac344/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1068,7 +1068,7 @@ esphome/components/hte501/sensor.py,sha256=H7cfhfjQ0lyUgHABpoyiKOaj_f2qhN7nDW-tT
|
|
1068
1068
|
esphome/components/http_request/__init__.py,sha256=iEloLmhwKBRUHqIVjYN0LmxzrIUAMlttDrU7qPP55IU,9336
|
1069
1069
|
esphome/components/http_request/http_request.cpp,sha256=UFpMPffAuE2enh8iBvZzV3EDr7lS-MoLaquDoi5FGEw,705
|
1070
1070
|
esphome/components/http_request/http_request.h,sha256=-QVBxaH5iOFuzuvdmBDrjL81YM63mv3zILS4m8E4Oa4,6758
|
1071
|
-
esphome/components/http_request/http_request_arduino.cpp,sha256=
|
1071
|
+
esphome/components/http_request/http_request_arduino.cpp,sha256=HyePONw2B2095vN-f9WOFkuWkhZSYLYrcwYI5tfzakk,5362
|
1072
1072
|
esphome/components/http_request/http_request_arduino.h,sha256=iaOY5aKpQJREygOoyBB8Nsozp4cfETDt-G6Hgu_pkm0,871
|
1073
1073
|
esphome/components/http_request/http_request_idf.cpp,sha256=7WJQ4woRdTGzeiaI9Aa2Xu0aDX5EAxydE0cbKbGLifE,4382
|
1074
1074
|
esphome/components/http_request/http_request_idf.h,sha256=RmtzXsXsi8M66Lnf6eHbdEK5PIwALlvHyNXVz4skeGQ,774
|
@@ -1079,8 +1079,8 @@ esphome/components/http_request/ota/automation.h,sha256=yQo6nJis0S56r5F-tIPbRPqP
|
|
1079
1079
|
esphome/components/http_request/ota/ota_http_request.cpp,sha256=eqMTyTyssBdVHXxdJ6NaxMylnTOkoKdcXdF2LFHjPA0,8664
|
1080
1080
|
esphome/components/http_request/ota/ota_http_request.h,sha256=X0SFnzhpCY_S7QLJKRiEb7pTTtrj0qWfTSXC_jMLS2E,1787
|
1081
1081
|
esphome/components/http_request/update/__init__.py,sha256=ZBfW-SSgD1GJJo7D48uSZWhbkQLJlOo-pIuCWtruRUQ,1292
|
1082
|
-
esphome/components/http_request/update/http_request_update.cpp,sha256=
|
1083
|
-
esphome/components/http_request/update/http_request_update.h,sha256=
|
1082
|
+
esphome/components/http_request/update/http_request_update.cpp,sha256=7lgYNZRDr8zaZSiLyUITrrjq7hAzZGdcTg9h18rKLa4,5143
|
1083
|
+
esphome/components/http_request/update/http_request_update.h,sha256=ckecRERQUNTOpqgyWcFNPQcngGh8upark9LgU-HUmUQ,1034
|
1084
1084
|
esphome/components/htu21d/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1085
1085
|
esphome/components/htu21d/htu21d.cpp,sha256=3nufzXBSyDxewmIKlJRCLBP7plh4L678b66mTuadNlo,4861
|
1086
1086
|
esphome/components/htu21d/htu21d.h,sha256=0G5jQpY1UeUY4KP2-PcPK5huwOkOOtHjAne9OR6BY-U,1893
|
@@ -1110,15 +1110,15 @@ esphome/components/i2c/i2c_bus_arduino.cpp,sha256=VXWH0NcAgkncjiSbpNjOY2GOJopWPM
|
|
1110
1110
|
esphome/components/i2c/i2c_bus_arduino.h,sha256=7mhPi-tZGVmX9XhmtIBQYv9Of4qTpmhJO-FKQDqsIao,1222
|
1111
1111
|
esphome/components/i2c/i2c_bus_esp_idf.cpp,sha256=UtiYP_soPgE6p22rbRJ67OQDPGsKFYqYL31KSmOCcfI,12912
|
1112
1112
|
esphome/components/i2c/i2c_bus_esp_idf.h,sha256=6h3QKsi2M3AuchqY3qTOJe-FWW6hgA9HfrSFVPCdqag,1454
|
1113
|
-
esphome/components/i2s_audio/__init__.py,sha256=
|
1113
|
+
esphome/components/i2s_audio/__init__.py,sha256=KG_F3w1nFG-dF9DEjhSl5plwcO_hBmYEU8iIZAljP4E,2580
|
1114
1114
|
esphome/components/i2s_audio/i2s_audio.cpp,sha256=DVthNnLWc_nk0Y5Ck1NyvdKavU9IQ6hcHGE11lMfMQw,734
|
1115
1115
|
esphome/components/i2s_audio/i2s_audio.h,sha256=xZxkC9I0YrqsMlOR5RXhfMC1tVfmkLqNmd__VKRwkyk,1313
|
1116
1116
|
esphome/components/i2s_audio/media_player/__init__.py,sha256=jlk-y5UGX8fc4dsXda2HQNyp4Thy5m-YkLOCsD5ZkZo,3556
|
1117
1117
|
esphome/components/i2s_audio/media_player/i2s_audio_media_player.cpp,sha256=OlvkjzYSdaxIjJiQF-BbjThoY91_rvGJ4woRjyB9mwY,7538
|
1118
1118
|
esphome/components/i2s_audio/media_player/i2s_audio_media_player.h,sha256=iUx93Xwi7DgWtyNaHIkJ7FJ2kUK6-fdeTs87opqTcRo,2062
|
1119
|
-
esphome/components/i2s_audio/microphone/__init__.py,sha256=
|
1120
|
-
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256
|
1121
|
-
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=
|
1119
|
+
esphome/components/i2s_audio/microphone/__init__.py,sha256=uPZ7e0pGxbNklDqIoqLcTmvhnSTcQ16q3pSDFIgEy70,3982
|
1120
|
+
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=LfcloU1ws1AGcm5FCyHCdWnLRunVqJB3iGv_RfYHaOE,6122
|
1121
|
+
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=V0QfxCYBu9DUoO1Ui0O7zB2iP-9P_wduN3Cf2b27AWI,1586
|
1122
1122
|
esphome/components/i2s_audio/speaker/__init__.py,sha256=0nzQXnjQaYv7YklVp8Landvz57x-bhrLJuta92LiDXk,2724
|
1123
1123
|
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=C4ZN8HTWiwGtOmL1y3ICnoCH1-iLaB2dPKAz3g26wts,8187
|
1124
1124
|
esphome/components/i2s_audio/speaker/i2s_audio_speaker.h,sha256=q2pF17NGG_MCBUJiBPprzT-IKaQylKX988LrQxtLzBU,1756
|
@@ -1134,14 +1134,14 @@ esphome/components/ili9xxx/ili9xxx_defines.h,sha256=KnlWxCoFgk7LczhpEMgMAoUsS6M_
|
|
1134
1134
|
esphome/components/ili9xxx/ili9xxx_display.cpp,sha256=MzI9kpozFS0vNSU8QunaDJY7scmq47NSugn-s2BDjJc,15807
|
1135
1135
|
esphome/components/ili9xxx/ili9xxx_display.h,sha256=VwYT-mxO46ksdBMoVecpZziKixhYz5eSrICRqOaWvkI,8877
|
1136
1136
|
esphome/components/ili9xxx/ili9xxx_init.h,sha256=DoEE9Rx3HSDFqt7xvs5Url-HFbFe6WflsQfVYMSKLy8,17673
|
1137
|
-
esphome/components/image/__init__.py,sha256
|
1137
|
+
esphome/components/image/__init__.py,sha256=CEtu61zmzslNIy0fXQy5VnrnwTITjE5_NMK_1wV-kvQ,11706
|
1138
1138
|
esphome/components/image/image.cpp,sha256=6qYd_to3vjlOJa828dWeHCYftf3fv0LFrIp18zimYUM,5054
|
1139
1139
|
esphome/components/image/image.h,sha256=J7-IZECZqpxg4UtdcJ5i0Aqn0A84Usv1U7LZ72vh7lY,1743
|
1140
1140
|
esphome/components/improv_base/__init__.py,sha256=9r7mI_71pUHiGghXvlHP4nnSklm6wgusq_DhLQcK0z8,1068
|
1141
1141
|
esphome/components/improv_base/improv_base.cpp,sha256=eh-YebkuhEhZktdNz84oSoigtGAQz2LP0c0lqc29-M4,857
|
1142
1142
|
esphome/components/improv_base/improv_base.h,sha256=VOqjBy5U0Sh8tNOYWQPIkIZWwjisZKY1pf65lOO_Q_s,322
|
1143
1143
|
esphome/components/improv_serial/__init__.py,sha256=AFjbmaHHn72e2WUrneWiE3DIBty9btxFjsWgRt2jmoE,1600
|
1144
|
-
esphome/components/improv_serial/improv_serial_component.cpp,sha256=
|
1144
|
+
esphome/components/improv_serial/improv_serial_component.cpp,sha256=iKIxHFp4MydwdLnDkeTZKTn79JlKm_WfsaPNbR4eG4w,10404
|
1145
1145
|
esphome/components/improv_serial/improv_serial_component.h,sha256=TNP28Qxc7I8VcRS5C7_aVQaISXBthjR5zVX_wDLGjR8,2220
|
1146
1146
|
esphome/components/ina219/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1147
1147
|
esphome/components/ina219/ina219.cpp,sha256=tk0F5y4889lDgfj7XN-P8zQz-5vwDMkRtrv6hil0XPE,6547
|
@@ -1360,9 +1360,9 @@ esphome/components/logger/logger_host.cpp,sha256=h3Its8pHiVvnyOc6rj5zRiug8rLi42f
|
|
1360
1360
|
esphome/components/logger/logger_libretiny.cpp,sha256=-GTn0YT2m2X2JS4H2R6w7kXUWz3w51vvoOB9K9OFDOs,1641
|
1361
1361
|
esphome/components/logger/logger_rp2040.cpp,sha256=7X29d8hO65NIYS7fZoeyCR0oXC2LQcNuSAFtlvSniYw,991
|
1362
1362
|
esphome/components/ltr390/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1363
|
-
esphome/components/ltr390/ltr390.cpp,sha256=
|
1364
|
-
esphome/components/ltr390/ltr390.h,sha256=
|
1365
|
-
esphome/components/ltr390/sensor.py,sha256=
|
1363
|
+
esphome/components/ltr390/ltr390.cpp,sha256=BDI47PlBAE_K1W7Hbj3SawS0MeLi128RHy6ygnH3sDU,6295
|
1364
|
+
esphome/components/ltr390/ltr390.h,sha256=w7sTv9GtcdePbmIPKg8Aad0tY-oHusOxphm0m1Hku70,2429
|
1365
|
+
esphome/components/ltr390/sensor.py,sha256=yKmhehKbAi0dgGEP-3exhc7rB9MFmivOoh33EGsma04,4608
|
1366
1366
|
esphome/components/ltr_als_ps/__init__.py,sha256=nD0ZjC6S7jiLOhzug4Yar22_uA5hzBFW9mMcdxQzYwY,27
|
1367
1367
|
esphome/components/ltr_als_ps/ltr_als_ps.cpp,sha256=a5NBwe7wtJHwLgIDFoollhz1VSDIRerc5E7R6zc4B5U,18256
|
1368
1368
|
esphome/components/ltr_als_ps/ltr_als_ps.h,sha256=TxgTmv7apRGsxHAxDow6-CpkQsdWID2KLk-lSDi7KtQ,6466
|
@@ -1479,14 +1479,14 @@ esphome/components/mcp9808/sensor.py,sha256=71l_lBZ7F3dausUP94mdMUx-1QuGJJqi273u
|
|
1479
1479
|
esphome/components/md5/__init__.py,sha256=jAfqGndh-yPthKBjcOMkhD8BvV-TY_cZjtMN5HATN8o,31
|
1480
1480
|
esphome/components/md5/md5.cpp,sha256=5DSznIWnH6R2rsbUaZiRQqZDysaAOLvt2ADHr5PvnZA,1689
|
1481
1481
|
esphome/components/md5/md5.h,sha256=lMAcTjX--fF-7EPXNwsarl-MMcL8Ez7WNOjq2cNB6rA,1569
|
1482
|
-
esphome/components/mdns/__init__.py,sha256=
|
1483
|
-
esphome/components/mdns/mdns_component.cpp,sha256=
|
1484
|
-
esphome/components/mdns/mdns_component.h,sha256=
|
1485
|
-
esphome/components/mdns/mdns_esp32.cpp,sha256=
|
1486
|
-
esphome/components/mdns/mdns_esp8266.cpp,sha256=
|
1487
|
-
esphome/components/mdns/mdns_host.cpp,sha256=
|
1488
|
-
esphome/components/mdns/mdns_libretiny.cpp,sha256=
|
1489
|
-
esphome/components/mdns/mdns_rp2040.cpp,sha256=
|
1482
|
+
esphome/components/mdns/__init__.py,sha256=uJ0cXEBRA985gS1gh5un7mneRS-g6fbMohOBAjHeFUQ,2909
|
1483
|
+
esphome/components/mdns/mdns_component.cpp,sha256=kSNKYHmAAhHTE0UERqH1ZxGbqaPeEWgQ2ox7u3yjdxo,3675
|
1484
|
+
esphome/components/mdns/mdns_component.h,sha256=C-95CGy4G0lI3PN97akmKtVnET5iiJze3vAMD1LkJSI,1239
|
1485
|
+
esphome/components/mdns/mdns_esp32.cpp,sha256=5KEGkIa4M8HyHUDH9CYabLtD_NTVlaDQzZk3Nha1aiI,1710
|
1486
|
+
esphome/components/mdns/mdns_esp8266.cpp,sha256=vL7EDV3Zw4O3lco43vb0q57GIcZfPdPNU6CTJsNvfjo,1360
|
1487
|
+
esphome/components/mdns/mdns_host.cpp,sha256=H5Phb-CqVmuoKF1LafoRvl8rJjem33Q8iKg2opykyzg,421
|
1488
|
+
esphome/components/mdns/mdns_libretiny.cpp,sha256=j3uX11MTYYO1WEN6X-UyuqMt9i6Fz0MbUgWUvNChwho,1225
|
1489
|
+
esphome/components/mdns/mdns_rp2040.cpp,sha256=AzSFWtVJtq2dA9wJIFkvZvk8r_7oYbdFVtGVRxNBSgg,1306
|
1490
1490
|
esphome/components/media_player/__init__.py,sha256=DUVGJZHqHrsfWKg37TB1q7D16D6KggOUVQOEgFX7ZCA,6832
|
1491
1491
|
esphome/components/media_player/automation.h,sha256=oTbsvFL0bC8VRywUnAhLRI1dt0pSd0sBA6cTcsrloDU,2631
|
1492
1492
|
esphome/components/media_player/media_player.cpp,sha256=bJSxcKtsju4xZie-u89yADZavHYx9hiKaUWt-C-BBmk,3938
|
@@ -1495,10 +1495,12 @@ esphome/components/mhz19/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
|
|
1495
1495
|
esphome/components/mhz19/mhz19.cpp,sha256=CBBVBMqGUsrc-4PMOaBDuKCAFNr43Kukt3a018kQI0k,3924
|
1496
1496
|
esphome/components/mhz19/mhz19.h,sha256=DTuwpBz6gAZVn_QIUnmPiE4Y188XYiOS9WxIggcjZJ4,2050
|
1497
1497
|
esphome/components/mhz19/sensor.py,sha256=IwZAf9K8LE3Ang8I53jjr41hpSwsC7qHnEjsOexNp8M,3220
|
1498
|
-
esphome/components/micro_wake_word/__init__.py,sha256=
|
1499
|
-
esphome/components/micro_wake_word/
|
1500
|
-
esphome/components/micro_wake_word/micro_wake_word.
|
1501
|
-
esphome/components/micro_wake_word/
|
1498
|
+
esphome/components/micro_wake_word/__init__.py,sha256=WLqfgLyGTF7S6kwvvOoiyHaxxVRL4u478WUjV9FhnLo,15889
|
1499
|
+
esphome/components/micro_wake_word/micro_wake_word.cpp,sha256=qj_wsPQY23sg12Wr2nIvitFSvghzfXkBamak7ZPNeAI,15280
|
1500
|
+
esphome/components/micro_wake_word/micro_wake_word.h,sha256=3Ge-mL0fVeM-s6XdmeoPGATLZ7x8tr73iXEkO9nqLJ4,6091
|
1501
|
+
esphome/components/micro_wake_word/preprocessor_settings.h,sha256=fz5-wfah78sWnY-iNXuGu6K5TpbGfeQCcgPIdPBNPg4,488
|
1502
|
+
esphome/components/micro_wake_word/streaming_model.cpp,sha256=XkUsB0e8J_Lnf5zq4UQYeq-zmPI3h_pabQ380dYLD3I,6845
|
1503
|
+
esphome/components/micro_wake_word/streaming_model.h,sha256=f_Wu2-GqyjPvDqSCAEWuGioq-bySlOu0cOkJ0PzuipA,2658
|
1502
1504
|
esphome/components/micronova/__init__.py,sha256=6VoJfNv9YbawzAh8zrXzDkdOQwyX0bg-cZpxI_HwqVo,2677
|
1503
1505
|
esphome/components/micronova/micronova.cpp,sha256=gc0xDasM0sBvU6BNnT24ArBJ1bgrnoPcq9dWLuFbTD8,5297
|
1504
1506
|
esphome/components/micronova/micronova.h,sha256=TyQKoGWnmuW7cJkxJZvo4x0loU6sKu0dM0Jf97qzX-g,5359
|
@@ -1542,7 +1544,7 @@ esphome/components/midea_ir/midea_ir.cpp,sha256=Ry2O2HU9NlVSiaqZHybujJUqoky4rk2K
|
|
1542
1544
|
esphome/components/midea_ir/midea_ir.h,sha256=BNVdX5xjpFy-q0OTgBubUpFA_GQgUeK3Vx7rahOT-nM,1518
|
1543
1545
|
esphome/components/mitsubishi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1544
1546
|
esphome/components/mitsubishi/climate.py,sha256=EEQ54_K8833gtQP90yySmX8kMCnXxsYPk0UazUMMZsI,2791
|
1545
|
-
esphome/components/mitsubishi/mitsubishi.cpp,sha256=
|
1547
|
+
esphome/components/mitsubishi/mitsubishi.cpp,sha256=8UgrQVVVAXyzefHfjrOPBV3HfED4WbbHbN10s_VJ4cM,13994
|
1546
1548
|
esphome/components/mitsubishi/mitsubishi.h,sha256=DDSRb5mYr2RsocbBTQahdGJaHtH-k6oHIsBIDSHuopk,3047
|
1547
1549
|
esphome/components/mlx90393/__init__.py,sha256=Ao5t2TsBxYT6KIJJ4Nnbg5_drJijuBxe7SIdBe31Fjs,34
|
1548
1550
|
esphome/components/mlx90393/sensor.py,sha256=wpYFYEHIxu7HP0E40Fc15uUzgCBT-nszvjf0FdlyGwQ,4183
|
@@ -1585,9 +1587,9 @@ esphome/components/modbus_controller/sensor/modbus_sensor.h,sha256=9jq7VwrsKs7_f
|
|
1585
1587
|
esphome/components/modbus_controller/switch/__init__.py,sha256=7kNXF7HkcD5GwA5tue9EdItjhivBpsoseiciDzE0nAc,2324
|
1586
1588
|
esphome/components/modbus_controller/switch/modbus_switch.cpp,sha256=cb_pXmVCiln4I3p-IatuDABPt66UPRcMe87d1btKxS0,4227
|
1587
1589
|
esphome/components/modbus_controller/switch/modbus_switch.h,sha256=XUBdWMh0paqx6saqwABLj1Z6ClPcWTHlaOPpDJY8qvY,2026
|
1588
|
-
esphome/components/modbus_controller/text_sensor/__init__.py,sha256=
|
1589
|
-
esphome/components/modbus_controller/text_sensor/modbus_textsensor.cpp,sha256=
|
1590
|
-
esphome/components/modbus_controller/text_sensor/modbus_textsensor.h,sha256=
|
1590
|
+
esphome/components/modbus_controller/text_sensor/__init__.py,sha256=RRbyj8WNygZezpYJ6Y9rlPEYsO8rmorDwtURS6A8ADo,2452
|
1591
|
+
esphome/components/modbus_controller/text_sensor/modbus_textsensor.cpp,sha256=iebbTljSNJBPUTKfbbHemYxgswLZM_RyjRERQqIFKTM,1594
|
1592
|
+
esphome/components/modbus_controller/text_sensor/modbus_textsensor.h,sha256=dbvPjN9sfXOPllbLbyyrHLhqyp_9aiJBVg4kki8Zst8,1508
|
1591
1593
|
esphome/components/monochromatic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1592
1594
|
esphome/components/monochromatic/light.py,sha256=THKgebL_J4kCyt42O5y0kBbMZP1f885MO7fEbycvxnA,761
|
1593
1595
|
esphome/components/monochromatic/monochromatic_light_output.h,sha256=2txXk8UbhTVMPL6sPkEzgttrMI8Au7vu56aa9IuBsAM,787
|
@@ -1755,7 +1757,7 @@ esphome/components/ntc/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
1755
1757
|
esphome/components/ntc/ntc.cpp,sha256=Q0zCWsIf2t4ROSVsQibOIXTSf1JP0vQmVZia8b9iASY,842
|
1756
1758
|
esphome/components/ntc/ntc.h,sha256=Q8PMwQShUDQAdbmTcdOyVReG6VHeQaOENeQ198bhq9U,617
|
1757
1759
|
esphome/components/ntc/sensor.py,sha256=CzjZGkGuXFidzzNvBJStpp6py5BhEtWOPpJqUWwTObQ,3860
|
1758
|
-
esphome/components/number/__init__.py,sha256=
|
1760
|
+
esphome/components/number/__init__.py,sha256=C7KH7S4ji2r0TVUKLYTfFKC8DOAZkswpqpbcuVYGOwQ,13154
|
1759
1761
|
esphome/components/number/automation.cpp,sha256=W-Vr0ZOUO-6IWROVohkXvKyBQEHZ-7mcPCF3WcK0Ofc,1516
|
1760
1762
|
esphome/components/number/automation.h,sha256=9tDblvLQ71QEC-oVHWLcYM4mmLRJSfuur3hnbYBi_xE,2482
|
1761
1763
|
esphome/components/number/number.cpp,sha256=-QYlNLPv8hJFWxDphUWjOamJtP2abQQKA8qaAct9Efc,517
|
@@ -1773,13 +1775,13 @@ esphome/components/ota/__init__.py,sha256=EiXnjLtJX3CXeDGRsqLnp5I4xQiy3Yhcy24mqv
|
|
1773
1775
|
esphome/components/ota/automation.h,sha256=UaasWG6gZG59MtC5DHHfMhRb7BXYmLlkOyYujZReEV0,2044
|
1774
1776
|
esphome/components/ota/ota_backend.cpp,sha256=IfpR0mvzSs9ugJa2LRi4AtYHT4Ht6PoS9BY5Ydjs_eE,587
|
1775
1777
|
esphome/components/ota/ota_backend.h,sha256=ILfnmlVzp0qhHFv13jZ6GQ7MLgKf5ICtL6xI4ojg4K8,2806
|
1776
|
-
esphome/components/ota/ota_backend_arduino_esp32.cpp,sha256=
|
1778
|
+
esphome/components/ota/ota_backend_arduino_esp32.cpp,sha256=gEExNdFUN-iiOX3rVUXBiRZcE8cfEk0G3chGhTaPYr0,1514
|
1777
1779
|
esphome/components/ota/ota_backend_arduino_esp32.h,sha256=h0oH0gREs7M6hW_BlGHHFFml14IJYx7IpKpsVaHJ554,610
|
1778
|
-
esphome/components/ota/ota_backend_arduino_esp8266.cpp,sha256=
|
1780
|
+
esphome/components/ota/ota_backend_arduino_esp8266.cpp,sha256=lJgvlbP3v6piuoE_klojKI7si_2g0pL3QN3CIU09lmY,1947
|
1779
1781
|
esphome/components/ota/ota_backend_arduino_esp8266.h,sha256=PABg5GIPA75xe9KpcP2Jc_N_U0ygOu-KPGgVE-sNotU,712
|
1780
|
-
esphome/components/ota/ota_backend_arduino_libretiny.cpp,sha256=
|
1782
|
+
esphome/components/ota/ota_backend_arduino_libretiny.cpp,sha256=4DEgWdOZQAeTNZiv0tKDyILZxpfj7i0hS37IvAKyXRw,1518
|
1781
1783
|
esphome/components/ota/ota_backend_arduino_libretiny.h,sha256=7RnBge-XizF0KQtft_Naeh1-Gj0yO2Y_hJW6mCXO-gQ,552
|
1782
|
-
esphome/components/ota/ota_backend_arduino_rp2040.cpp,sha256=
|
1784
|
+
esphome/components/ota/ota_backend_arduino_rp2040.cpp,sha256=H2TUIWJMHCeArtr-0IcZPgyDI9DNOZfzP8F47lPeTZU,1965
|
1783
1785
|
esphome/components/ota/ota_backend_arduino_rp2040.h,sha256=6E54dND3ToVbYVsWRsLPpZ8o3DytNhtZg1IVXTPyKx4,618
|
1784
1786
|
esphome/components/ota/ota_backend_esp_idf.cpp,sha256=_TBWW23aHSFo5P8pHSqexR0LgnOB4z5b-3Lw0vliWvc,3328
|
1785
1787
|
esphome/components/ota/ota_backend_esp_idf.h,sha256=aiHISZQjSxaRWuq_4ZGAEuP8kCG0BccYAbJ9kx6WvhQ,725
|
@@ -1857,7 +1859,7 @@ esphome/components/pm1006/pm1006.cpp,sha256=AolXaEKw2VmLVk8w1128TJHagBa4yYJ2CvKQ
|
|
1857
1859
|
esphome/components/pm1006/pm1006.h,sha256=s19Xx1rtn9SFeBGw7Eri9-qpA7qCz_gIvNC9jHHTJRs,930
|
1858
1860
|
esphome/components/pm1006/sensor.py,sha256=FeYmQHkONvbKHy3u3idqIB9T3mwxuBCpggAFyHmBb5I,1868
|
1859
1861
|
esphome/components/pmsa003i/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1860
|
-
esphome/components/pmsa003i/pmsa003i.cpp,sha256=
|
1862
|
+
esphome/components/pmsa003i/pmsa003i.cpp,sha256=Nn2PvxRwN-J72y1S6R5R8UxOXyPn4RCs12qkKfx3MhE,3116
|
1861
1863
|
esphome/components/pmsa003i/pmsa003i.h,sha256=u2xvYRqN2osvmsmxL8DFVqudoebKsVWLa1HT8y18VAo,2683
|
1862
1864
|
esphome/components/pmsa003i/sensor.py,sha256=QCzkkPlqK80kI-gXEF4Pv-q53bz-u0m7QSOKoctSWyw,4378
|
1863
1865
|
esphome/components/pmsx003/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -1966,9 +1968,9 @@ esphome/components/qr_code/__init__.py,sha256=dJYFP3Op_xyl1hkbuCKEHKb7NDEuk8GeHp
|
|
1966
1968
|
esphome/components/qr_code/qr_code.cpp,sha256=JHb2RcZgJSoH9FKqTilr9_Iwq3eagf5pjovNlaeex4M,1739
|
1967
1969
|
esphome/components/qr_code/qr_code.h,sha256=av3KfyeLMVzuXarboSTGBIeWsZww5k1aQXcXrJ12Dvo,742
|
1968
1970
|
esphome/components/qspi_amoled/__init__.py,sha256=4Nn7UhpMJ9oSbuLdyVEW7G9PlIey2v33SWRNVizt9Oc,30
|
1969
|
-
esphome/components/qspi_amoled/display.py,sha256=
|
1970
|
-
esphome/components/qspi_amoled/qspi_amoled.cpp,sha256=
|
1971
|
-
esphome/components/qspi_amoled/qspi_amoled.h,sha256=
|
1971
|
+
esphome/components/qspi_amoled/display.py,sha256=GYSltIUQc4P4uZxjO9uIFXdWvStEWRWSCn2pCsbWXAA,4839
|
1972
|
+
esphome/components/qspi_amoled/qspi_amoled.cpp,sha256=z2R89Xk-vquN3e_m827Q--Jgqcg4ZadmkONKg_9Lf0Y,6040
|
1973
|
+
esphome/components/qspi_amoled/qspi_amoled.h,sha256=r6lXtGvDHWmZ-4Se5ruNfzSHd2_WPTsmuv94awcXnkk,5551
|
1972
1974
|
esphome/components/qwiic_pir/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1973
1975
|
esphome/components/qwiic_pir/binary_sensor.py,sha256=JnaxTc_TLDq77ju6bnbR2KP8QOzasX0_3QoQwvmgVXE,2001
|
1974
1976
|
esphome/components/qwiic_pir/qwiic_pir.cpp,sha256=4NOdbA0yW7tBHOY3SWhkA0CaOwQlXyWcISRCfLgvAjc,4558
|
@@ -2008,7 +2010,7 @@ esphome/components/remote_base/coolix_protocol.cpp,sha256=QaeML6xeSje0KgTV-39WCG
|
|
2008
2010
|
esphome/components/remote_base/coolix_protocol.h,sha256=pJZsJ2TsJK1nYqk1u3SgeH5eba_K5Lne6RdKIOTRA2k,1200
|
2009
2011
|
esphome/components/remote_base/dish_protocol.cpp,sha256=HfBgzOjc873VGvBCfzk-cWkpTPpyDYp_qF0ldnGVNJQ,2517
|
2010
2012
|
esphome/components/remote_base/dish_protocol.h,sha256=CRd27HMMgI20gbNwU7DKhgTFPg-geHX4OIgUfbpTe0I,973
|
2011
|
-
esphome/components/remote_base/dooya_protocol.cpp,sha256=
|
2013
|
+
esphome/components/remote_base/dooya_protocol.cpp,sha256=zf9wc2zdfuwkGfW0aRi-DDkyCQleKH31WACkTIEXRYs,3370
|
2012
2014
|
esphome/components/remote_base/dooya_protocol.h,sha256=OGqW5AaqDBP5Rz-0TJFg2DxeqXGGhtGgqG9ydGQIuWA,1262
|
2013
2015
|
esphome/components/remote_base/drayton_protocol.cpp,sha256=7bmTw24IeFG1UDO8MAh1IaX0se3pdirOudizdN0KlI4,8762
|
2014
2016
|
esphome/components/remote_base/drayton_protocol.h,sha256=WXrlM_sJD99BB2tg81kuLMIzPi2mcttl9vD0gQppVE8,1202
|
@@ -2042,7 +2044,7 @@ esphome/components/remote_base/rc5_protocol.cpp,sha256=TXPRm39uK-c5nxRj5M-KSWb7y
|
|
2042
2044
|
esphome/components/remote_base/rc5_protocol.h,sha256=GqOO9xc51jirVvGVX8Ld8lAB3OesBrNakfxqBQwu3K8,998
|
2043
2045
|
esphome/components/remote_base/rc6_protocol.cpp,sha256=hVedT0_0qgHcf7Ez_h-R-k3HfjRlDjJaOfkIy8zvuTw,3963
|
2044
2046
|
esphome/components/remote_base/rc6_protocol.h,sha256=s6SkFa7vWhEwP1H-JyCFpvnTMfNW6MI9xGKrzkTsblA,1118
|
2045
|
-
esphome/components/remote_base/rc_switch_protocol.cpp,sha256=
|
2047
|
+
esphome/components/remote_base/rc_switch_protocol.cpp,sha256=Sp15BTTgACMHtClJTtL5vlYKTAramPezbzRcvZsIZnE,8691
|
2046
2048
|
esphome/components/remote_base/rc_switch_protocol.h,sha256=owQyEWGps2Yiajh6rB6Kn40EEgatVjBBD1mh91t0jII,7279
|
2047
2049
|
esphome/components/remote_base/remote_base.cpp,sha256=t2wEcRTDQYiYx-NW5FeNFb14qAs9ZRw0vuumooUoDdA,5156
|
2048
2050
|
esphome/components/remote_base/remote_base.h,sha256=y7i46Yq18xf5V08GCTeLMgdwDBiNHpy2nsSjrwPln6Y,10274
|
@@ -2075,7 +2077,7 @@ esphome/components/resistance/sensor.py,sha256=P7B_EL6_8JqZPUoCDXszl4wz5h8AAJhr8
|
|
2075
2077
|
esphome/components/resistance_sampler/__init__.py,sha256=k-G50W_Jd8WQ_Jxz82WhWmwKs1-VlCfiBmgU1JBjTP0,200
|
2076
2078
|
esphome/components/resistance_sampler/resistance_sampler.h,sha256=Izi3iIm5gqg4YlRlBE_Su4DZ0A3PJHP8KyiICMK-TF4,228
|
2077
2079
|
esphome/components/restart/__init__.py,sha256=jAfqGndh-yPthKBjcOMkhD8BvV-TY_cZjtMN5HATN8o,31
|
2078
|
-
esphome/components/restart/button/__init__.py,sha256=
|
2080
|
+
esphome/components/restart/button/__init__.py,sha256=6rHx5ONgawNjog05G-vXYSyGRlPLkvyVboL4n8e8CzA,708
|
2079
2081
|
esphome/components/restart/button/restart_button.cpp,sha256=698uab3rY3l8Fh4XtipLei9-U6-fDwbHn4qlkZMj6T8,498
|
2080
2082
|
esphome/components/restart/button/restart_button.h,sha256=7yriDlGg0rFNPZvt2kDQWh5KSbImq9Xsh0RF_kmjIsw,339
|
2081
2083
|
esphome/components/restart/switch/__init__.py,sha256=F_zgeGkQD7trg0Z8TDKHKQejo-UpaS_xoO1YRqmSwek,607
|
@@ -2157,7 +2159,7 @@ esphome/components/scd4x/automation.h,sha256=bGkGwV0wHimPe_0oug111GAsCJyahpr1LRo
|
|
2157
2159
|
esphome/components/scd4x/scd4x.cpp,sha256=BsN-KoOPJm2h2UubkUyL0uwBV5RAj8DPkCWEeN5pCsc,11513
|
2158
2160
|
esphome/components/scd4x/scd4x.h,sha256=gbNnNrWg5aJvbzqkUi6pKjzJWDcIMOOTEqCylFRTWKI,2209
|
2159
2161
|
esphome/components/scd4x/sensor.py,sha256=UkRkNE_x5QUyEvDDRrmJzrZ2PLqYIcjRn8k_VFmCezg,5785
|
2160
|
-
esphome/components/script/__init__.py,sha256
|
2162
|
+
esphome/components/script/__init__.py,sha256=paJJDj4-8lf4KHuUETudIyVUYj2Ujyjt1RV99BT6kdg,7750
|
2161
2163
|
esphome/components/script/script.cpp,sha256=cbi3DH4Pt1h2pVbwqVYTKp2S4evBA5tYNDjAb9F8MyY,325
|
2162
2164
|
esphome/components/script/script.h,sha256=hp_EZtSa7P5X_CMDKCr_KE6ke9mDD1xiiRLhYZ6zyqM,8003
|
2163
2165
|
esphome/components/sdl/__init__.py,sha256=4Nn7UhpMJ9oSbuLdyVEW7G9PlIey2v33SWRNVizt9Oc,30
|
@@ -2251,7 +2253,7 @@ esphome/components/senseair/sensor.py,sha256=Uu2WjCTUYINoBzfCtG0rzTif_OpNGCbHAhV
|
|
2251
2253
|
esphome/components/sensirion_common/__init__.py,sha256=QezlNbZ5fP2SiHgQwiG1GeCrplJ5WWMzE9fGCzN5D88,247
|
2252
2254
|
esphome/components/sensirion_common/i2c_sensirion.cpp,sha256=0S3KLdUC3QbloO5JWFJxQc-qflIYN3XIoiFWS_zlzV0,3732
|
2253
2255
|
esphome/components/sensirion_common/i2c_sensirion.h,sha256=oGpiE4gvxPLafbNnMxsClg2Q_a8cfStWG1eRV0vHWY8,6295
|
2254
|
-
esphome/components/sensor/__init__.py,sha256=
|
2256
|
+
esphome/components/sensor/__init__.py,sha256=ZSPuR4X81v0TAG5AMF9ouYrazOKNrWsowXZtOPqBflo,29423
|
2255
2257
|
esphome/components/sensor/automation.cpp,sha256=UcPBe_uOYAIG4ovtvbNLgthzjHVizoHWC2LSw1tkJno,195
|
2256
2258
|
esphome/components/sensor/automation.h,sha256=fNLel2ZPmcT35d3poc4Fw-aVtYqUS-UZHuoEWfzOXUY,3135
|
2257
2259
|
esphome/components/sensor/filter.cpp,sha256=EJmt7yaAhfaCLFDeyR0KSz8kSmJQF4U9tFtrWVVCCqc,16037
|
@@ -2730,8 +2732,8 @@ esphome/components/ttp229_lsf/ttp229_lsf.h,sha256=8lNiyW1TCnvnck1rDm7EIfnXOzFOB2
|
|
2730
2732
|
esphome/components/tuya/__init__.py,sha256=x8xWksEXH2YpWa5C6vUVgy9-kOon6JenBpH1u0B53X4,4477
|
2731
2733
|
esphome/components/tuya/automation.cpp,sha256=dELrimEv7gHJLDIimNSLz6RG-jdrnuU79T2yxCxTnpc,2412
|
2732
2734
|
esphome/components/tuya/automation.h,sha256=Tszy5eXqIlIGUtnnEpKvuAauuND5WEMhzkRexad9KuE,1559
|
2733
|
-
esphome/components/tuya/tuya.cpp,sha256=
|
2734
|
-
esphome/components/tuya/tuya.h,sha256=
|
2735
|
+
esphome/components/tuya/tuya.cpp,sha256=0cxhFO8ojEz38BOq2x6Rj9xmeGq9x9za8Q66JKz2rHs,26236
|
2736
|
+
esphome/components/tuya/tuya.h,sha256=3mcBsxJ8xGBzQ3IxkGkyOuL4qrCuvPkNzgJMfkRPILE,5642
|
2735
2737
|
esphome/components/tuya/binary_sensor/__init__.py,sha256=ZU92Cm_lEoEkosVywTtn6zP1RlV_vWfE9w7DN_F4gz0,918
|
2736
2738
|
esphome/components/tuya/binary_sensor/tuya_binary_sensor.cpp,sha256=osWMzKRtsvKTXYNoeLRVIE489BKQtmSsrkdd4zVcTsM,651
|
2737
2739
|
esphome/components/tuya/binary_sensor/tuya_binary_sensor.h,sha256=3q4dCcuf_R6FGmibXT7mDKaow9ll8joyX5-3eEjpyrg,580
|
@@ -2766,18 +2768,20 @@ esphome/components/tx20/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
2766
2768
|
esphome/components/tx20/sensor.py,sha256=zi0E7KiPH_G3fx7YyC0BPQjVFJ9CV2c1xqlC7TkqcNo,1695
|
2767
2769
|
esphome/components/tx20/tx20.cpp,sha256=mNHAQXDC2F7-BpVW3q_XbYhfrOx50a7DTYZGou065W4,6115
|
2768
2770
|
esphome/components/tx20/tx20.h,sha256=SDHsR6SlXcWp-QXk7i-g1H6_AeyDROxP5Vmuzq611Bc,1539
|
2769
|
-
esphome/components/uart/__init__.py,sha256=
|
2771
|
+
esphome/components/uart/__init__.py,sha256=XJaMP68ddAYvCQsupHdr1TMNdcJHK_AM0NiUfhJ1vs8,14255
|
2770
2772
|
esphome/components/uart/automation.h,sha256=xvFMJw4bPqrdW5PmCtjzc_mLaUapWbJZSgYdgW8WB_4,894
|
2771
2773
|
esphome/components/uart/uart.cpp,sha256=49duAHVwuzrfs14uFcQEnHW1ScivarpGhCMdrfhi6n8,1682
|
2772
2774
|
esphome/components/uart/uart.h,sha256=DsY3c_d6AZeXbufAIPufWADHFsTAwcc3WTLRtQiLhHs,2083
|
2773
2775
|
esphome/components/uart/uart_component.cpp,sha256=WaRx3mR-u71NWUEUHnNYBqOyc0-iULk840RDWTxodjU,519
|
2774
2776
|
esphome/components/uart/uart_component.h,sha256=3F9eWjwucQ1TghQCQQkzenKoQKcy9LVbNs5i8HkRXPY,5898
|
2775
|
-
esphome/components/uart/uart_component_esp32_arduino.cpp,sha256=
|
2777
|
+
esphome/components/uart/uart_component_esp32_arduino.cpp,sha256=8-nwO2OU6UNP5vrsMdVhmzMqd33atE5jsZ4jYxCP3b8,6761
|
2776
2778
|
esphome/components/uart/uart_component_esp32_arduino.h,sha256=oXJD5P-4hk2xD1Hmz06U8egAKwiyknspaeLtnd7BBfw,1535
|
2777
2779
|
esphome/components/uart/uart_component_esp8266.cpp,sha256=hfru2wnUVkyJ8IehJrPuqxhR_Qd3BO1lZpXvgboQIVw,10826
|
2778
2780
|
esphome/components/uart/uart_component_esp8266.h,sha256=5KMN-fUHCDbS9ppn-PKziVknoBLZqy-tJx9HGXh_qOE,2428
|
2779
|
-
esphome/components/uart/uart_component_esp_idf.cpp,sha256=
|
2781
|
+
esphome/components/uart/uart_component_esp_idf.cpp,sha256=MGLHCeEAHiwnaA3V9uFUy1xmfz1WYwU37Xy7E-IsTLw,7393
|
2780
2782
|
esphome/components/uart/uart_component_esp_idf.h,sha256=p3L9pLNlT_qfa7aQpKJ-mhC7Kmj04yR3eOw3tNfpQCA,1482
|
2783
|
+
esphome/components/uart/uart_component_host.cpp,sha256=tiU19eJJooN-DQJsT9MH-UrwrI5ylPGN6mHa9fGT6jM,7053
|
2784
|
+
esphome/components/uart/uart_component_host.h,sha256=3U7oLyjyWW0sOuwSx1puyeWR-w_a7ukhE-3obxCyHWU,992
|
2781
2785
|
esphome/components/uart/uart_component_libretiny.cpp,sha256=Ea2c3utXpKLwNwjtsh3gHW1vrd5H2C5-phcRmdUPhQ8,4716
|
2782
2786
|
esphome/components/uart/uart_component_libretiny.h,sha256=Enf4Chvo7w3I4B3e9uT7qi6frqG_lXRB4dFQRorjiGE,990
|
2783
2787
|
esphome/components/uart/uart_component_rp2040.cpp,sha256=Kg2eIQOWBO1SKN0FziTV8YhVRrThE08upzm7w8KuQYQ,5473
|
@@ -2819,9 +2823,11 @@ esphome/components/uponor_smatrix/sensor/__init__.py,sha256=iCZBiR9qvgoUjRPz0JVm
|
|
2819
2823
|
esphome/components/uponor_smatrix/sensor/uponor_smatrix_sensor.cpp,sha256=ifdgRRzsaG2Qj0Rgyxg-VbWK37MiM3HP0yfjxiyqYkM,1299
|
2820
2824
|
esphome/components/uponor_smatrix/sensor/uponor_smatrix_sensor.h,sha256=95L0uP0tL3MUXansgaA8Pw3JOVocQMBaQG8LkPfxUyY,582
|
2821
2825
|
esphome/components/uptime/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2822
|
-
esphome/components/uptime/sensor.py,sha256=
|
2823
|
-
esphome/components/uptime/
|
2824
|
-
esphome/components/uptime/
|
2826
|
+
esphome/components/uptime/sensor.py,sha256=cyKr_-02hHUkqM0lB7OBroNc1JAT9f-El9RsyhBCRpM,1856
|
2827
|
+
esphome/components/uptime/uptime_seconds_sensor.cpp,sha256=fuWwd8kdmFE_VuYN9S0uAomG5VRVmax8J-rGy7fDO-Y,1348
|
2828
|
+
esphome/components/uptime/uptime_seconds_sensor.h,sha256=snxpzCtbaP7ozWrlsoebgYdvTk9ZOjNTiBu8_y1kbfs,450
|
2829
|
+
esphome/components/uptime/uptime_timestamp_sensor.cpp,sha256=1NXyq_RJ1CuN2ENtpt4Cgzfz3H6YojOZMAIMm0kRCxI,1030
|
2830
|
+
esphome/components/uptime/uptime_timestamp_sensor.h,sha256=7SkfWvU2rfIGUg8fM-hOM_JV5qVYT2KzB4GXYv0GWHI,608
|
2825
2831
|
esphome/components/valve/__init__.py,sha256=G5il1T3Utx7kWM2vpv1a13UONXRSn-ahNPYjtHny91I,7260
|
2826
2832
|
esphome/components/valve/automation.h,sha256=087Qr7fYyJaa_DnksLpHgcau4kodoWYedkxPifDlcgA,3273
|
2827
2833
|
esphome/components/valve/valve.cpp,sha256=uE562HP1awwV1rQ8PDZ9p22n2rq2D11hVdpKFUu9LRw,5446
|
@@ -2842,8 +2848,8 @@ esphome/components/veml3235/veml3235.cpp,sha256=OmdUjIDmq6b0xp4eJhaRCFoO89bjbpr-
|
|
2842
2848
|
esphome/components/veml3235/veml3235.h,sha256=M6xMgEk0uh4KGk7CL_V1fwJV_TN1U1u60q2iTt8YxwE,3864
|
2843
2849
|
esphome/components/veml7700/__init__.py,sha256=nD0ZjC6S7jiLOhzug4Yar22_uA5hzBFW9mMcdxQzYwY,27
|
2844
2850
|
esphome/components/veml7700/sensor.py,sha256=1j5pWg-TK7d8kokf46eYaaPBekNccoAbKwe7fzTUJoc,6883
|
2845
|
-
esphome/components/veml7700/veml7700.cpp,sha256=
|
2846
|
-
esphome/components/veml7700/veml7700.h,sha256=
|
2851
|
+
esphome/components/veml7700/veml7700.cpp,sha256=3Xa3_ouK781owYgTZKIAjZy03jXdOM2mYGomqVywB1c,15593
|
2852
|
+
esphome/components/veml7700/veml7700.h,sha256=KrqeCVgSvwlgoZORduXwG8ERCsXt-qNylfVhH0wM8qU,6786
|
2847
2853
|
esphome/components/version/__init__.py,sha256=jAfqGndh-yPthKBjcOMkhD8BvV-TY_cZjtMN5HATN8o,31
|
2848
2854
|
esphome/components/version/text_sensor.py,sha256=9GFYUCmhnqFJhvec44RPOELB0mSl7Yg5cBx7RoDUy3I,908
|
2849
2855
|
esphome/components/version/version_text_sensor.cpp,sha256=fneDbiHbp_kwi9GTjkLy2dCLRPepbbe8zulUsm5Y56A,851
|
@@ -2854,7 +2860,7 @@ esphome/components/vl53l0x/sensor.py,sha256=P8rWgRSOAQO-kAn35UC2I2_UwmYKUWS3DvYD
|
|
2854
2860
|
esphome/components/vl53l0x/vl53l0x_sensor.cpp,sha256=JqSIf9jjNhin561LU-QzAmRKEK0PqQ8CuLO2mn380og,15017
|
2855
2861
|
esphome/components/vl53l0x/vl53l0x_sensor.h,sha256=iTtScB2O7DVFh0eR9AVht2l3AdSAPJOVMtflTv2ZX7c,2561
|
2856
2862
|
esphome/components/voice_assistant/__init__.py,sha256=5cn8QDbG1NiEQw02I2LiQyBiOZXROhTc63_SRs5QHqI,13571
|
2857
|
-
esphome/components/voice_assistant/voice_assistant.cpp,sha256=
|
2863
|
+
esphome/components/voice_assistant/voice_assistant.cpp,sha256=bppgdZ-Ie89fKiqFjEjH8jZKIatXVsxdJU0vtgUvRLg,28798
|
2858
2864
|
esphome/components/voice_assistant/voice_assistant.h,sha256=oSD_gJQrYnKRv-AKHlJKeNniKgMxBWLLSZlgQ9BT_GQ,10952
|
2859
2865
|
esphome/components/voltage_sampler/__init__.py,sha256=IU5YrROZSNyuAP1d6M_V3ZGAwNjXCHPcVy5nMjZ953Y,155
|
2860
2866
|
esphome/components/voltage_sampler/voltage_sampler.h,sha256=Y67FLOpOzW29v29BRRyYgEmGZ_B8QnUUaqJMH6FA3jM,337
|
@@ -2870,8 +2876,8 @@ esphome/components/waveshare_epaper/waveshare_epaper.h,sha256=DOI5LyxWob1x6Fqrwm
|
|
2870
2876
|
esphome/components/web_server/__init__.py,sha256=eAivKqka7nyjY-ZP9O2t6Tvm145fVJGh0Bgx9YkE3Sw,8627
|
2871
2877
|
esphome/components/web_server/list_entities.cpp,sha256=PXfaW687audOXB2Gdx2Dtn2-J2XTbbQQgY_FivqE6DU,6214
|
2872
2878
|
esphome/components/web_server/list_entities.h,sha256=JnVsUfS0YmWqy6kEShU-bRaoUgCluiP5LPZh0ta-HPs,2049
|
2873
|
-
esphome/components/web_server/server_index_v2.h,sha256=
|
2874
|
-
esphome/components/web_server/server_index_v3.h,sha256=
|
2879
|
+
esphome/components/web_server/server_index_v2.h,sha256=klUL1lEbo_YN_Mrx48tFu9LNmunGJfZyzGYO8adEWVo,74318
|
2880
|
+
esphome/components/web_server/server_index_v3.h,sha256=EfdRw6RGnvixTNMbC9TSZzJy360DdA4H_w3OfjyT_1A,471064
|
2875
2881
|
esphome/components/web_server/web_server.cpp,sha256=j8HwJJoK7W9TTCjvbabXT0cA40KyzE3LFfD0WQ6lneE,63218
|
2876
2882
|
esphome/components/web_server/web_server.h,sha256=CwsGlSj6Jdt0xqEoFA1am4i9Wg3XBmsBdrZC40w4gfk,13464
|
2877
2883
|
esphome/components/web_server_base/__init__.py,sha256=mY9m_IS1ifiay-fYqDumRw8QJdhbcONCovAMIh42n2k,1122
|
@@ -2908,9 +2914,9 @@ esphome/components/wifi/wifi_component.cpp,sha256=ZHiBTvpwTqm2IJgYRy356Hbz7eEsaO
|
|
2908
2914
|
esphome/components/wifi/wifi_component.h,sha256=Gxmgn0pM7Eos0R-haNf31sKUlqwrQjF1NJ9-DXZxxCU,12265
|
2909
2915
|
esphome/components/wifi/wifi_component_esp32_arduino.cpp,sha256=Go9Qxnbqom68qa9HPk6ttWIzumRJw5xXuR2kdiTLqxc,26894
|
2910
2916
|
esphome/components/wifi/wifi_component_esp8266.cpp,sha256=udX5jeNkU4fhrfhP5QTccane7oCyiw2RXT2Da_QfDI8,27108
|
2911
|
-
esphome/components/wifi/wifi_component_esp_idf.cpp,sha256=
|
2917
|
+
esphome/components/wifi/wifi_component_esp_idf.cpp,sha256=e9dQsylBQSO9EelICsGgBSwMHUBjdLWSqw49PAhR8oA,34272
|
2912
2918
|
esphome/components/wifi/wifi_component_libretiny.cpp,sha256=9T7gLX2pILJe8F4u7Er2pMN6GRcbqeZgeGSm2HQPi-4,15829
|
2913
|
-
esphome/components/wifi/wifi_component_pico_w.cpp,sha256=
|
2919
|
+
esphome/components/wifi/wifi_component_pico_w.cpp,sha256=7Od6hYZJMhoQnq9Us_c9kAvJbnrbAh9lss6MMckFrgo,6369
|
2914
2920
|
esphome/components/wifi/wpa2_eap.py,sha256=TZroem4qBOfxJM4vyK15NHo5gk7eEG6RFcZiN4RMEDc,4860
|
2915
2921
|
esphome/components/wifi_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2916
2922
|
esphome/components/wifi_info/text_sensor.py,sha256=zw4qjan0PDA_ZYNma9zfDj-y3HUFSSC6rbV_R1Zg3dY,3298
|
@@ -2920,7 +2926,7 @@ esphome/components/wifi_signal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
2920
2926
|
esphome/components/wifi_signal/sensor.py,sha256=utg_mTUA6nY59AuytzXlFBPPpvSOPvzJDqyNvPyZSX8,874
|
2921
2927
|
esphome/components/wifi_signal/wifi_signal_sensor.cpp,sha256=P2lfuBa3iF99-EQ8NtWlMaJy-cBE3eDrI1KZV8a4q-A,293
|
2922
2928
|
esphome/components/wifi_signal/wifi_signal_sensor.h,sha256=Hvl-0lMflt-ochPBzRE9q7AMIUMNFujE3wg_DmNlep4,655
|
2923
|
-
esphome/components/wireguard/__init__.py,sha256=
|
2929
|
+
esphome/components/wireguard/__init__.py,sha256=5X2ekmXRAM3vilkY8sQLgadDAEz4XCQ2NI8XVMl8X5A,6452
|
2924
2930
|
esphome/components/wireguard/binary_sensor.py,sha256=dRqef_LyaYL5T3RIW7lHUEJ5elsl3dFbv2qB0Q5Bdks,1076
|
2925
2931
|
esphome/components/wireguard/sensor.py,sha256=iPIkS8E8R7tIu1AKoRc03Ybr_fOxfjitxdQLLNiTJcA,836
|
2926
2932
|
esphome/components/wireguard/text_sensor.py,sha256=nZ3tG8U58vBgFWkLpG30XEDX5l_T7H6ZL9iOb17WwH0,724
|
@@ -2943,7 +2949,7 @@ esphome/components/wled/__init__.py,sha256=AYSJB5-v2FKypswubeqM4LApQQrp0Q-fBQvm4
|
|
2943
2949
|
esphome/components/wled/wled_light_effect.cpp,sha256=YcIARdPNrtSJT6yjDPDOkIvLyD2mBK2EIhv8_Q9IAtc,6298
|
2944
2950
|
esphome/components/wled/wled_light_effect.h,sha256=6wtpRz3uX-wLGKjMOre69Ffv2c_6TEZb6GEod9agKoI,1537
|
2945
2951
|
esphome/components/x9c/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2946
|
-
esphome/components/x9c/output.py,sha256=
|
2952
|
+
esphome/components/x9c/output.py,sha256=WgUW0Bw4nVpv7cmsb6NdTGVXwwzmVP1lFcQsQTIDo94,1787
|
2947
2953
|
esphome/components/x9c/x9c.cpp,sha256=Pw983GpKJqvIc1p776ZIVtsm75owNWnKhk_XCq2LQBs,2251
|
2948
2954
|
esphome/components/x9c/x9c.h,sha256=9tHIi0k_9Crtgx--OgHfuNvIqxPfDYsRbcAEdw0fsM8,920
|
2949
2955
|
esphome/components/xgzp68xx/__init__.py,sha256=903wjVVlGEpGzWA2NSglNGTLyJk7-nlddsiyY4K1G9Y,27
|
@@ -3070,14 +3076,14 @@ esphome/core/config.py,sha256=hPZINVU4cmo8I7F2n7H95svZ8cHhyhjZF6NLo3nxn-g,14549
|
|
3070
3076
|
esphome/core/controller.cpp,sha256=feO4yH0GETNCqi9MTZEtsOaoo-CPV2rM9S7UfQXY6Ew,4553
|
3071
3077
|
esphome/core/controller.h,sha256=PXCcMqYpq0xjFCdlOKv6WuYlcETnB4sq3UQWdOTt9PU,3720
|
3072
3078
|
esphome/core/datatypes.h,sha256=wN8xro8vqXT13w9KvVOXeQfBwlI_WQZ6uFaIGyub67E,2114
|
3073
|
-
esphome/core/defines.h,sha256=
|
3079
|
+
esphome/core/defines.h,sha256=kqWORWz8ZHg1fxpyUZwlaTEeMqH02Wf9jTGCSKr7lbc,3606
|
3074
3080
|
esphome/core/entity_base.cpp,sha256=uh9DdAAkCxmVVhelBtqkiGW4_P9gDcZMBuwFDSIEqEQ,3195
|
3075
3081
|
esphome/core/entity_base.h,sha256=JCCMm2HKN5c4SHzwParExc-oVtLgmFu4BeaqhmMaLSA,2747
|
3076
3082
|
esphome/core/entity_helpers.py,sha256=JjyktpInwePdrg4rYH_gJPInlXieZ7YWKbD6AOtUiNY,2338
|
3077
3083
|
esphome/core/gpio.h,sha256=DSM7x0IYxd3w-0NZUy-3tcoGJPt-X64GC6wullwoYcY,2787
|
3078
3084
|
esphome/core/hal.h,sha256=e3qFkax3jfncEusf3kwXCts0Ai7D4XspJgh-VqVDcK4,844
|
3079
|
-
esphome/core/helpers.cpp,sha256=
|
3080
|
-
esphome/core/helpers.h,sha256=
|
3085
|
+
esphome/core/helpers.cpp,sha256=KM_r3VQY6_qDIHI7Ivskvbr6EWUH8frDoJo5nkW3tV0,23135
|
3086
|
+
esphome/core/helpers.h,sha256=pT0KcrXuDhY715_xZcZda5_akIb1xPWeiGU3jOVTosA,26502
|
3081
3087
|
esphome/core/log.cpp,sha256=MDCx87ytW6Fz6basxYUpagkubFzUKO1ysvU5RXbXoII,1581
|
3082
3088
|
esphome/core/log.h,sha256=sMwmrs64vOG0G9jIibKJWv_C-COl175T8JymmBVRHWI,6369
|
3083
3089
|
esphome/core/macros.h,sha256=YRip3XYzXw2pg3AFpBFA0Js-Y5GMtPkuCp2km2g5uhc,196
|
@@ -3113,9 +3119,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3113
3119
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3114
3120
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3115
3121
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3116
|
-
esphome-2024.
|
3117
|
-
esphome-2024.
|
3118
|
-
esphome-2024.
|
3119
|
-
esphome-2024.
|
3120
|
-
esphome-2024.
|
3121
|
-
esphome-2024.
|
3122
|
+
esphome-2024.7.0.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3123
|
+
esphome-2024.7.0.dist-info/METADATA,sha256=fZ7AMZ92XyJd3yC-WjI_e8Stby_4ZbsUOKdO6sTthgo,3263
|
3124
|
+
esphome-2024.7.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
3125
|
+
esphome-2024.7.0.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3126
|
+
esphome-2024.7.0.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3127
|
+
esphome-2024.7.0.dist-info/RECORD,,
|