esphome 2024.10.0b1__py3-none-any.whl → 2024.10.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -45,7 +45,7 @@ CONFIG_SCHEMA = cv.All(
45
45
  cv.Optional(CONF_SERVICE_UUID): esp32_ble_tracker.bt_uuid,
46
46
  cv.Optional(CONF_IBEACON_MAJOR): cv.uint16_t,
47
47
  cv.Optional(CONF_IBEACON_MINOR): cv.uint16_t,
48
- cv.Optional(CONF_IBEACON_UUID): cv.uuid,
48
+ cv.Optional(CONF_IBEACON_UUID): esp32_ble_tracker.bt_uuid,
49
49
  }
50
50
  )
51
51
  .extend(esp32_ble_tracker.ESP_BLE_DEVICE_SCHEMA)
@@ -79,7 +79,7 @@ async def to_code(config):
79
79
  cg.add(var.set_service_uuid128(uuid128))
80
80
 
81
81
  if ibeacon_uuid := config.get(CONF_IBEACON_UUID):
82
- ibeacon_uuid = esp32_ble_tracker.as_hex_array(str(ibeacon_uuid))
82
+ ibeacon_uuid = esp32_ble_tracker.as_reversed_hex_array(ibeacon_uuid)
83
83
  cg.add(var.set_ibeacon_uuid(ibeacon_uuid))
84
84
 
85
85
  if (ibeacon_major := config.get(CONF_IBEACON_MAJOR)) is not None:
@@ -244,7 +244,7 @@ void CSE7766Component::dump_config() {
244
244
  LOG_SENSOR(" ", "Apparent Power", this->apparent_power_sensor_);
245
245
  LOG_SENSOR(" ", "Reactive Power", this->reactive_power_sensor_);
246
246
  LOG_SENSOR(" ", "Power Factor", this->power_factor_sensor_);
247
- this->check_uart_settings(4800);
247
+ this->check_uart_settings(4800, 1, uart::UART_CONFIG_PARITY_EVEN);
248
248
  }
249
249
 
250
250
  } // namespace cse7766
@@ -395,6 +395,13 @@ ARDUINO_FRAMEWORK_SCHEMA = cv.All(
395
395
  cv.Optional(CONF_VERSION, default="recommended"): cv.string_strict,
396
396
  cv.Optional(CONF_SOURCE): cv.string_strict,
397
397
  cv.Optional(CONF_PLATFORM_VERSION): _parse_platform_version,
398
+ cv.Optional(CONF_ADVANCED, default={}): cv.Schema(
399
+ {
400
+ cv.Optional(
401
+ CONF_IGNORE_EFUSE_CUSTOM_MAC, default=False
402
+ ): cv.boolean,
403
+ }
404
+ ),
398
405
  }
399
406
  ),
400
407
  _arduino_check_versions,
@@ -494,6 +501,9 @@ async def to_code(config):
494
501
  conf = config[CONF_FRAMEWORK]
495
502
  cg.add_platformio_option("platform", conf[CONF_PLATFORM_VERSION])
496
503
 
