esphome 2025.9.0b1__py3-none-any.whl → 2025.9.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.
Files changed (41) hide show
  1. esphome/__main__.py +146 -68
  2. esphome/components/adc/__init__.py +1 -26
  3. esphome/components/adc/sensor.py +20 -0
  4. esphome/components/api/api_connection.cpp +4 -11
  5. esphome/components/api/api_connection.h +0 -1
  6. esphome/components/api/api_pb2.cpp +0 -8
  7. esphome/components/api/api_pb2.h +0 -4
  8. esphome/components/api/api_pb2_dump.cpp +1 -7
  9. esphome/components/api/api_pb2_service.cpp +0 -14
  10. esphome/components/api/api_pb2_service.h +1 -3
  11. esphome/components/api/client.py +5 -3
  12. esphome/components/bluetooth_proxy/bluetooth_proxy.h +3 -1
  13. esphome/components/captive_portal/captive_index.h +77 -97
  14. esphome/components/esp32_ble/ble_uuid.cpp +30 -9
  15. esphome/components/esp32_ble_beacon/esp32_ble_beacon.cpp +4 -3
  16. esphome/components/esp32_ble_client/ble_client_base.h +8 -5
  17. esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp +2 -3
  18. esphome/components/ethernet/ethernet_component.cpp +48 -2
  19. esphome/components/ethernet/ethernet_component.h +2 -0
  20. esphome/components/factory_reset/button/factory_reset_button.cpp +18 -1
  21. esphome/components/factory_reset/button/factory_reset_button.h +6 -1
  22. esphome/components/factory_reset/switch/factory_reset_switch.cpp +18 -1
  23. esphome/components/factory_reset/switch/factory_reset_switch.h +5 -1
  24. esphome/components/ina2xx_base/__init__.py +4 -2
  25. esphome/components/md5/md5.cpp +3 -2
  26. esphome/components/openthread/openthread.cpp +41 -7
  27. esphome/components/openthread/openthread.h +11 -0
  28. esphome/components/web_server/server_index_v2.h +149 -149
  29. esphome/components/wifi/wifi_component.cpp +1 -1
  30. esphome/components/wifi_info/wifi_info_text_sensor.h +3 -2
  31. esphome/const.py +2 -1
  32. esphome/core/helpers.cpp +8 -7
  33. esphome/core/helpers.h +29 -0
  34. esphome/core/scheduler.cpp +4 -4
  35. esphome/core/scheduler.h +1 -1
  36. {esphome-2025.9.0b1.dist-info → esphome-2025.9.0b2.dist-info}/METADATA +2 -2
  37. {esphome-2025.9.0b1.dist-info → esphome-2025.9.0b2.dist-info}/RECORD +41 -41
  38. {esphome-2025.9.0b1.dist-info → esphome-2025.9.0b2.dist-info}/WHEEL +0 -0
  39. {esphome-2025.9.0b1.dist-info → esphome-2025.9.0b2.dist-info}/entry_points.txt +0 -0
  40. {esphome-2025.9.0b1.dist-info → esphome-2025.9.0b2.dist-info}/licenses/LICENSE +0 -0
  41. {esphome-2025.9.0b1.dist-info → esphome-2025.9.0b2.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,7 @@
1
1
  #pragma once
2
2
 
3
3
  #include "esphome/core/component.h"
4
+ #include "esphome/core/helpers.h"
4
5
  #include "esphome/components/text_sensor/text_sensor.h"
5
6
  #include "esphome/components/wifi/wifi_component.h"
6
7
  #ifdef USE_WIFI
@@ -106,8 +107,8 @@ class BSSIDWiFiInfo : public PollingComponent, public text_sensor::TextSensor {
106
107
  wifi::bssid_t bssid = wifi::global_wifi_component->wifi_bssid();
107
108
  if (memcmp(bssid.data(), last_bssid_.data(), 6) != 0) {
108
109
  std::copy(bssid.begin(), bssid.end(), last_bssid_.begin());
109
- char buf[30];
110
- sprintf(buf, "%02X:%02X:%02X:%02X:%02X:%02X", bssid[0], bssid[1], bssid[2], bssid[3], bssid[4], bssid[5]);
110
+ char buf[18];
111
+ format_mac_addr_upper(bssid.data(), buf);
111
112
  this->publish_state(buf);
112
113
  }
113
114
  }
esphome/const.py CHANGED
@@ -4,7 +4,7 @@ from enum import Enum
4
4
 
5
5
  from esphome.enum import StrEnum
6
6
 
7
- __version__ = "2025.9.0b1"
7
+ __version__ = "2025.9.0b2"
8
8
 
9
9
  ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
10
10
  VALID_SUBSTITUTIONS_CHARACTERS = (
@@ -114,6 +114,7 @@ CONF_AND = "and"
114
114
  CONF_ANGLE = "angle"
115
115
  CONF_ANY = "any"
116
116
  CONF_AP = "ap"
117
+ CONF_API = "api"
117
118
  CONF_APPARENT_POWER = "apparent_power"
118
119
  CONF_ARDUINO_VERSION = "arduino_version"
119
120
  CONF_AREA = "area"
esphome/core/helpers.cpp CHANGED
@@ -255,23 +255,22 @@ size_t parse_hex(const char *str, size_t length, uint8_t *data, size_t count) {
255
255
  }
256
256
 
257
257
  std::string format_mac_address_pretty(const uint8_t *mac) {
258
- return str_snprintf("%02X:%02X:%02X:%02X:%02X:%02X", 17, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
258
+ char buf[18];
259
+ format_mac_addr_upper(mac, buf);
260
+ return std::string(buf);
259
261
  }
260
262
 
261
- static char format_hex_char(uint8_t v) { return v >= 10 ? 'a' + (v - 10) : '0' + v; }
262
263
  std::string format_hex(const uint8_t *data, size_t length) {
263
264
  std::string ret;
264
265
  ret.resize(length * 2);
265
266
  for (size_t i = 0; i < length; i++) {
266
- ret[2 * i] = format_hex_char((data[i] & 0xF0) >> 4);
267
+ ret[2 * i] = format_hex_char(data[i] >> 4);
267
268
  ret[2 * i + 1] = format_hex_char(data[i] & 0x0F);
268
269
  }
269
270
  return ret;
270
271
  }
271
272
  std::string format_hex(const std::vector<uint8_t> &data) { return format_hex(data.data(), data.size()); }
272
273
 
273
- static char format_hex_pretty_char(uint8_t v) { return v >= 10 ? 'A' + (v - 10) : '0' + v; }
274
-
275
274
  // Shared implementation for uint8_t and string hex formatting
276
275
  static std::string format_hex_pretty_uint8(const uint8_t *data, size_t length, char separator, bool show_length) {
277
276
  if (data == nullptr || length == 0)
@@ -280,7 +279,7 @@ static std::string format_hex_pretty_uint8(const uint8_t *data, size_t length, c
280
279
  uint8_t multiple = separator ? 3 : 2; // 3 if separator is not \0, 2 otherwise
281
280
  ret.resize(multiple * length - (separator ? 1 : 0));
282
281
  for (size_t i = 0; i < length; i++) {
283
- ret[multiple * i] = format_hex_pretty_char((data[i] & 0xF0) >> 4);
282
+ ret[multiple * i] = format_hex_pretty_char(data[i] >> 4);
284
283
  ret[multiple * i + 1] = format_hex_pretty_char(data[i] & 0x0F);
285
284
  if (separator && i != length - 1)
286
285
  ret[multiple * i + 2] = separator;
@@ -591,7 +590,9 @@ bool HighFrequencyLoopRequester::is_high_frequency() { return num_requests > 0;
591
590
  std::string get_mac_address() {
592
591
  uint8_t mac[6];
593
592
  get_mac_address_raw(mac);
594
- return str_snprintf("%02x%02x%02x%02x%02x%02x", 12, mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
593
+ char buf[13];
594
+ format_mac_addr_lower_no_sep(mac, buf);
595
+ return std::string(buf);
595
596
  }
596
597
 
597
598
  std::string get_mac_address_pretty() {
esphome/core/helpers.h CHANGED
@@ -380,6 +380,35 @@ template<typename T, enable_if_t<std::is_unsigned<T>::value, int> = 0> optional<
380
380
  return parse_hex<T>(str.c_str(), str.length());
381
381
  }
382
382
 
383
+ /// Convert a nibble (0-15) to lowercase hex char
384
+ inline char format_hex_char(uint8_t v) { return v >= 10 ? 'a' + (v - 10) : '0' + v; }
385
+
386
+ /// Convert a nibble (0-15) to uppercase hex char (used for pretty printing)
387
+ /// This always uses uppercase (A-F) for pretty/human-readable output
388
+ inline char format_hex_pretty_char(uint8_t v) { return v >= 10 ? 'A' + (v - 10) : '0' + v; }
389
+
390
+ /// Format MAC address as XX:XX:XX:XX:XX:XX (uppercase)
391
+ inline void format_mac_addr_upper(const uint8_t *mac, char *output) {
392
+ for (size_t i = 0; i < 6; i++) {
393
+ uint8_t byte = mac[i];
394
+ output[i * 3] = format_hex_pretty_char(byte >> 4);
395
+ output[i * 3 + 1] = format_hex_pretty_char(byte & 0x0F);
396
+ if (i < 5)
397
+ output[i * 3 + 2] = ':';
398
+ }
399
+ output[17] = '\0';
400
+ }
401
+
402
+ /// Format MAC address as xxxxxxxxxxxxxx (lowercase, no separators)
403
+ inline void format_mac_addr_lower_no_sep(const uint8_t *mac, char *output) {
404
+ for (size_t i = 0; i < 6; i++) {
405
+ uint8_t byte = mac[i];
406
+ output[i * 2] = format_hex_char(byte >> 4);
407
+ output[i * 2 + 1] = format_hex_char(byte & 0x0F);
408
+ }
409
+ output[12] = '\0';
410
+ }
411
+
383
412
  /// Format the six-byte array \p mac into a MAC address.
384
413
  std::string format_mac_address_pretty(const uint8_t mac[6]);
385
414
  /// Format the byte array \p data of length \p len in lowercased hex.
@@ -345,7 +345,7 @@ void HOT Scheduler::call(uint32_t now) {
345
345
  // Execute callback without holding lock to prevent deadlocks
346
346
  // if the callback tries to call defer() again
347
347
  if (!this->should_skip_item_(item.get())) {
348
- this->execute_item_(item.get(), now);
348
+ now = this->execute_item_(item.get(), now);
349
349
  }
350
350
  // Recycle the defer item after execution
351
351
  this->recycle_item_(std::move(item));
@@ -483,7 +483,7 @@ void HOT Scheduler::call(uint32_t now) {
483
483
  // Warning: During callback(), a lot of stuff can happen, including:
484
484
  // - timeouts/intervals get added, potentially invalidating vector pointers
485
485
  // - timeouts/intervals get cancelled
486
- this->execute_item_(item.get(), now);
486
+ now = this->execute_item_(item.get(), now);
487
487
 
488
488
  LockGuard guard{this->lock_};
489
489
 
@@ -568,11 +568,11 @@ void HOT Scheduler::pop_raw_() {
568
568
  }
569
569
 
570
570
  // Helper to execute a scheduler item
571
- void HOT Scheduler::execute_item_(SchedulerItem *item, uint32_t now) {
571
+ uint32_t HOT Scheduler::execute_item_(SchedulerItem *item, uint32_t now) {
572
572
  App.set_current_component(item->component);
573
573
  WarnIfComponentBlockingGuard guard{item->component, now};
574
574
  item->callback();
575
- guard.finish();
575
+ return guard.finish();
576
576
  }
577
577
 
578
578
  // Common implementation for cancel operations
esphome/core/scheduler.h CHANGED
@@ -254,7 +254,7 @@ class Scheduler {
254
254
  }
255
255
 
256
256
  // Helper to execute a scheduler item
257
- void execute_item_(SchedulerItem *item, uint32_t now);
257
+ uint32_t execute_item_(SchedulerItem *item, uint32_t now);
258
258
 
259
259
  // Helper to check if item should be skipped
260
260
  bool should_skip_item_(SchedulerItem *item) const {
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: esphome
3
- Version: 2025.9.0b1
3
+ Version: 2025.9.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
@@ -37,7 +37,7 @@ Requires-Dist: platformio==6.1.18
37
37
  Requires-Dist: esptool==5.0.2
38
38
  Requires-Dist: click==8.1.7
39
39
  Requires-Dist: esphome-dashboard==20250904.0
40
- Requires-Dist: aioesphomeapi==40.1.0
40
+ Requires-Dist: aioesphomeapi==40.2.1
41
41
  Requires-Dist: zeroconf==0.147.2
42
42
  Requires-Dist: puremagic==1.30
43
43
  Requires-Dist: ruamel.yaml==0.18.15
@@ -1,11 +1,11 @@
1
1
  esphome/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- esphome/__main__.py,sha256=ss4kH0RoS-GT9zyLCHi_wJY7LDclyjQPdi-oyUVZ51o,37177
2
+ esphome/__main__.py,sha256=S3swmJYlxgWuHc3H9rS9_DwrqtEcRQ1TF9YIAIspaEs,39523
3
3
  esphome/automation.py,sha256=gK_oTzOSb3X-0O82bZNYk4XjAzSecpSdvHQGcY79Rcc,15661
4
4
  esphome/codegen.py,sha256=H_WB4rj0uEowvlhEb31EjJQwutLQ5CQkJIsNgDK-wx8,1917
5
5
  esphome/config.py,sha256=74-Y3XKtlB9h__fsu-Zvj6PanDWufVGo1-W4jlG-8cg,43172
6
6
  esphome/config_helpers.py,sha256=E0UO0khX9JW-br_NSsDlLH3VuE-YwMQ99_pzEQVupDc,5391
7
7
  esphome/config_validation.py,sha256=WB_2g9itbOi2z8bo25t8AG1rKHzLZdfa_DiTYQMuxrQ,64839
8
- esphome/const.py,sha256=Ccf5lO2BnIqAaRicXWHCNRB07nXb1WXv5qXFO4XHdyM,44201
8
+ esphome/const.py,sha256=3TdQgJcux_o-t8wMvUmXnoUaYCEBuMGFUW0JXRWo4Mk,44218
9
9
  esphome/coroutine.py,sha256=q2Bcr0MU6CviHLYRV_0lvSo0sLKQnsVlDM0yw-JxOa4,11587
10
10
  esphome/cpp_generator.py,sha256=C9O-H6ekHHdIEsfLGiqo-Sv6LZCmS0OL4A5ZGYHyh6U,32209
11
11
  esphome/cpp_helpers.py,sha256=r-hrUp7luke-ByuK2Z0TCzIvn4tTswMUkAzlVoKntiI,4039
@@ -58,7 +58,7 @@ esphome/components/ac_dimmer/output.py,sha256=ePW0KoVvQWLRRpQr51SBL4Pe5AaHUPqBqA
58
58
  esphome/components/adalight/__init__.py,sha256=TFbzi56YfQ3rix1T6BQGf3kLuGEHN3V74UZ7Z5MhaUQ,858
59
59
  esphome/components/adalight/adalight_light_effect.cpp,sha256=gTGtiFil7x7HMGg0Zi6HEUnP8FcZkv2eeDLbbaag1VM,3620
60
60
  esphome/components/adalight/adalight_light_effect.h,sha256=sirQPf_eh6qepAoMOl68fXp146zUjeX8JG1HilELIK4,940
61
- esphome/components/adc/__init__.py,sha256=6JmkK_oPjL4HqbWOqm7hkFGOSUAzcayie3AkVED8TS0,10446
61
+ esphome/components/adc/__init__.py,sha256=e-aRTnbPPyUykIg0CeZ9qh8wnvsO32N1pJsVM6KpoUM,9734
62
62
  esphome/components/adc/adc_sensor.h,sha256=HdTSYyiYR1XndZ-i6vFo0RSMbZW10iloudxYR7JaXJY,6217
63
63
  esphome/components/adc/adc_sensor_common.cpp,sha256=CuVzTvE2TwT0amONolKQLBa7mTdljhp9MIDAgxK41Uo,1984
64
64
  esphome/components/adc/adc_sensor_esp32.cpp,sha256=QVuYCur7CFOmKUfFDHheZ6EC1PngOYlRRWsvMBE-JH8,13146
@@ -66,7 +66,7 @@ esphome/components/adc/adc_sensor_esp8266.cpp,sha256=L1DkJtS7Hzi63v5muuwnLsY7E7W
66
66
  esphome/components/adc/adc_sensor_libretiny.cpp,sha256=3aBGPzVl5gqGhnrxweacOtlmktdTQyKn-OGx3CTn8pQ,1324
67
67
  esphome/components/adc/adc_sensor_rp2040.cpp,sha256=fKXJT7mOYUHrpRDWM23jpLs4F4n-uPVAQth__zdrvAQ,2357
68
68
  esphome/components/adc/adc_sensor_zephyr.cpp,sha256=iSW2utevW4X41wZnloCFSsE9gwH4RxeJh67Li8zgtvM,5877
69
- esphome/components/adc/sensor.py,sha256=Zhs6SD7j6J0hXT8vGpEt7w41Y0-xY2HgrxFFTFwFmck,5688
69
+ esphome/components/adc/sensor.py,sha256=BJCJDgasELK834iqYJWRowpNoXUO8ymKdcgXRVaxQYk,6379
70
70
  esphome/components/adc128s102/__init__.py,sha256=-ZS3Tmm-7EpnBRxVQDbE9FPZ61cLCk1eVkMwOWes2UY,652
71
71
  esphome/components/adc128s102/adc128s102.cpp,sha256=DqL5pMkvIR2N9_gAsn9rJwMxZWStDCAeDAfTgAy76BA,775
72
72
  esphome/components/adc128s102/adc128s102.h,sha256=tJT9GAc59qy5F1-obeMD_uWazL2frzIqxTmfovDHHrk,616
@@ -187,8 +187,8 @@ esphome/components/apds9960/apds9960.h,sha256=oFrXPQrPDS16gNSVdN1n6SKuvjwc9LdvpK
187
187
  esphome/components/apds9960/binary_sensor.py,sha256=MvCYb6pTgOU48TMm_YhN6uHKkoFKFvhma3lwQQD9xfM,787
188
188
  esphome/components/apds9960/sensor.py,sha256=vUPm5H_IFROftGlMJWfgqSzm0IeLpYh5DvtA_DL1Amk,872
189
189
  esphome/components/api/__init__.py,sha256=gykiBGPNJjTVImCdEhd2pjhXacsW74SYxnva0m01wBE,13668
190
- esphome/components/api/api_connection.cpp,sha256=s-Dzb-DdArr2fP0DldpUlxOsFe3BREb7dEgVlSQuNxM,79717
191
- esphome/components/api/api_connection.h,sha256=snpdTa8tklVqMEgVcDJYqGnPw1umLOKXHB4Q_WjSmD4,32384
190
+ esphome/components/api/api_connection.cpp,sha256=FkJBD0mS8K4C0ctLbQunbTDsknAqLN7nC6ow6EmhIj0,79414
191
+ esphome/components/api/api_connection.h,sha256=53QLFyMSv82wrJmWktzHRDo-3eN2iJQ5jcq8RZiuNE8,32317
192
192
  esphome/components/api/api_frame_helper.cpp,sha256=0XQbwgbkO2lKnhi5G00FyNlXf75n-h_RGzDRiHfD36o,9432
193
193
  esphome/components/api/api_frame_helper.h,sha256=3_f0efSuu4mG3IaMIbBSqHE3eYRwice15IPpA4cLdXc,6377
194
194
  esphome/components/api/api_frame_helper_noise.cpp,sha256=OPkro_YbMJ6oPeh7-_b-_qA_wOsiBjuuFm7BGCTtPUg,21357
@@ -196,15 +196,15 @@ esphome/components/api/api_frame_helper_noise.h,sha256=1WsrE90-U2jM0qrnLqRe05sPc
196
196
  esphome/components/api/api_frame_helper_plaintext.cpp,sha256=B2n6lg7rnzUDvglaFHgsWNtjKmdXgRRN7X6OVrRRjfM,11079
197
197
  esphome/components/api/api_frame_helper_plaintext.h,sha256=XampDMs-3VkmFcwexCTsuYvDsQ2p653T8LRTeo5K0yA,1958
198
198
  esphome/components/api/api_noise_context.h,sha256=c7Ykm1SUCNGR-C1jUPo6jSjjntob6f7_tKZKWlKwDeM,580
199
- esphome/components/api/api_pb2.cpp,sha256=1p6I7LFBchHoo6icIUvZf4VX6slYZQ0XgqP0SLuNl7k,93943
200
- esphome/components/api/api_pb2.h,sha256=yFzhKkHQ4AckhY4KWLwx5zvhM_9JyYmt-4GvmQ7m9JM,95034
201
- esphome/components/api/api_pb2_dump.cpp,sha256=bvN5Lmn26Seh6Pl1tB14U5GN07TxkFrwAo86PobLLns,83535
199
+ esphome/components/api/api_pb2.cpp,sha256=LgZDoffokKiu3CJoTX4DjkJI2gVBgYMCSxBLgt1WblQ,93624
200
+ esphome/components/api/api_pb2.h,sha256=RDAY5tNQynlsa4qDcPL94MhzjXmw1BrHpQ1ZzdKi3zw,94822
201
+ esphome/components/api/api_pb2_dump.cpp,sha256=ysPbqRpydU1t41TNvPxJKT6jn3_SK-FQMj8QER7SJig,83354
202
202
  esphome/components/api/api_pb2_includes.h,sha256=-b4f04JlUZPkWcYsnErZrDePKzaa-5yknHn7hHUDaTk,754
203
- esphome/components/api/api_pb2_service.cpp,sha256=Gn59ABSKB8ElaglxjmvcOmBY_LcYVC5M8TBCSnTv4pw,28329
204
- esphome/components/api/api_pb2_service.h,sha256=PN08yC-Y2ULrEFK9xay3MVIi-PGXxkBhYNHjJ_XUeg8,16779
203
+ esphome/components/api/api_pb2_service.cpp,sha256=bWPE7AIoj5vT-xYhou5c4ZUdj3tj0cEShBWycy5LmCs,27870
204
+ esphome/components/api/api_pb2_service.h,sha256=1CpLZ2Cpa79N0-CPmeVJVBh3AtWuW8UsGzeq_CwZYKU,16579
205
205
  esphome/components/api/api_server.cpp,sha256=BdgGP40ej2arxV-E1_tgN4V1QzPaJweB_Cm0fn-cKQs,14389
206
206
  esphome/components/api/api_server.h,sha256=Ft8v8PzjKVdwdQV7dHZFH4WcNF1t5kIGuJ0XNixETTg,6588
207
- esphome/components/api/client.py,sha256=bNUW1_UwiPaY-ewVl-MOAIwOh84R4VHA1grGDuvk018,2500
207
+ esphome/components/api/client.py,sha256=P-A2yc_ER2TjVzZHMlDEBdIMe1oDbufvlCPVzOzOcMM,2597
208
208
  esphome/components/api/custom_api_device.h,sha256=4IhQQx8JRXA0x8jxE1S9UihZ1eBmfG4Vm8I8_IHp9Rw,10466
209
209
  esphome/components/api/homeassistant_service.h,sha256=kXMK12QyJqyosoo5bZ0DfwUnwirj-ffTRXPwPgzDqJg,4195
210
210
  esphome/components/api/list_entities.cpp,sha256=7bHAKOIeTVDO0snoFHNLr7kDIMQv7bQITDPrejeO5GY,3130
@@ -401,7 +401,7 @@ esphome/components/bluetooth_proxy/__init__.py,sha256=zO7Hbm5nt1UBNwPLRJuF1v_uq6
401
401
  esphome/components/bluetooth_proxy/bluetooth_connection.cpp,sha256=wQSzXC8NIwjAcygBCfkx5l4XxVoowUi64jJaoaftMbI,25921
402
402
  esphome/components/bluetooth_proxy/bluetooth_connection.h,sha256=sXBUsZ7bDolKHn0vSQ9Ye4-Zp3KgLc1C9eEq0TTVbuc,2085
403
403
  esphome/components/bluetooth_proxy/bluetooth_proxy.cpp,sha256=ZaWcmdJM2T9vcj2M2AX3QQkVZZeAJGNfdZpduz5YRa8,17811
404
- esphome/components/bluetooth_proxy/bluetooth_proxy.h,sha256=-7wbzvbF0s2qsx7dmyQxHaYwimKzIVQV9ZpK-f6K1cA,6588
404
+ esphome/components/bluetooth_proxy/bluetooth_proxy.h,sha256=2nE22V4QXD7KBxukr-wMnJRlWewXBuAgGBRioWMdTh4,6562
405
405
  esphome/components/bme280_base/__init__.py,sha256=KQhkrj8Ny2lMRUdJXaem5z3-fiR2J82b9AGe58xnZgE,3688
406
406
  esphome/components/bme280_base/bme280_base.cpp,sha256=6_oyZR2mqsArPeRnLMMn5H_XarQQO3U7fDeDxRuxlx0,12876
407
407
  esphome/components/bme280_base/bme280_base.h,sha256=oQawFchVefNaYKHMixkqUID5IQK5tF1dyQXaAOznnhw,4300
@@ -502,7 +502,7 @@ esphome/components/cap1188/binary_sensor.py,sha256=Ar35IMka2lFJxLRfVaZm0qIeTCJmn
502
502
  esphome/components/cap1188/cap1188.cpp,sha256=Cm2NVNtHVzKOBKccmav87gJhRXlv_j-_mfFCTA1iSI4,2470
503
503
  esphome/components/cap1188/cap1188.h,sha256=7zsuov-u6FaC-iAR3NZOMAdi_IovL0nSVjHCJRfx9c0,1934
504
504
  esphome/components/captive_portal/__init__.py,sha256=vIp7cDwTIh6IjKUldJwEUEG7NZpDr8goz2xsHHmx1Ew,1743
505
- esphome/components/captive_portal/captive_index.h,sha256=XFUX_9oNmBabgQYW5gtvsU3yYgzX3pH5wanSnHlmo8E,11618
505
+ esphome/components/captive_portal/captive_index.h,sha256=QmSw30k_2BR8QUXjDSV5kot8SSoXJB4IyHi4rYukxiE,9330
506
506
  esphome/components/captive_portal/captive_portal.cpp,sha256=z_m4PR9GyttMlJgwXp0p1dAoWqI4QrxyF4IIrGlNnT4,4254
507
507
  esphome/components/captive_portal/captive_portal.h,sha256=_xHgoqPq6nuz58ktiSoaxRIHFq4WlFjy2YdFvD-zEzU,1912
508
508
  esphome/components/ccs811/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -879,16 +879,16 @@ esphome/components/esp32_ble/ble_advertising.cpp,sha256=OTPdELtn7q60zl2cua6tllF7
879
879
  esphome/components/esp32_ble/ble_advertising.h,sha256=h3SRhv6ZQ0VrrOyGvsuJ9_qsW8cOHWaofudIDusIdWM,1669
880
880
  esphome/components/esp32_ble/ble_event.h,sha256=bgABmZzSEXlu8uy7cnN4I964WcGhtrpWjwVDFHO_X1A,21966
881
881
  esphome/components/esp32_ble/ble_scan_result.h,sha256=_vUaGDJkt3agdNdz7DA1dofJHooDFvtjaQVVO-a3V1A,520
882
- esphome/components/esp32_ble/ble_uuid.cpp,sha256=WAv4ULcteJDfigD_YHaEYPVQawHrwU5HvFAF39RVMMY,6211
882
+ esphome/components/esp32_ble/ble_uuid.cpp,sha256=M0aqwxvvXg1_n15orAVWi6NFYCqzExieNsn4AkHGwI0,6723
883
883
  esphome/components/esp32_ble/ble_uuid.h,sha256=3VEsXyMLY2R545p2GHQbxWNzqSxPharuUaWbgEqel_4,994
884
884
  esphome/components/esp32_ble_beacon/__init__.py,sha256=RVBggPgt2s6e6SxI_AmUiuC0qxT25HjDZrtq0wsJJg4,3279
885
- esphome/components/esp32_ble_beacon/esp32_ble_beacon.cpp,sha256=Y1xsFMHU306rZ8ZU7Y0UmhU22gXYe_28o7jg1t5e3Ms,4202
885
+ esphome/components/esp32_ble_beacon/esp32_ble_beacon.cpp,sha256=lFaPKrJdDn-IeMdziJ_pA8Sdqu5jHJfBNR-_UM6ywQw,4256
886
886
  esphome/components/esp32_ble_beacon/esp32_ble_beacon.h,sha256=tDM9fy5VLIrCp45bqgsqHAm6FTsn7ixoOZkuTugZqqw,1868
887
887
  esphome/components/esp32_ble_client/__init__.py,sha256=-hFvZKPI-88mx7XOfuLaBeNNyJaYUQCawqCom6HmN8Y,356
888
888
  esphome/components/esp32_ble_client/ble_characteristic.cpp,sha256=YJExVCTHTMwgxPQzG8pqmtJqqriCqHddniq7CI_-G1Y,3346
889
889
  esphome/components/esp32_ble_client/ble_characteristic.h,sha256=LSLDNbUWoLX8tCyczt0ucvTzdc6WO5A7FuhHw02tIp0,1031
890
890
  esphome/components/esp32_ble_client/ble_client_base.cpp,sha256=vScPXwY4vojEDX4POJfLraoL7aCh0Tw-Ulr7bR-EhvY,27209
891
- esphome/components/esp32_ble_client/ble_client_base.h,sha256=8EJX047gneHCmKwoW9etPcJuuhXGff2IRPEhNHijbSc,5753
891
+ esphome/components/esp32_ble_client/ble_client_base.h,sha256=DUlK2ydp4LmloEypxoxrxu3GR4KcOqvVvDoTt4Sma10,5764
892
892
  esphome/components/esp32_ble_client/ble_descriptor.h,sha256=fjGFWiWIVtlcmzeDUiWg03-TevGPM8YLdEyxGa0jJ9U,489
893
893
  esphome/components/esp32_ble_client/ble_service.cpp,sha256=CEzUmJXQyCjQpdsq3sK1bal3Z8Pp87GNzS27-Kc-HAU,2464
894
894
  esphome/components/esp32_ble_client/ble_service.h,sha256=gJyz-AhwP9-BnZ9H7_xFuIBMGsL6uF36M-UMh24c0-c,828
@@ -907,7 +907,7 @@ esphome/components/esp32_ble_server/ble_service.cpp,sha256=cLJpq-eEFNXV4tlkSHXQW
907
907
  esphome/components/esp32_ble_server/ble_service.h,sha256=BvKpr2fsUlNnviH9gdokI7IcuTBu0C7bNFT0vvIuN1Y,2306
908
908
  esphome/components/esp32_ble_tracker/__init__.py,sha256=aZF9FC6QW4NysKdtAzhYJrOftfxMiDeknQSr_k-ztts,17048
909
909
  esphome/components/esp32_ble_tracker/automation.h,sha256=7IAZHGe4bxp0yFfhjeBW6XoV_wU-f1-3Pj14qekZca0,3865
910
- esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=-dU2T80Q-bReqKm9xemAxcnxTm-qHSeu-FlAS4TH2BQ,31407
910
+ esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=ISJs70jtJNmKHxYP1BLF6wJYk1dl3YygN1Wk8uherDA,31265
911
911
  esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=aX_gDl9dvU0yoGTrXHoCYUkw9qqftrHO1A1vb6t6kvQ,12623
912
912
  esphome/components/esp32_camera/__init__.py,sha256=TPN1Pu8bBbqsJATiJfSIDijwD9q_LNThRxxxU_Vz5lo,14545
913
913
  esphome/components/esp32_camera/esp32_camera.cpp,sha256=2acSP3AOvvxn5pXtZpYhuDNgxlPErn0IUiCgGuBvKVI,17366
@@ -972,8 +972,8 @@ esphome/components/espnow/espnow_err.h,sha256=XpcviJ6_EdTPdJ7f_DX3pWcKsm9FVfLtcz
972
972
  esphome/components/espnow/espnow_packet.h,sha256=zZGNt5qGWWcq9Sfwmc685VgLH4AEmYYzxZBF0uHrvMM,5692
973
973
  esphome/components/ethernet/__init__.py,sha256=9udaNkXPZkH6aBlVzMRfI-3VP8P8CMUzFUBLrabsi08,12800
974
974
  esphome/components/ethernet/esp_eth_phy_jl1101.c,sha256=WQ-RuJHLTlY61Ywkf8g56CaJke0RDoGwLwbOtyV83DE,12287
975
- esphome/components/ethernet/ethernet_component.cpp,sha256=6y8GIIeRws0UL2Tsr3444mzI9ciY-6wcmQF_iti_Wk0,25422
976
- esphome/components/ethernet/ethernet_component.h,sha256=96UzKr9Rt3DFg1_EaCE3NJsTTksNYpzazbcIQU2bLD8,4747
975
+ esphome/components/ethernet/ethernet_component.cpp,sha256=J6fKYFn03QKYX0-GcPWDhYoteedgvP43TUG0CFdeICE,27653
976
+ esphome/components/ethernet/ethernet_component.h,sha256=bRL5FKVxoAK8vwpfUPVepXbEKgGA4OhRviF538yw5QU,4805
977
977
  esphome/components/ethernet_info/__init__.py,sha256=LoiZr_nRyJfR5w1ZWOFppOVTQRwlgmHU-boDala2fLA,33
978
978
  esphome/components/ethernet_info/ethernet_info_text_sensor.cpp,sha256=nfP7xeusvbzee1KHfuipELWvF1vmuk_2e4G_NlLeJ3M,564
979
979
  esphome/components/ethernet_info/ethernet_info_text_sensor.h,sha256=kYs65vLLwVtuDcfOoQnGyDJoWL-mfsZHeAWQRafEq9I,2131
@@ -1004,11 +1004,11 @@ esphome/components/factory_reset/__init__.py,sha256=oM63apmi5AyH0EfVqO3WuiVz0xQI
1004
1004
  esphome/components/factory_reset/factory_reset.cpp,sha256=-9fOMwPyh8SUwcAH27C58bk1_-tcrPqCwjl6KRSoKw8,2446
1005
1005
  esphome/components/factory_reset/factory_reset.h,sha256=vrTOYoSe7O4vxYtQWC52eZ8ZA0fi_RAshYwP0Yz2CM0,1410
1006
1006
  esphome/components/factory_reset/button/__init__.py,sha256=lw7OYGAcvz1Y6sC-Lny-sPJPp5ZAuZ-EDYlrSGZ3FAs,732
1007
- esphome/components/factory_reset/button/factory_reset_button.cpp,sha256=zUR9V8UsNrOOCeOb0P1DfDIhX4ftO-TAHTnBSnXUUfY,558
1008
- esphome/components/factory_reset/button/factory_reset_button.h,sha256=sc5YlHsrRNL1a4tz1Ujt_DBclItTpShFgtki867RI9w,356
1007
+ esphome/components/factory_reset/button/factory_reset_button.cpp,sha256=nY0IbbVr1ZqAqz6KTjf5AnaGmVTjRiOlcIXi1nJ33To,953
1008
+ esphome/components/factory_reset/button/factory_reset_button.h,sha256=Hmw4NCcM6owxR9vcCFgYng8Kor_mB8TyyaWKZ_tFuLI,460
1009
1009
  esphome/components/factory_reset/switch/__init__.py,sha256=J32li7q2RaJ9WIkAj3YqxdbvbwWvT9bbxsD0iR4gGY8,618
1010
- esphome/components/factory_reset/switch/factory_reset_switch.cpp,sha256=ft1_L7We1YdlwKKvrlf47o9w0hHYjiW6YmqwEOUbWl4,644
1011
- esphome/components/factory_reset/switch/factory_reset_switch.h,sha256=uNwChe9vzBIHfXJPX3Jj6W1iZZgaTSKf3JUeg-gc95Y,366
1010
+ esphome/components/factory_reset/switch/factory_reset_switch.cpp,sha256=2oapHWQ5jKyLp9nPo65lJaTpAbhWOmptpNF2B-eKpRU,1041
1011
+ esphome/components/factory_reset/switch/factory_reset_switch.h,sha256=DDT7t9Ylsw9thCG62ROWo2u8cWSPmJOF_CC9ivxr5F8,469
1012
1012
  esphome/components/fan/__init__.py,sha256=suQ2hPIXt8fyZ9ykUszkzDvBSQy3oYB2dcuyhbGVxqQ,14509
1013
1013
  esphome/components/fan/automation.h,sha256=2Q2jqt0JaajDyRo18uY5XLeSYOizkRZjZk4z0Kc2Th4,6160
1014
1014
  esphome/components/fan/fan.cpp,sha256=gKMMjKXJaXmPwflA3uTZMMEyFJ95YvBUYGmBB0YGSxs,7719
@@ -1354,7 +1354,7 @@ esphome/components/ina260/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
1354
1354
  esphome/components/ina260/ina260.cpp,sha256=O0poOOrrmxYuGilPsA34OgL22hYnLMnH_Wrs8BgQUHY,3747
1355
1355
  esphome/components/ina260/ina260.h,sha256=1CO0cMEIykN5pJ3B8uaLqgMFoocbIcaUaJ4smfZCUXY,1052
1356
1356
  esphome/components/ina260/sensor.py,sha256=LOafL5Vy93mL_Zji3dDb0jUw2qawKwA8bppZt3DGCXE,2156
1357
- esphome/components/ina2xx_base/__init__.py,sha256=4I_Hp0m7SDj9OrMl70VOsw2OHTaVO_rgD9TY9oqV7EU,8700
1357
+ esphome/components/ina2xx_base/__init__.py,sha256=bK0P_EREC_pyni1Mx8Zm14RvVB1kCy49K1WVB2krjps,8794
1358
1358
  esphome/components/ina2xx_base/ina2xx_base.cpp,sha256=ibKiJN18CWCNRrO2IL-mE5AxPmh-aXLstDhYQiPBUeU,20549
1359
1359
  esphome/components/ina2xx_base/ina2xx_base.h,sha256=HHcz54Aqn-Q0UyP9znhJM5YXcESd5NQakF6OrSiQhng,7419
1360
1360
  esphome/components/ina2xx_i2c/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -1850,7 +1850,7 @@ esphome/components/mcp9808/mcp9808.cpp,sha256=dGr1U-RD78Lh-slBrmlnLY4V3_c4TegB9I
1850
1850
  esphome/components/mcp9808/mcp9808.h,sha256=FZggHdelw2uS4Vmb4oQp5mZt1Egwm9X3GKnAg5Svr9E,461
1851
1851
  esphome/components/mcp9808/sensor.py,sha256=8dSMS73S0pbANOyfJDpeQu8YV1x8YayyEGp-WI3VnVg,914
1852
1852
  esphome/components/md5/__init__.py,sha256=UMOzKlaVJtzYULytE5P3aZOdVPKrdJAQb-NLxUQ4UUE,119
1853
- esphome/components/md5/md5.cpp,sha256=ff76nu3j4rivvdqjlDabOlm7cTeGukaWVccsn6mgUKI,1730
1853
+ esphome/components/md5/md5.cpp,sha256=bMBkIoYH9rQt1_jALhJFMHztqtTUuEMznTFeRQbLcsw,1796
1854
1854
  esphome/components/md5/md5.h,sha256=Q_qTnrjgWuyE-5j2366KgZdzL2253n0sCafU7ZozXN8,1476
1855
1855
  esphome/components/mdns/__init__.py,sha256=1xXPsV11VbpQVjCiCbjsLKTp27JUYa7mrqnIqE50n5g,3673
1856
1856
  esphome/components/mdns/mdns_component.cpp,sha256=hSbIXyRaatXUwr2ByMFTYC_sCGoilinfIXGdle9nR2I,8366
@@ -2245,8 +2245,8 @@ esphome/components/opentherm/switch/opentherm_switch.cpp,sha256=od5eLVpP5XPDfAxs
2245
2245
  esphome/components/opentherm/switch/opentherm_switch.h,sha256=JhJFaXrJi3orbavFDc4llzmmHwU0yN2v_VuwJx3r7FU,410
2246
2246
  esphome/components/openthread/__init__.py,sha256=6QDZMsHp6HIaAAY0ZeXhyNbukzAxHv3rTOK3Fq-zedU,5262
2247
2247
  esphome/components/openthread/const.py,sha256=pToU3xqCMenATIR6384xKp66Zpi3rcUqdw4ISJgeIdc,321
2248
- esphome/components/openthread/openthread.cpp,sha256=m2SebefqcsgjLO4IAHy7Pfrff27JFJKbh-6E66Nqtrs,7655
2249
- esphome/components/openthread/openthread.h,sha256=3BqFlR4sNCf2Lr3ycQO2_oAN5pCuxi4aNtF65tdVMaQ,1950
2248
+ esphome/components/openthread/openthread.cpp,sha256=L19dRptum_6OWP2d-Ek8u6U4mfmwqvqO-xNNkL5ktz4,9415
2249
+ esphome/components/openthread/openthread.h,sha256=bPDJ4cEzBgUTUvnj8NINj6BJEwMH7R-JVqdbdsImJl8,2752
2250
2250
  esphome/components/openthread/openthread_esp.cpp,sha256=TwryWrPjYHMaTTE_1tPI3oOgtpA-utKg6cutwy7BOOE,5636
2251
2251
  esphome/components/openthread_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2252
2252
  esphome/components/openthread_info/openthread_info_text_sensor.cpp,sha256=M2kQAgRn2uRsjsJF96lEHtD39HTAhCp5bn2gLDARR34,1113
@@ -3493,7 +3493,7 @@ esphome/components/waveshare_epaper/waveshare_epaper.h,sha256=6INmEzibRGNKURBnmD
3493
3493
  esphome/components/web_server/__init__.py,sha256=K6pN7ZnChsWQZlJ6JpUmnt69BQRWcD2EfYfYwmwxYHs,11923
3494
3494
  esphome/components/web_server/list_entities.cpp,sha256=yQ3skDSDFnnKsEpLdkyjzySmXOtrxzQ4sk8UW_K1Y-U,5972
3495
3495
  esphome/components/web_server/list_entities.h,sha256=afeebykHFeV1rLpywOSZqaPqfL-K-MkLByfJWrkrb-M,2561
3496
- esphome/components/web_server/server_index_v2.h,sha256=cVFZzhvmwcUzN815XwYnx2L9zf5lH-MAZjolRearXdw,74968
3496
+ esphome/components/web_server/server_index_v2.h,sha256=89_IP8tu4GfbQi1L_ztUviNLuGMPEkUrzT3pTYvlVOM,74974
3497
3497
  esphome/components/web_server/server_index_v3.h,sha256=5SZfSHDG4xAyXNBxUqs8-jSVwocgfRbNbTSMwzVl1io,476640
3498
3498
  esphome/components/web_server/web_server.cpp,sha256=lOdalJ1wTpkAOLnBvanxFqKXVV4lDcHzWBN4Qhe4SuI,69812
3499
3499
  esphome/components/web_server/web_server.h,sha256=ZxpyQSeUB3Kj65CTW2MJDeAUl5Kv0PN6FFRRTE4hOBA,23987
@@ -3533,7 +3533,7 @@ esphome/components/wiegand/__init__.py,sha256=omQlVAU2D_tLx1sO8Mr_lBfAlhi9mrPsJJ
3533
3533
  esphome/components/wiegand/wiegand.cpp,sha256=K7XAflWGKzb4_qp32dnVHglnV3dH_OvLtPvhp7b9IhM,3816
3534
3534
  esphome/components/wiegand/wiegand.h,sha256=gyg5szEK0okoeLBQR284k84xy-ln19kNIkeOTe-CX-Y,1658
3535
3535
  esphome/components/wifi/__init__.py,sha256=aod-882tEE3JI3Snxeh6xlX_A81okEz4wopQZ7Bm-7g,18344
3536
- esphome/components/wifi/wifi_component.cpp,sha256=fsDjxscxkZAqdgmJPiDtoRvr10unGnBFB7zlrGs8ooU,31361
3536
+ esphome/components/wifi/wifi_component.cpp,sha256=DLDFayFs0dUA9qv6AeBVAxaOklLBX1aV4KpC7aAiuSs,31296
3537
3537
  esphome/components/wifi/wifi_component.h,sha256=x4yX4b1Jyt3QyPrlLKmm6hjLTnjMZdRcG-sgf7fdkl8,15884
3538
3538
  esphome/components/wifi/wifi_component_esp32_arduino.cpp,sha256=m5qCENYGPfO_-jEyJfREuYvHBWNydbf5jpGIxqp1YxA,28608
3539
3539
  esphome/components/wifi/wifi_component_esp8266.cpp,sha256=jnj9xvGct40-0MfbJlK3eJATbuPHold5QqbPisQQDdY,27514
@@ -3544,7 +3544,7 @@ esphome/components/wifi/wpa2_eap.py,sha256=484kRwbjD-KGb1VqtER7V-3_3Bt7QDS4CCmpd
3544
3544
  esphome/components/wifi_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3545
3545
  esphome/components/wifi_info/text_sensor.py,sha256=_H-Tm275zzRQxwHR2Ex_NiCZv7AZtaje4XyIZ5Oui8s,3298
3546
3546
  esphome/components/wifi_info/wifi_info_text_sensor.cpp,sha256=Bv-x1-XJkzyZHOIphXW3ftRsH94WjqX4KzOlKJMzoHk,714
3547
- esphome/components/wifi_info/wifi_info_text_sensor.h,sha256=deblH5DJjOGg5w_ZagGOx_MmlDPWl81JwwOC8oRP_FU,3974
3547
+ esphome/components/wifi_info/wifi_info_text_sensor.h,sha256=KGSeC8-4JKQsT6qU3nmYRljZvl4PB5Th0Z9oIbrQ8HQ,3943
3548
3548
  esphome/components/wifi_signal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3549
3549
  esphome/components/wifi_signal/sensor.py,sha256=8X2HSHn1LgYkLNOx4WBhTFlObYG6Sinp1GRr4wQF6nY,874
3550
3550
  esphome/components/wifi_signal/wifi_signal_sensor.cpp,sha256=0NlmWRiqlji_cfa4opYXPbe6HkjHbub22G_vL5eFt9U,316
@@ -3728,8 +3728,8 @@ esphome/core/entity_helpers.py,sha256=EAXRvypL03VYmNEJisn0rXvaGF3lpDB-ABTFvJmuLE
3728
3728
  esphome/core/event_pool.h,sha256=X8_-72rODgpG9P_dSjezkJjFaaFvXy0cV42o6X-Vv1Q,2405
3729
3729
  esphome/core/gpio.h,sha256=kLkCnPxu4_1CsLR4BI_Baj1lDGoRIh8uubbwsIkJPIA,2575
3730
3730
  esphome/core/hal.h,sha256=Le0-vtdDylYCaE9i4yvrv5-Y5PB5xoL3PM2FfMJsIeA,970
3731
- esphome/core/helpers.cpp,sha256=4S3yn_TReEmLOPXB1lx4OLWBBoc2-YDQDHImB2jysQM,21147
3732
- esphome/core/helpers.h,sha256=dOXde5vBK0DazcaQEFjcVe8TrB-e1ujBECK3KrFnWEw,36008
3731
+ esphome/core/helpers.cpp,sha256=pyccPOfWCRAtADz1QJ9A8KZXp-MTXSre9PSbUT7uuE4,20901
3732
+ esphome/core/helpers.h,sha256=5D5zieTz-Z_M3qWcVeXFhXEtY_LWjEDMa1kiZ4igN1g,37101
3733
3733
  esphome/core/lock_free_queue.h,sha256=cydIQ8x20t0QnOSp-ojS7ZzzEc2Khb8noheJCDeGkTo,4953
3734
3734
  esphome/core/log.cpp,sha256=cc6JIMRlIEk7lCQa6JFrL6bTBZ89xWNLwf26AFNzKC0,1625
3735
3735
  esphome/core/log.h,sha256=Fb0_ORK0q-WV0i49gzb8i9_C38RUe8VILIdbu1Bel5M,6627
@@ -3739,8 +3739,8 @@ esphome/core/optional.h,sha256=uKMzglliXSA5eC3ujwrADmyt8m7X4WkBQcOL6p3ET7E,7144
3739
3739
  esphome/core/preferences.h,sha256=RxgWuAi-uo6SZiK8UKX4KTwVfIMnaaLvrZP2rqTn_mE,1959
3740
3740
  esphome/core/ring_buffer.cpp,sha256=tIOgEdDobrvRfOU_g0TSjLYA0GU-rMjFyGt7Fb6oBeI,3700
3741
3741
  esphome/core/ring_buffer.h,sha256=tgZYKsgBWrtFp8BNL7a8EXw2iWrrbDPfP5xoLnokLHk,3059
3742
- esphome/core/scheduler.cpp,sha256=bdg7ICWMCzxvaLCzTaVCh9Pd-qiztU-PdBGe5jieA7M,35390
3743
- esphome/core/scheduler.h,sha256=Qexzd-AvAvu2SvKTBKt5q3mIC__H7Q_H5Hnk6M0RgsM,16505
3742
+ esphome/core/scheduler.cpp,sha256=YfHsj200oNw601NIxnGpt9fKCQkgpii4w1LznPNBq2E,35413
3743
+ esphome/core/scheduler.h,sha256=_o3jqQf5FSCZ6PrJg-W6rMpx0DoKK3V_ox8r1OVvBnY,16509
3744
3744
  esphome/core/string_ref.cpp,sha256=of1TYMY6t3t4HjjPLSiItuPSa62AMG0lK_CU2HS1RvM,242
3745
3745
  esphome/core/string_ref.h,sha256=Rd8HVBiUZrPA3TkPCwuAxGw91VX-e3Fky812OCNhNvA,5227
3746
3746
  esphome/core/time.cpp,sha256=K4niRovlQbP0TGQt5zssu-gDohkIgG2ars0N9vp9kp4,7468
@@ -3766,9 +3766,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
3766
3766
  esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
3767
3767
  esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
3768
3768
  esphome/dashboard/util/text.py,sha256=wwFtORlvHjsYkqb68IT-772LHAhWxT4OtnkIcPICQB0,317
3769
- esphome-2025.9.0b1.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3770
- esphome-2025.9.0b1.dist-info/METADATA,sha256=7jUsEJnA_f6E8GoLvJegCC6b0S-R2YNjBWua7CwmHiA,3634
3771
- esphome-2025.9.0b1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3772
- esphome-2025.9.0b1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3773
- esphome-2025.9.0b1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3774
- esphome-2025.9.0b1.dist-info/RECORD,,
3769
+ esphome-2025.9.0b2.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3770
+ esphome-2025.9.0b2.dist-info/METADATA,sha256=94QmB9AbcAdH7XfLOB9w4pDrjAglqbUaFDoRDLOdDHE,3634
3771
+ esphome-2025.9.0b2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3772
+ esphome-2025.9.0b2.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3773
+ esphome-2025.9.0b2.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3774
+ esphome-2025.9.0b2.dist-info/RECORD,,