504
+ if CONF_ADVANCED in conf and conf[CONF_ADVANCED][CONF_IGNORE_EFUSE_CUSTOM_MAC]:
505
+ cg.add_define("USE_ESP32_IGNORE_EFUSE_CUSTOM_MAC")
506
+
497
507
  add_extra_script(
498
508
  "post",
499
509
  "post_build.py",
@@ -540,8 +550,6 @@ async def to_code(config):
540
550
  for name, value in conf[CONF_SDKCONFIG_OPTIONS].items():
541
551
  add_idf_sdkconfig_option(name, RawSdkconfigValue(value))
542
552
 
543
- if conf[CONF_ADVANCED][CONF_IGNORE_EFUSE_CUSTOM_MAC]:
544
- cg.add_define("USE_ESP32_IGNORE_EFUSE_CUSTOM_MAC")
545
553
  if conf[CONF_ADVANCED].get(CONF_IGNORE_EFUSE_MAC_CRC):
546
554
  add_idf_sdkconfig_option("CONFIG_ESP_MAC_IGNORE_MAC_CRC_ERROR", True)
547
555
  if (framework_ver.major, framework_ver.minor) >= (4, 4):
@@ -1,6 +1,6 @@
1
1
  from esphome import automation
2
2
  import esphome.codegen as cg
3
- from esphome.components import mqtt
3
+ from esphome.components import mqtt, web_server
4
4
  import esphome.config_validation as cv
5
5
  from esphome.const import (
6
6
  CONF_DEVICE_CLASS,
@@ -11,6 +11,7 @@ from esphome.const import (
11
11
  CONF_MQTT_ID,
12
12
  CONF_ON_EVENT,
13
13
  CONF_TRIGGER_ID,
14
+ CONF_WEB_SERVER,
14
15
  DEVICE_CLASS_BUTTON,
15
16
  DEVICE_CLASS_DOORBELL,
16
17
  DEVICE_CLASS_EMPTY,
@@ -40,17 +41,21 @@ EventTrigger = event_ns.class_("EventTrigger", automation.Trigger.template())
40
41
 
41
42
  validate_device_class = cv.one_of(*DEVICE_CLASSES, lower=True, space="_")
42
43
 
43
- EVENT_SCHEMA = cv.ENTITY_BASE_SCHEMA.extend(cv.MQTT_COMPONENT_SCHEMA).extend(
44
- {
45
- cv.OnlyWith(CONF_MQTT_ID, "mqtt"): cv.declare_id(mqtt.MQTTEventComponent),
46
- cv.GenerateID(): cv.declare_id(Event),
47
- cv.Optional(CONF_DEVICE_CLASS): validate_device_class,
48
- cv.Optional(CONF_ON_EVENT): automation.validate_automation(
49
- {
50
- cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(EventTrigger),
51
- }
52
- ),
53
- }
44
+ EVENT_SCHEMA = (
45
+ cv.ENTITY_BASE_SCHEMA.extend(web_server.WEBSERVER_SORTING_SCHEMA)
46
+ .extend(cv.MQTT_COMPONENT_SCHEMA)
47
+ .extend(
48
+ {
49
+ cv.OnlyWith(CONF_MQTT_ID, "mqtt"): cv.declare_id(mqtt.MQTTEventComponent),
50
+ cv.GenerateID(): cv.declare_id(Event),
51
+ cv.Optional(CONF_DEVICE_CLASS): validate_device_class,
52
+ cv.Optional(CONF_ON_EVENT): automation.validate_automation(
53
+ {
54
+ cv.GenerateID(CONF_TRIGGER_ID): cv.declare_id(EventTrigger),
55
+ }
56
+ ),
57
+ }
58
+ )
54
59
  )
55
60
 
56
61
  _UNDEF = object()
@@ -97,6 +102,9 @@ async def setup_event_core_(var, config, *, event_types: list[str]):
97
102
  mqtt_ = cg.new_Pvariable(mqtt_id, var)
98
103
  await mqtt.register_mqtt_component(mqtt_, config)
99
104
 
105
+ if web_server_config := config.get(CONF_WEB_SERVER):
106
+ await web_server.add_entity_config(var, web_server_config)
107
+
100
108
 
101
109
  async def register_event(var, config, *, event_types: list[str]):
102
110
  if not CORE.has_id(config[CONF_ID]):
@@ -16,7 +16,7 @@ from .const import KEY_HOST
16
16
  from .gpio import host_pin_to_code # noqa
17
17
 
18
18
  CODEOWNERS = ["@esphome/core", "@clydebarrow"]
19
- AUTO_LOAD = ["network"]
19
+ AUTO_LOAD = ["network", "preferences"]
20
20
 
21
21
 
22
22
  def set_core_data(config):
@@ -46,7 +46,7 @@ from .const import (
46
46
 
47
47
  _LOGGER = logging.getLogger(__name__)
48
48
  CODEOWNERS = ["@kuba2k2"]
49
- AUTO_LOAD = []
49
+ AUTO_LOAD = ["preferences"]
50
50
 
51
51
 
52
52
  def _detect_variant(value):
@@ -33,7 +33,7 @@ from .schemas import (
33
33
  FLEX_OBJ_SCHEMA,
34
34
  GRID_CELL_SCHEMA,
35
35
  LAYOUT_SCHEMAS,
36
- STATE_SCHEMA,
36
+ STYLE_SCHEMA,
37
37
  WIDGET_TYPES,
38
38
  any_widget_schema,
39
39
  container_schema,
@@ -323,7 +323,7 @@ CONFIG_SCHEMA = (
323
323
  ),
324
324
  cv.Optional(df.CONF_STYLE_DEFINITIONS): cv.ensure_list(
325
325
  cv.Schema({cv.Required(CONF_ID): cv.declare_id(lv_style_t)})
326
- .extend(STATE_SCHEMA)
326
+ .extend(STYLE_SCHEMA)
327
327
  .extend(
328
328
  {
329
329
  cv.Optional(df.CONF_GRID_CELL_X_ALIGN): grid_alignments,
@@ -26,7 +26,7 @@ from .gpio import rp2040_pin_to_code # noqa
26
26
 
27
27
  _LOGGER = logging.getLogger(__name__)
28
28
  CODEOWNERS = ["@jesserockz"]
29
- AUTO_LOAD = []
29
+ AUTO_LOAD = ["preferences"]
30
30
 
31
31
 
32
32
  def set_core_data(config):
@@ -64,46 +64,46 @@ uint16_t shelly_dimmer_checksum(const uint8_t *buf, int len) {
64
64
  return std::accumulate<decltype(buf), uint16_t>(buf, buf + len, 0);
65
65
  }
66
66
 
67
- void ShellyDimmer::setup() {
68
- this->pin_nrst_->setup();
69
- this->pin_boot0_->setup();
70
-
71
- ESP_LOGI(TAG, "Initializing Shelly Dimmer...");
67
+ bool ShellyDimmer::is_running_configured_version() const {
68
+ return this->version_major_ == USE_SHD_FIRMWARE_MAJOR_VERSION &&
69
+ this->version_minor_ == USE_SHD_FIRMWARE_MINOR_VERSION;
70
+ }
72
71
 
72
+ void ShellyDimmer::handle_firmware() {
73
73
  // Reset the STM32 and check the firmware version.
74
- for (int i = 0; i < 2; i++) {
75
- this->reset_normal_boot_();
76
- this->send_command_(SHELLY_DIMMER_PROTO_CMD_VERSION, nullptr, 0);
77
- ESP_LOGI(TAG, "STM32 current firmware version: %d.%d, desired version: %d.%d", this->version_major_,
78
- this->version_minor_, USE_SHD_FIRMWARE_MAJOR_VERSION, USE_SHD_FIRMWARE_MINOR_VERSION);
79
- if (this->version_major_ != USE_SHD_FIRMWARE_MAJOR_VERSION ||
80
- this->version_minor_ != USE_SHD_FIRMWARE_MINOR_VERSION) {
81
- #ifdef USE_SHD_FIRMWARE_DATA
82
- // Update firmware if needed.
83
- ESP_LOGW(TAG, "Unsupported STM32 firmware version, flashing");
84
- if (i > 0) {
85
- // Upgrade was already performed but the reported version is still not right.
86
- ESP_LOGE(TAG, "STM32 firmware upgrade already performed, but version is still incorrect");
87
- this->mark_failed();
88
- return;
89
- }
74
+ this->reset_normal_boot_();
75
+ this->send_command_(SHELLY_DIMMER_PROTO_CMD_VERSION, nullptr, 0);
76
+ ESP_LOGI(TAG, "STM32 current firmware version: %d.%d, desired version: %d.%d", this->version_major_,
77
+ this->version_minor_, USE_SHD_FIRMWARE_MAJOR_VERSION, USE_SHD_FIRMWARE_MINOR_VERSION);
90
78
 
91
- if (!this->upgrade_firmware_()) {
92
- ESP_LOGW(TAG, "Failed to upgrade firmware");
93
- this->mark_failed();
94
- return;
95
- }
79
+ if (!is_running_configured_version()) {
80
+ #ifdef USE_SHD_FIRMWARE_DATA
81
+ if (!this->upgrade_firmware_()) {
82
+ ESP_LOGW(TAG, "Failed to upgrade firmware");
83
+ this->mark_failed();
84
+ return;
85
+ }
96
86
 
97
- // Firmware upgrade completed, do the checks again.
98
- continue;
99
- #else
100
- ESP_LOGW(TAG, "Firmware version mismatch, put 'update: true' in the yaml to flash an update.");
87
+ this->reset_normal_boot_();
88
+ this->send_command_(SHELLY_DIMMER_PROTO_CMD_VERSION, nullptr, 0);
89
+ if (!is_running_configured_version()) {
90
+ ESP_LOGE(TAG, "STM32 firmware upgrade already performed, but version is still incorrect");
101
91
  this->mark_failed();
102
92
  return;
103
- #endif
104
93
  }
105
- break;
94
+ #else
95
+ ESP_LOGW(TAG, "Firmware version mismatch, put 'update: true' in the yaml to flash an update.");
96
+ #endif
106
97
  }
98
+ }
99
+
100
+ void ShellyDimmer::setup() {
101
+ this->pin_nrst_->setup();
102
+ this->pin_boot0_->setup();
103
+
104
+ ESP_LOGI(TAG, "Initializing Shelly Dimmer...");
105
+
106
+ this->handle_firmware();
107
107
 
108
108
  this->send_settings_();
109
109
  // Do an immediate poll to refresh current state.
@@ -20,6 +20,8 @@ class ShellyDimmer : public PollingComponent, public light::LightOutput, public
20
20
  public:
21
21
  float get_setup_priority() const override { return setup_priority::LATE; }
22
22
 
23
+ bool is_running_configured_version() const;
24
+ void handle_firmware();
23
25
  void setup() override;
24
26
  void update() override;
25
27
  void dump_config() override;
@@ -18,8 +18,8 @@ void Touchscreen::attach_interrupt_(InternalGPIOPin *irq_pin, esphome::gpio::Int
18
18
 
19
19
  void Touchscreen::call_setup() {
20
20
  if (this->display_ != nullptr) {
21
- this->display_width_ = this->display_->get_native_width();
22
- this->display_height_ = this->display_->get_native_height();
21
+ this->display_width_ = this->display_->get_width();
22
+ this->display_height_ = this->display_->get_height();
23
23
  }
24
24
  PollingComponent::call_setup();
25
25
  }
@@ -23,6 +23,8 @@ static const size_t SEND_BUFFER_SIZE = INPUT_BUFFER_SIZE * sizeof(int16_t);
23
23
  static const size_t RECEIVE_SIZE = 1024;
24
24
  static const size_t SPEAKER_BUFFER_SIZE = 16 * RECEIVE_SIZE;
25
25
 
26
+ VoiceAssistant::VoiceAssistant() { global_voice_assistant = this; }
27
+
26
28
  float VoiceAssistant::get_setup_priority() const { return setup_priority::AFTER_CONNECTION; }
27
29
 
28
30
  bool VoiceAssistant::start_udp_socket_() {
@@ -68,12 +70,6 @@ bool VoiceAssistant::start_udp_socket_() {
68
70
  return true;
69
71
  }
70
72
 
71
- void VoiceAssistant::setup() {
72
- ESP_LOGCONFIG(TAG, "Setting up Voice Assistant...");
73
-
74
- global_voice_assistant = this;
75
- }
76
-
77
73
  bool VoiceAssistant::allocate_buffers_() {
78
74
  if (this->send_buffer_ != nullptr) {
79
75
  return true; // Already allocated
@@ -91,7 +91,8 @@ struct Configuration {
91
91
 
92
92
  class VoiceAssistant : public Component {
93
93
  public:
94
- void setup() override;
94
+ VoiceAssistant();
95
+
95
96
  void loop() override;
96
97
  float get_setup_priority() const override;
97
98
  void start_streaming();
@@ -1443,7 +1443,7 @@ void WebServer::on_event(event::Event *obj, const std::string &event_type) {
1443
1443
  }
1444
1444
 
1445
1445
  std::string WebServer::event_json(event::Event *obj, const std::string &event_type, JsonDetail start_config) {
1446
- return json::build_json([obj, event_type, start_config](JsonObject root) {
1446
+ return json::build_json([this, obj, event_type, start_config](JsonObject root) {
1447
1447
  set_json_id(root, obj, "event-" + obj->get_object_id(), start_config);
1448
1448
  if (!event_type.empty()) {
1449
1449
  root["event_type"] = event_type;
@@ -1454,6 +1454,12 @@ std::string WebServer::event_json(event::Event *obj, const std::string &event_ty
1454
1454
  event_types.add(event_type);
1455
1455
  }
1456
1456
  root["device_class"] = obj->get_device_class();
1457
+ if (this->sorting_entitys_.find(obj) != this->sorting_entitys_.end()) {
1458
+ root["sorting_weight"] = this->sorting_entitys_[obj].weight;
1459
+ if (this->sorting_groups_.find(this->sorting_entitys_[obj].group_id) != this->sorting_groups_.end()) {
1460
+ root["sorting_group"] = this->sorting_groups_[this->sorting_entitys_[obj].group_id].name;
1461
+ }
1462
+ }
1457
1463
  }
1458
1464
  });
1459
1465
  }
@@ -34,6 +34,11 @@ static esp_netif_t *s_ap_netif = nullptr; // NOLINT(cppcoreguidelines-avoid-non
34
34
  static bool s_sta_connecting = false; // NOLINT(cppcoreguidelines-avoid-non-const-global-variables)
35
35
 
36
36
  void WiFiComponent::wifi_pre_setup_() {
37
+ uint8_t mac[6];
38
+ if (has_custom_mac_address()) {
39
+ get_mac_address_raw(mac);
40
+ set_mac_address(mac);
41
+ }
37
42
  auto f = std::bind(&WiFiComponent::wifi_event_callback_, this, std::placeholders::_1, std::placeholders::_2);
38
43
  WiFi.onEvent(f);
39
44
  WiFi.persistent(false);
esphome/config.py CHANGED
@@ -782,7 +782,7 @@ def validate_config(
782
782
  from esphome.components import substitutions
783
783
 
784
784
  result[CONF_SUBSTITUTIONS] = {
785
- **config.get(CONF_SUBSTITUTIONS, {}),
785
+ **(config.get(CONF_SUBSTITUTIONS) or {}),
786
786
  **command_line_substitutions,
787
787
  }
788
788
  result.add_output_path([CONF_SUBSTITUTIONS], CONF_SUBSTITUTIONS)
esphome/const.py CHANGED
@@ -1,6 +1,6 @@
1
1
  """Constants used by esphome."""
2
2
 
3
- __version__ = "2024.10.0b1"
3
+ __version__ = "2024.10.1"
4
4
 
5
5
  ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
6
6
  VALID_SUBSTITUTIONS_CHARACTERS = (
esphome/core/config.py CHANGED
@@ -318,6 +318,8 @@ async def add_includes(includes):
318
318
  async def _add_platformio_options(pio_options):
319
319
  # Add includes at the very end, so that they override everything
320
320
  for key, val in pio_options.items():
321
+ if key == "build_flags" and not isinstance(val, list):
322
+ val = [val]
321
323
  cg.add_platformio_option(key, val)
322
324
 
323
325
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: esphome
3
- Version: 2024.10.0b1
3
+ Version: 2024.10.1
4
4
  Summary: Make creating custom firmwares for ESP32/ESP8266 super easy.
5
5
  Author-email: The ESPHome Authors <esphome@nabucasa.com>
6
6
  License: MIT
@@ -2,10 +2,10 @@ esphome/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
2
  esphome/__main__.py,sha256=tgHNktbXcks-sVXwhAMgAyKYZ3UES5VXJJbLTF7mpco,30716
3
3
  esphome/automation.py,sha256=5Ctd9-x3snlo582SHBy5WQISH5e6-8Mt9b7emxJyWiM,14507
4
4
  esphome/codegen.py,sha256=GePHUM7xdXb_Pil59SHVsXg2F4VBPgkH-Fz2PDX8Z54,1873
5
- esphome/config.py,sha256=ArMupdqCpKqQm-vFWb85HueI88DAfYTjuhR6mA691DI,39614
5
+ esphome/config.py,sha256=nOiXPZv8wHtmytkNlGcewp0uuJd9G5rRjkqevYXtjzo,39618
6
6
  esphome/config_helpers.py,sha256=MKf_wzO35nn41FvigXE0iYKDslPgL2ruf8R-EPtTT2I,3256
7
7
  esphome/config_validation.py,sha256=MeZcJrTRpe91KV5r18i6U-PeZ_Oaql81m12KW_gzCXU,66221
8
- esphome/const.py,sha256=txoEIVoFmFH6OkOGtjON_ClzbCOpKdRN8Lom9cy-__Q,40032
8
+ esphome/const.py,sha256=UiLeLL6QhKcTUlBLBHya_JxA5HRNO7Z0Z7y_d4tZses,40030
9
9
  esphome/coroutine.py,sha256=j_14z8dIIzIBeuNO30D4c1RJvMMt1xZFZ58Evd-EvJA,9344
10
10
  esphome/cpp_generator.py,sha256=lXPXHYUsFIvBSAoZ93mXYlGcXYg5L18nTtYGHE4_rr8,31203
11
11
  esphome/cpp_helpers.py,sha256=6C2vNbOIhZKi43xRVlk5hp9GfshfBn-rc5D_ZFUEYaE,4801
@@ -350,7 +350,7 @@ esphome/components/ble_presence/ble_presence_device.h,sha256=f9iWhtLuVqEg3HdG3vn
350
350
  esphome/components/ble_rssi/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
351
351
  esphome/components/ble_rssi/ble_rssi_sensor.cpp,sha256=cxTAZDHz4WhJmfmOCGvDPnObJAemb0rSH2PNAjv30RM,301
352
352
  esphome/components/ble_rssi/ble_rssi_sensor.h,sha256=Db47wWaWvDKdh-ikpCTfThtnW0M9jpX7qvkWs1B-7fw,3556
353
- esphome/components/ble_rssi/sensor.py,sha256=9b28RUWX9EEvKKg0E-Wzwl1h57pcske8s6hVPACrivA,3210
353
+ esphome/components/ble_rssi/sensor.py,sha256=yQsHbmn3vMr9JlvMRNipKF_Lx00M9nsDm0B2fZvu2nM,3232
354
354
  esphome/components/ble_scanner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
355
355
  esphome/components/ble_scanner/ble_scanner.cpp,sha256=4NvPhE7_RkLprMCD9hZOk4po32LM_oLi-S7Spbzlgzs,304
356
356
  esphome/components/ble_scanner/ble_scanner.h,sha256=sVbU35mMhANk6W-HPFMDkA6mq9U0mec0l6GV2fBRWkY,1105
@@ -535,7 +535,7 @@ esphome/components/cse7761/cse7761.cpp,sha256=tsZJZYSmexAqgpxgRgFPDE9x20TmPIWslW
535
535
  esphome/components/cse7761/cse7761.h,sha256=GYUBIQqtqnCre8hcwRhLFH9jlbWVvPcaCvtOOdTZfmc,1805
536
536
  esphome/components/cse7761/sensor.py,sha256=4_1oWJ_Tg0yfgTpWIvYknppGEN9sdo3PfzVEJNAMhGA,2838
537
537
  esphome/components/cse7766/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
538
- esphome/components/cse7766/cse7766.cpp,sha256=krj0TRI21rTRxVQfwGnVyj0KVKoKtLzTHvq-V0mtO90,7806
538
+ esphome/components/cse7766/cse7766.cpp,sha256=1mPxd9PvGrivN4f1MYI_cL_Z1MiLPvpK6EY2mNEk7fk,7840
539
539
  esphome/components/cse7766/cse7766.h,sha256=RE_q5Sa2n8PLkQsO3C9Nt11g6PS_5XBIVD1w3yvzP5o,1743
540
540
  esphome/components/cse7766/sensor.py,sha256=rHZGEUgTD8j6V9u8kTKSfRWQ67HzqIeHa9YaC5j6K70,4082
541
541
  esphome/components/cst226/__init__.py,sha256=Xbt13-GS0lUNexCt3EYip3UvO15P2cdJdepZWoDqBw8,130
@@ -754,7 +754,7 @@ esphome/components/ens210/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJW
754
754
  esphome/components/ens210/ens210.cpp,sha256=ZFc51aAks8P3bCKi5EkkQaueYIf5C4i4YmDfCUJbzU0,8377
755
755
  esphome/components/ens210/ens210.h,sha256=yhCaQwB3GjeBYgOLXhuLCHELyjE3IrdL2e0Llfw9HU8,1545
756
756
  esphome/components/ens210/sensor.py,sha256=_ES1FNSEIwmZLNNzqUV_nGvjPx-i_j2pblAe6vg8f9M,1724
757
- esphome/components/esp32/__init__.py,sha256=4esWPCmIs3i6I99qkgBCb92Pndkd5ym2W7AMWl8wkhk,27386
757
+ esphome/components/esp32/__init__.py,sha256=bheRUD4iScNy9zjnujlA1baiSvP1E8x0t15U8AeAxH4,27655
758
758
  esphome/components/esp32/boards.py,sha256=Fbn1QarvNqIbPV_yDTap128ZHszZiExIhK3wjQUS6w8,42736
759
759
  esphome/components/esp32/const.py,sha256=2yxLQg3p2-S3nRL6-zsF_dICrP_6waUfY5k8EFsoyVM,966
760
760
  esphome/components/esp32/core.cpp,sha256=GfidaExP8kU7ODM1S_VI9c3tQtmG2TaKwLJ-zzeSqd4,2413
@@ -866,7 +866,7 @@ esphome/components/ethernet_info/__init__.py,sha256=LoiZr_nRyJfR5w1ZWOFppOVTQRwl
866
866
  esphome/components/ethernet_info/ethernet_info_text_sensor.cpp,sha256=nfP7xeusvbzee1KHfuipELWvF1vmuk_2e4G_NlLeJ3M,564
867
867
  esphome/components/ethernet_info/ethernet_info_text_sensor.h,sha256=G0qcvZWT7GlZ_Hz_D5FAXBGnnwRVNd8KJu3E092IE2Q,2307
868
868
  esphome/components/ethernet_info/text_sensor.py,sha256=TUZNQiVCiepNin6bisVrUw2-PoAQJCvkLneQNGfCigI,2392
869
- esphome/components/event/__init__.py,sha256=Qz7HsEflNLtAcAJ9oVhG3lBJQpXLeAQFVy5TiSVzSn8,4001
869
+ esphome/components/event/__init__.py,sha256=fk6W4AjKQXd8h-5rAzyF88C8E87Qs4h6d7-BxPSYhL8,4265
870
870
  esphome/components/event/automation.h,sha256=LVrFgWVvg6ewaQFlE5KD57nd2cPx-Iv_OXXsx56GSYk,667
871
871
  esphome/components/event/event.cpp,sha256=9OmqhLkMNHEu3pOoZoXqdzvt0ZyU5lLATu6FSl9BJrU,695
872
872
  esphome/components/event/event.h,sha256=l5YWXG8Cf5aGmjX1W_lzE5ur_BXqJAJEvgIS6HInWIY,1198
@@ -1117,7 +1117,7 @@ esphome/components/honeywellabp2_i2c/__init__.py,sha256=q4EX44dXWVPn_6bcR0pbzsGW
1117
1117
  esphome/components/honeywellabp2_i2c/honeywellabp2.cpp,sha256=BNId9_2ey5W97Z8C7iyf8UynCczC4NvrmNy57eXVb8I,3435
1118
1118
  esphome/components/honeywellabp2_i2c/honeywellabp2.h,sha256=oKx_nWi07fYioDxWPcNKtzDVKiyqBTvDIdREJoaHfMY,2140
1119
1119
  esphome/components/honeywellabp2_i2c/sensor.py,sha256=RepjqSYlTrq-IgTMhB-y1oBkjAPdEm2uRiCH_zWDMeU,2574
1120
- esphome/components/host/__init__.py,sha256=LKE6IICarnNbEpE22ej3HVy6VDeXS3rJ72tA2Bds3VI,1175
1120
+ esphome/components/host/__init__.py,sha256=GXt0D2oYrLC10UJKXle3oZtoEc4HRYDKHVO-pmWXFZA,1190
1121
1121
  esphome/components/host/const.py,sha256=GvsG6HlxHm1Oh5rpiFTswpNIpG0xmfUvSHxtjZwmyuU,91
1122
1122
  esphome/components/host/core.cpp,sha256=_CSOmrSgL-Zo707ff0xVsWnAFBRzjKWwE4EP-0LosZg,1766
1123
1123
  esphome/components/host/gpio.cpp,sha256=OjPFXl9ZDLhsqUEuNvpAvZiiyeNuUyWjbi6DqZM2hFs,1582
@@ -1355,7 +1355,7 @@ esphome/components/ledc/__init__.py,sha256=PTP_5q_K_2dNnUdkolkVd5komlEbJdS4lolCp
1355
1355
  esphome/components/ledc/ledc_output.cpp,sha256=YjMRso5noCzbJHFL8P6BInIfhS6seqAycSJU2FYYEbs,9836
1356
1356
  esphome/components/ledc/ledc_output.h,sha256=hok37ypQ7BjJkJc22_z8p9qwkH4K1e_xRASNgMBZFyE,1663
1357
1357
  esphome/components/ledc/output.py,sha256=8pYjboSYH2GmMpmwM6sT7ryV81rSM4FuGGloZcqXFR0,2725
1358
- esphome/components/libretiny/__init__.py,sha256=luabsOuhwD3ZS3WcEE2j3C3XVDChC5CSzLCyBIBzXa0,11499
1358
+ esphome/components/libretiny/__init__.py,sha256=uutOtij1QR4rQ_SKB2hG1CajbPFsiO3FcT1gY88x1Po,11512
1359
1359
  esphome/components/libretiny/const.py,sha256=7lp4yTGIMnpxJHLjHPRLJwqCYyWLkwSZZg5DVq1MTic,1959
1360
1360
  esphome/components/libretiny/core.cpp,sha256=Jaq_VlJpwc9iTXiH8b-2PFnNZupnJjJUQNqqHYUiues,991
1361
1361
  esphome/components/libretiny/core.h,sha256=bsl2xiT0QgansYipejruyDLMagECncUMq-ghejC6aB4,175
@@ -1441,7 +1441,7 @@ esphome/components/ltr_als_ps/ltr_als_ps.cpp,sha256=a5NBwe7wtJHwLgIDFoollhz1VSDI
1441
1441
  esphome/components/ltr_als_ps/ltr_als_ps.h,sha256=TxgTmv7apRGsxHAxDow6-CpkQsdWID2KLk-lSDi7KtQ,6466
1442
1442
  esphome/components/ltr_als_ps/ltr_definitions.h,sha256=yaIvnLQBIBnPuQBvHDD9Q_16Uoq1vnABwsTm8j77a3w,7255
1443
1443
  esphome/components/ltr_als_ps/sensor.py,sha256=0HSnG34wHnaj9s-qRO7tYn5p0rSBlGmVXaVDSG520sg,9980
1444
- esphome/components/lvgl/__init__.py,sha256=1E42en4ZvzTWz3WGDUhe9deX9UPHbsTJASMjhnCVlxo,13439
1444
+ esphome/components/lvgl/__init__.py,sha256=hp_JO6RPpO47WSZ5XlcSVP3JceSzKc5GIFvb6BM-eT0,13439
1445
1445
  esphome/components/lvgl/automation.py,sha256=RRocRBIFYJCszhLKy-0iwaKgqdwdV-VHGApnRHYyAm8,10238
1446
1446
  esphome/components/lvgl/defines.py,sha256=aJRZJgH0VuFKlgNZ4a3_1iKLyuDAnRIo17SdyS0widM,13161
1447
1447
  esphome/components/lvgl/encoders.py,sha256=b8E__Bu4OJj8_svtgiHE8hfL78WSJIAuGo_JpmlVf5I,3088
@@ -2266,7 +2266,7 @@ esphome/components/rotary_encoder/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeR
2266
2266
  esphome/components/rotary_encoder/rotary_encoder.cpp,sha256=8mcuTY9iS09W9N95ZtZqDxpg3begH5BhN3VkOpV25JE,10579
2267
2267
  esphome/components/rotary_encoder/rotary_encoder.h,sha256=oeCmz0ctT3CxP-16g3cie9kekgM79omeLQmunbCHRW0,4653
2268
2268
  esphome/components/rotary_encoder/sensor.py,sha256=dTXnJXedy05ezEh67qWJpuPFPax99xq_QHFA0XWcx3U,5231
2269
- esphome/components/rp2040/__init__.py,sha256=qeMn4A_duYtwqHQvKUv1GHIUhEymflSLuM2S56Ocotk,7904
2269
+ esphome/components/rp2040/__init__.py,sha256=fmFsPE-xF0Mb7Nd5CYlF0Ouli0qpgd-5W3u_QWFo3Nw,7917
2270
2270
  esphome/components/rp2040/boards.py,sha256=O0LRt2Bhi5yVvW11iPLOTPkW3P_2WlTonQZERaNzea4,445
2271
2271
  esphome/components/rp2040/build_pio.py.script,sha256=aNtrSnjYcLY6t0NYBGszhwMPISVNrNUg6nJtyBdfyh4,1218
2272
2272
  esphome/components/rp2040/const.py,sha256=1x4XQlMfgQux1bllBAhz9ym-aUeFglxtPnQbpG3vUYQ,147
@@ -2444,8 +2444,8 @@ esphome/components/sgp4x/sgp4x.h,sha256=wUlfVIHreIqDNS6rO_QJo91-9xhj6NIEeC1zQ81y
2444
2444
  esphome/components/shelly_dimmer/__init__.py,sha256=eeBqDV3Pg3-RwlArBG37jYjeYuRqLMwZU3D-zLfs0ws,37
2445
2445
  esphome/components/shelly_dimmer/dev_table.h,sha256=ByBoXa1go3FvcbeTCTDza4vGI4EEQuCJoMJeeyL7ex8,8731
2446
2446
  esphome/components/shelly_dimmer/light.py,sha256=XGD_h73CnIMeh8tvqoZ4MQrNarqRkVnBo2CrJ0NQIXo,7385
2447
- esphome/components/shelly_dimmer/shelly_dimmer.cpp,sha256=zoLfn0G8utiCjpfeOiccCR2ku8c4-fZF1GXygX0WBis,15544
2448
- esphome/components/shelly_dimmer/shelly_dimmer.h,sha256=k0NbwOmj5AWbZr53R3rvPxVmnUZlT5anqP19HO3i9vM,3840
2447
+ esphome/components/shelly_dimmer/shelly_dimmer.cpp,sha256=DHxDGXG1wptnHOLU6VQHKJkswCBwiMZBWxYqPhbv5eA,15461
2448
+ esphome/components/shelly_dimmer/shelly_dimmer.h,sha256=zWAxQ-wvnWFDe_YWv4px9gq_qzjfN3rAI2OMc1YIJFA,3912
2449
2449
  esphome/components/shelly_dimmer/stm32flash.cpp,sha256=1S0uVw5geIHYT9D30xcpfH6Wgm23HNXBmQvmeGQ1I-E,33319
2450
2450
  esphome/components/shelly_dimmer/stm32flash.h,sha256=_2W7HaCS0uHvRtmsF27Dh_3XznqnUyIg9vtqoBeENJQ,4725
2451
2451
  esphome/components/sht3xd/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -2875,7 +2875,7 @@ esphome/components/total_daily_energy/sensor.py,sha256=tzKInzFLBSaVh0555Rh_3bUKF
2875
2875
  esphome/components/total_daily_energy/total_daily_energy.cpp,sha256=q_jsZ1F1rKsN4dOdLH-RHogPH7Hcdbp_42D_lph8SUs,2073
2876
2876
  esphome/components/total_daily_energy/total_daily_energy.h,sha256=HFg_bjSgvlTifRms3D6LziyPX5YrU7aeGnRZ6kIPu94,1307
2877
2877
  esphome/components/touchscreen/__init__.py,sha256=zcKoX8KsWKbktHKaGC5adCzIIJrguQ3ibCYF4EDJSDY,5370
2878
- esphome/components/touchscreen/touchscreen.cpp,sha256=q8Vk61CuMIFtaRmBzEiaB8eJHYg9vfFP3Gvex5YCDzg,4956
2878
+ esphome/components/touchscreen/touchscreen.cpp,sha256=FDUM8gzT3oNVRKEdh45zNjnBrH3O7oyZ31BDPltp1d8,4942
2879
2879
  esphome/components/touchscreen/touchscreen.h,sha256=aV7hVA0XxF1QsmbuJYdDwiS_3HP5g5d-BoKQhNdTCDI,3681
2880
2880
  esphome/components/touchscreen/binary_sensor/__init__.py,sha256=9PC8Ko1SXjLaGeMk-BtcubaG2ZgJHoOMwRAnXjc7BBw,2407
2881
2881
  esphome/components/touchscreen/binary_sensor/touchscreen_binary_sensor.cpp,sha256=Iqnt9p2FGsaAhP2-ruoNUc0VV-T8omYhak0b7b6DhP4,800
@@ -3040,8 +3040,8 @@ esphome/components/vl53l0x/sensor.py,sha256=P8rWgRSOAQO-kAn35UC2I2_UwmYKUWS3DvYD
3040
3040
  esphome/components/vl53l0x/vl53l0x_sensor.cpp,sha256=JqSIf9jjNhin561LU-QzAmRKEK0PqQ8CuLO2mn380og,15017
3041
3041
  esphome/components/vl53l0x/vl53l0x_sensor.h,sha256=iTtScB2O7DVFh0eR9AVht2l3AdSAPJOVMtflTv2ZX7c,2561
3042
3042
  esphome/components/voice_assistant/__init__.py,sha256=mMd2eklOnmvpDJLjzr1nIUS6iXIWjHi6mmlGDs7iV1M,13826
3043
- esphome/components/voice_assistant/voice_assistant.cpp,sha256=aVJEIdRAtZa3RQon_sb76UfUKgNwBtRghQLEt8QxLZ4,29613
3044
- esphome/components/voice_assistant/voice_assistant.h,sha256=0nwW6Jzad0JU3L-On3FbUa5VmHy1jmTHhyn3FvQSJxM,11648
3043
+ esphome/components/voice_assistant/voice_assistant.cpp,sha256=p3QkEluD845Xu3XYB_6K5sAta_MpvMRQ9hQ97nGZ4gU,29559
3044
+ esphome/components/voice_assistant/voice_assistant.h,sha256=5Do-4sdNRPokNNdB4_0XNP7g-XYcojhpMGu9rFaxVhI,11644
3045
3045
  esphome/components/voltage_sampler/__init__.py,sha256=IU5YrROZSNyuAP1d6M_V3ZGAwNjXCHPcVy5nMjZ953Y,155
3046
3046
  esphome/components/voltage_sampler/voltage_sampler.h,sha256=Y67FLOpOzW29v29BRRyYgEmGZ_B8QnUUaqJMH6FA3jM,337
3047
3047
  esphome/components/wake_on_lan/__init__.py,sha256=-RYpXD02o3dlFnKzOCYk58bUbxfD2v-wj1ECywj-cgI,50
@@ -3061,7 +3061,7 @@ esphome/components/web_server/list_entities.cpp,sha256=KZPiwuVT17wTxTJ0dwNt8alxF
3061
3061
  esphome/components/web_server/list_entities.h,sha256=y-y1d5Pi_e0o2vHk257KelJY4HoyK7xvL_WdWH6aRaU,2077
3062
3062
  esphome/components/web_server/server_index_v2.h,sha256=klUL1lEbo_YN_Mrx48tFu9LNmunGJfZyzGYO8adEWVo,74318
3063
3063
  esphome/components/web_server/server_index_v3.h,sha256=ISSZbq8VzjfnI3a4D8myDM0iGRQ7LWUVriHVGjz2pVs,473726
3064
- esphome/components/web_server/web_server.cpp,sha256=ykXSMUB-VkVvmFXWBs5vTbQM_Itw9x4zZ7BH349aAw4,64494
3064
+ esphome/components/web_server/web_server.cpp,sha256=lx1nIOIxFg6xtRHtXKyrlADJ4-fds-jjdk29mYMaNV4,64876
3065
3065
  esphome/components/web_server/web_server.h,sha256=pUcK_p6ehhVoevr64_YEyyEA3qgxdnsO0PK5gmoXFgg,13767
3066
3066
  esphome/components/web_server/web_server_v1.cpp,sha256=Ri32qveJXRPxCpgWz-0Eo3it2yIdVWb5NkRVzokQJLw,7213
3067
3067
  esphome/components/web_server_base/__init__.py,sha256=mY9m_IS1ifiay-fYqDumRw8QJdhbcONCovAMIh42n2k,1122
@@ -3096,7 +3096,7 @@ esphome/components/wiegand/wiegand.h,sha256=gyg5szEK0okoeLBQR284k84xy-ln19kNIkeO
3096
3096
  esphome/components/wifi/__init__.py,sha256=6FJ70aZwjp6tqMecz3bfesxvHn8QLcWZKZqGrzhUTxc,16419
3097
3097
  esphome/components/wifi/wifi_component.cpp,sha256=7R2Cjv9I7gmsYbbG7mbYq2zxaN9E4_F2tOloD0BWvgM,28977
3098
3098
  esphome/components/wifi/wifi_component.h,sha256=VQWxTtMOL2Xc_9fZLklYT0cenyFlIzUuWZ3xzlhvoEY,12394
3099
- esphome/components/wifi/wifi_component_esp32_arduino.cpp,sha256=Q1blG3GK3j-guDuXgLAq8453h3i8WwlrX7sg9-pl728,26981
3099
+ esphome/components/wifi/wifi_component_esp32_arduino.cpp,sha256=sFVe_lAE6pp90gr53GQMZSaQTZekfUp0KSOD9megfog,27093
3100
3100
  esphome/components/wifi/wifi_component_esp8266.cpp,sha256=EFITnPweDMMVjtXnz7SlcMdhv_FMsCIm_O9tGW3Hiso,27131
3101
3101
  esphome/components/wifi/wifi_component_esp_idf.cpp,sha256=WkPpYOBaHvZjXZeaYaBvnSaNP-bjFCUqGMMP6dOx4a0,35504
3102
3102
  esphome/components/wifi/wifi_component_libretiny.cpp,sha256=ASeaZMVG2WJi321sfp1OuELAvvEh8W2Ooy2aG1MVUYE,16275
@@ -3262,7 +3262,7 @@ esphome/core/component.cpp,sha256=Uea5Hkm0E9yJMJYnrbLFFVpdcBZgaWSxfAiwcyGKByA,93
3262
3262
  esphome/core/component.h,sha256=U4m8_g9gSBBIjRNw4k36entP2JcA6F3SsWbwty_hKdo,11744
3263
3263
  esphome/core/component_iterator.cpp,sha256=TUu2K34ATYa1Qyf2s-sZJBksAiFIGj3egzbDKPuFtTQ,11117
3264
3264
  esphome/core/component_iterator.h,sha256=cjacKgRrlxl-VwPOysfBJZNK0NMzcc-w9xXn82m5dYc,3599
3265
- esphome/core/config.py,sha256=gGGU5EI6FJkVGk4N4uP9MdRPct8b9n49Q6P7jGJHBbw,14511
3265
+ esphome/core/config.py,sha256=ASCzpRc8Kp8kkcBV4p7sx8k_7BeQY5LOP7gi2cWsCN0,14598
3266
3266
  esphome/core/controller.cpp,sha256=feO4yH0GETNCqi9MTZEtsOaoo-CPV2rM9S7UfQXY6Ew,4553
3267
3267
  esphome/core/controller.h,sha256=PXCcMqYpq0xjFCdlOKv6WuYlcETnB4sq3UQWdOTt9PU,3720
3268
3268
  esphome/core/datatypes.h,sha256=wN8xro8vqXT13w9KvVOXeQfBwlI_WQZ6uFaIGyub67E,2114
@@ -3309,9 +3309,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
3309
3309
  esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
3310
3310
  esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
3311
3311
  esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
3312
- esphome-2024.10.0b1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3313
- esphome-2024.10.0b1.dist-info/METADATA,sha256=k3A39QJWeTnnHTYC0sk4zlUXZKQee5n-vgNWRwHWBWg,3409
3314
- esphome-2024.10.0b1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
3315
- esphome-2024.10.0b1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3316
- esphome-2024.10.0b1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3317
- esphome-2024.10.0b1.dist-info/RECORD,,
3312
+ esphome-2024.10.1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3313
+ esphome-2024.10.1.dist-info/METADATA,sha256=b9YvzWDW4Q3Cztg34HjZPfGjtO9amPrhMsiQWP5QtPo,3407
3314
+ esphome-2024.10.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
3315
+ esphome-2024.10.1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3316
+ esphome-2024.10.1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3317
+ esphome-2024.10.1.dist-info/RECORD,,