esphome 2025.6.0b2__py3-none-any.whl → 2025.6.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.
- esphome/components/api/api_pb2.cpp +2 -0
- esphome/components/api/api_pb2.h +1 -0
- esphome/components/esp32_ble/ble.cpp +108 -46
- esphome/components/esp32_ble/ble.h +2 -0
- esphome/components/esp32_ble/ble_event.h +242 -75
- esphome/components/esp32_ble/ble_event_pool.h +72 -0
- esphome/components/esp32_ble/queue.h +14 -11
- esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp +1 -0
- esphome/components/esp32_ble_tracker/esp32_ble_tracker.h +4 -0
- esphome/components/i2s_audio/i2s_audio.cpp +1 -1
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp +37 -22
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.h +2 -0
- esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp +28 -10
- esphome/components/i2s_audio/speaker/i2s_audio_speaker.h +1 -0
- esphome/components/light/light_state.h +15 -15
- esphome/components/nextion/nextion.cpp +2 -10
- esphome/components/openthread/__init__.py +5 -5
- esphome/components/openthread/openthread.cpp +3 -3
- esphome/components/openthread/tlv.py +7 -0
- esphome/components/spi/spi_arduino.cpp +22 -9
- esphome/components/switch/switch.h +13 -7
- esphome/config_validation.py +44 -1
- esphome/const.py +1 -1
- esphome/yaml_util.py +2 -1
- {esphome-2025.6.0b2.dist-info → esphome-2025.6.1.dist-info}/METADATA +1 -1
- {esphome-2025.6.0b2.dist-info → esphome-2025.6.1.dist-info}/RECORD +30 -29
- {esphome-2025.6.0b2.dist-info → esphome-2025.6.1.dist-info}/WHEEL +0 -0
- {esphome-2025.6.0b2.dist-info → esphome-2025.6.1.dist-info}/entry_points.txt +0 -0
- {esphome-2025.6.0b2.dist-info → esphome-2025.6.1.dist-info}/licenses/LICENSE +0 -0
- {esphome-2025.6.0b2.dist-info → esphome-2025.6.1.dist-info}/top_level.txt +0 -0
@@ -3,7 +3,6 @@
|
|
3
3
|
|
4
4
|
namespace esphome {
|
5
5
|
namespace spi {
|
6
|
-
|
7
6
|
#ifdef USE_ARDUINO
|
8
7
|
|
9
8
|
static const char *const TAG = "spi-esp-arduino";
|
@@ -38,17 +37,31 @@ class SPIDelegateHw : public SPIDelegate {
|
|
38
37
|
|
39
38
|
void write16(uint16_t data) override { this->channel_->transfer16(data); }
|
40
39
|
|
41
|
-
#ifdef USE_RP2040
|
42
40
|
void write_array(const uint8_t *ptr, size_t length) override {
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
41
|
+
if (length == 1) {
|
42
|
+
this->channel_->transfer(*ptr);
|
43
|
+
return;
|
44
|
+
}
|
45
|
+
#ifdef USE_RP2040
|
46
|
+
// avoid overwriting the supplied buffer. Use vector for automatic deallocation
|
47
|
+
auto rxbuf = std::vector<uint8_t>(length);
|
48
|
+
memcpy(rxbuf.data(), ptr, length);
|
49
|
+
this->channel_->transfer((void *) rxbuf.data(), length);
|
50
|
+
#elif defined(USE_ESP8266)
|
51
|
+
// ESP8266 SPI library requires the pointer to be word aligned, but the data may not be
|
52
|
+
// so we need to copy the data to a temporary buffer
|
53
|
+
if (reinterpret_cast<uintptr_t>(ptr) & 0x3) {
|
54
|
+
ESP_LOGVV(TAG, "SPI write buffer not word aligned, copying to temporary buffer");
|
55
|
+
auto txbuf = std::vector<uint8_t>(length);
|
56
|
+
memcpy(txbuf.data(), ptr, length);
|
57
|
+
this->channel_->writeBytes(txbuf.data(), length);
|
58
|
+
} else {
|
59
|
+
this->channel_->writeBytes(ptr, length);
|
60
|
+
}
|
49
61
|
#else
|
50
|
-
|
62
|
+
this->channel_->writeBytes(ptr, length);
|
51
63
|
#endif
|
64
|
+
}
|
52
65
|
|
53
66
|
void read_array(uint8_t *ptr, size_t length) override { this->channel_->transfer(ptr, length); }
|
54
67
|
|
@@ -21,7 +21,7 @@ const int RESTORE_MODE_PERSISTENT_MASK = 0x02;
|
|
21
21
|
const int RESTORE_MODE_INVERTED_MASK = 0x04;
|
22
22
|
const int RESTORE_MODE_DISABLED_MASK = 0x08;
|
23
23
|
|
24
|
-
enum SwitchRestoreMode {
|
24
|
+
enum SwitchRestoreMode : uint8_t {
|
25
25
|
SWITCH_ALWAYS_OFF = !RESTORE_MODE_ON_MASK,
|
26
26
|
SWITCH_ALWAYS_ON = RESTORE_MODE_ON_MASK,
|
27
27
|
SWITCH_RESTORE_DEFAULT_OFF = RESTORE_MODE_PERSISTENT_MASK,
|
@@ -49,12 +49,12 @@ class Switch : public EntityBase, public EntityBase_DeviceClass {
|
|
49
49
|
*/
|
50
50
|
void publish_state(bool state);
|
51
51
|
|
52
|
-
/// The current reported state of the binary sensor.
|
53
|
-
bool state;
|
54
|
-
|
55
52
|
/// Indicates whether or not state is to be retrieved from flash and how
|
56
53
|
SwitchRestoreMode restore_mode{SWITCH_RESTORE_DEFAULT_OFF};
|
57
54
|
|
55
|
+
/// The current reported state of the binary sensor.
|
56
|
+
bool state;
|
57
|
+
|
58
58
|
/** Turn this switch on. This is called by the front-end.
|
59
59
|
*
|
60
60
|
* For implementing switches, please override write_state.
|
@@ -123,10 +123,16 @@ class Switch : public EntityBase, public EntityBase_DeviceClass {
|
|
123
123
|
*/
|
124
124
|
virtual void write_state(bool state) = 0;
|
125
125
|
|
126
|
-
|
127
|
-
bool inverted_{false};
|
128
|
-
Deduplicator<bool> publish_dedup_;
|
126
|
+
// Pointer first (4 bytes)
|
129
127
|
ESPPreferenceObject rtc_;
|
128
|
+
|
129
|
+
// CallbackManager (12 bytes on 32-bit - contains vector)
|
130
|
+
CallbackManager<void(bool)> state_callback_{};
|
131
|
+
|
132
|
+
// Small types grouped together
|
133
|
+
Deduplicator<bool> publish_dedup_; // 2 bytes (bool has_value_ + bool last_value_)
|
134
|
+
bool inverted_{false}; // 1 byte
|
135
|
+
// Total: 3 bytes, 1 byte padding
|
130
136
|
};
|
131
137
|
|
132
138
|
#define LOG_SWITCH(prefix, type, obj) log_switch((TAG), (prefix), LOG_STR_LITERAL(type), (obj))
|
esphome/config_validation.py
CHANGED
@@ -3,7 +3,15 @@
|
|
3
3
|
from contextlib import contextmanager
|
4
4
|
from dataclasses import dataclass
|
5
5
|
from datetime import datetime
|
6
|
-
from ipaddress import
|
6
|
+
from ipaddress import (
|
7
|
+
AddressValueError,
|
8
|
+
IPv4Address,
|
9
|
+
IPv4Network,
|
10
|
+
IPv6Address,
|
11
|
+
IPv6Network,
|
12
|
+
ip_address,
|
13
|
+
ip_network,
|
14
|
+
)
|
7
15
|
import logging
|
8
16
|
import os
|
9
17
|
import re
|
@@ -1176,6 +1184,14 @@ def ipv4address(value):
|
|
1176
1184
|
return address
|
1177
1185
|
|
1178
1186
|
|
1187
|
+
def ipv6address(value):
|
1188
|
+
try:
|
1189
|
+
address = IPv6Address(value)
|
1190
|
+
except AddressValueError as exc:
|
1191
|
+
raise Invalid(f"{value} is not a valid IPv6 address") from exc
|
1192
|
+
return address
|
1193
|
+
|
1194
|
+
|
1179
1195
|
def ipv4address_multi_broadcast(value):
|
1180
1196
|
address = ipv4address(value)
|
1181
1197
|
if not (address.is_multicast or (address == IPv4Address("255.255.255.255"))):
|
@@ -1193,6 +1209,33 @@ def ipaddress(value):
|
|
1193
1209
|
return address
|
1194
1210
|
|
1195
1211
|
|
1212
|
+
def ipv4network(value):
|
1213
|
+
"""Validate that the value is a valid IPv4 network."""
|
1214
|
+
try:
|
1215
|
+
network = IPv4Network(value, strict=False)
|
1216
|
+
except ValueError as exc:
|
1217
|
+
raise Invalid(f"{value} is not a valid IPv4 network") from exc
|
1218
|
+
return network
|
1219
|
+
|
1220
|
+
|
1221
|
+
def ipv6network(value):
|
1222
|
+
"""Validate that the value is a valid IPv6 network."""
|
1223
|
+
try:
|
1224
|
+
network = IPv6Network(value, strict=False)
|
1225
|
+
except ValueError as exc:
|
1226
|
+
raise Invalid(f"{value} is not a valid IPv6 network") from exc
|
1227
|
+
return network
|
1228
|
+
|
1229
|
+
|
1230
|
+
def ipnetwork(value):
|
1231
|
+
"""Validate that the value is a valid IP network."""
|
1232
|
+
try:
|
1233
|
+
network = ip_network(value, strict=False)
|
1234
|
+
except ValueError as exc:
|
1235
|
+
raise Invalid(f"{value} is not a valid IP network") from exc
|
1236
|
+
return network
|
1237
|
+
|
1238
|
+
|
1196
1239
|
def _valid_topic(value):
|
1197
1240
|
"""Validate that this is a valid topic name/filter."""
|
1198
1241
|
if value is None: # Used to disable publishing and subscribing
|
esphome/const.py
CHANGED
esphome/yaml_util.py
CHANGED
@@ -5,7 +5,7 @@ import fnmatch
|
|
5
5
|
import functools
|
6
6
|
import inspect
|
7
7
|
from io import BytesIO, TextIOBase, TextIOWrapper
|
8
|
-
from ipaddress import _BaseAddress
|
8
|
+
from ipaddress import _BaseAddress, _BaseNetwork
|
9
9
|
import logging
|
10
10
|
import math
|
11
11
|
import os
|
@@ -621,6 +621,7 @@ ESPHomeDumper.add_multi_representer(str, ESPHomeDumper.represent_stringify)
|
|
621
621
|
ESPHomeDumper.add_multi_representer(int, ESPHomeDumper.represent_int)
|
622
622
|
ESPHomeDumper.add_multi_representer(float, ESPHomeDumper.represent_float)
|
623
623
|
ESPHomeDumper.add_multi_representer(_BaseAddress, ESPHomeDumper.represent_stringify)
|
624
|
+
ESPHomeDumper.add_multi_representer(_BaseNetwork, ESPHomeDumper.represent_stringify)
|
624
625
|
ESPHomeDumper.add_multi_representer(MACAddress, ESPHomeDumper.represent_stringify)
|
625
626
|
ESPHomeDumper.add_multi_representer(TimePeriod, ESPHomeDumper.represent_stringify)
|
626
627
|
ESPHomeDumper.add_multi_representer(Lambda, ESPHomeDumper.represent_lambda)
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: esphome
|
3
|
-
Version: 2025.6.
|
3
|
+
Version: 2025.6.1
|
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
|
@@ -4,8 +4,8 @@ esphome/automation.py,sha256=9xmW3AmWDd2oKB7zF-UITYIiSci8ys8qiylK-rcU7Rg,15689
|
|
4
4
|
esphome/codegen.py,sha256=GePHUM7xdXb_Pil59SHVsXg2F4VBPgkH-Fz2PDX8Z54,1873
|
5
5
|
esphome/config.py,sha256=GsKqzNb4OBxA92eltdGYtP7e9fgtk80QsquhnUesb50,39948
|
6
6
|
esphome/config_helpers.py,sha256=MKf_wzO35nn41FvigXE0iYKDslPgL2ruf8R-EPtTT2I,3256
|
7
|
-
esphome/config_validation.py,sha256=
|
8
|
-
esphome/const.py,sha256=
|
7
|
+
esphome/config_validation.py,sha256=Nt8rQegT0VRAcWumtI0rJ92kW0milKMv3b443ZUzcfY,63437
|
8
|
+
esphome/const.py,sha256=QgR3DaFz_YxZhrNTslTHOqnNYmKGGGhf1OEEUyyynR4,41815
|
9
9
|
esphome/coroutine.py,sha256=HNBqqhaTbpvsOI19bTXltxJCMVtoeqZPe4qTf4CKkAc,9309
|
10
10
|
esphome/cpp_generator.py,sha256=2MbyMVt9hg7cFD0X8885IiJfFNjdqkqjis3P-0oa5L0,31346
|
11
11
|
esphome/cpp_helpers.py,sha256=6C2vNbOIhZKi43xRVlk5hp9GfshfBn-rc5D_ZFUEYaE,4801
|
@@ -28,7 +28,7 @@ esphome/voluptuous_schema.py,sha256=tQUOLvVec6v4pxfWpa8CMgXqBqomuqUUYEJqCJOPhNs,
|
|
28
28
|
esphome/vscode.py,sha256=pKBx_9jmQlRJB1xiqjWq2-pFhXae8VNSFGYoqxRBMkw,4279
|
29
29
|
esphome/wizard.py,sha256=mru5jCpYTNrgaure7bP6fTkZ-1OfoUmqsowYuFBWRdU,15377
|
30
30
|
esphome/writer.py,sha256=qxT5CJOIXEJlqJy490layWc-47QLPFBWUpKOsy8FQvQ,11040
|
31
|
-
esphome/yaml_util.py,sha256=
|
31
|
+
esphome/yaml_util.py,sha256=k1zp-z1lpjIpRFbnzk6I3mwJouU2_9EtjNpgJdMA2eo,23239
|
32
32
|
esphome/zeroconf.py,sha256=dy3aWh1Lf4Sh5e7Izlq30FkdzAKWA6IGvZkXuxYrxFE,6511
|
33
33
|
esphome/components/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
34
34
|
esphome/components/a01nyub/__init__.py,sha256=d_xNluCS0T63CxdXJGuw7raK7G9vAEwXNJpnA9GthzA,34
|
@@ -187,8 +187,8 @@ esphome/components/api/api_connection.h,sha256=oZhcUrl6RByGhtLENp41-5b6CC0NXgbTu
|
|
187
187
|
esphome/components/api/api_frame_helper.cpp,sha256=KCHNw9HQ_Id3TirJytskB_1AO4tZz5NtZVZ9DCl3zPM,38965
|
188
188
|
esphome/components/api/api_frame_helper.h,sha256=gytvsuTbh4beQ2lGgGy-Crf-gQSCDU2z3plEa6EbgX8,9944
|
189
189
|
esphome/components/api/api_noise_context.h,sha256=y_3hWMKXtKxyCwZ8cKQjn3gQqenaAX5DhcCFQ6kBiPc,606
|
190
|
-
esphome/components/api/api_pb2.cpp,sha256=
|
191
|
-
esphome/components/api/api_pb2.h,sha256=
|
190
|
+
esphome/components/api/api_pb2.cpp,sha256=Es5qQLWZnKYurq9d9Gxp6eakh4Cne7cV2_lrE1j5sUM,319391
|
191
|
+
esphome/components/api/api_pb2.h,sha256=RIJPU96qJ7uT4enMyXJKnA931Scr73vrZKMlACJiiwg,106904
|
192
192
|
esphome/components/api/api_pb2_service.cpp,sha256=6K191Ols2tcmccr0leWTGgyJljPyfzOAJdF4Ep9TIrY,32073
|
193
193
|
esphome/components/api/api_pb2_service.h,sha256=CiUQWqbEIWSTN_Ku8RgA1UoVHUT2EWKjOUw9g28rYDc,16444
|
194
194
|
esphome/components/api/api_pb2_size.h,sha256=i9wFf675YrfJy9Em_vZLPJ9osRHRNkOb7DMd1LpK3YM,13430
|
@@ -839,15 +839,16 @@ esphome/components/esp32/post_build.py.script,sha256=ZBsPNunx2BH4ZiRyXnjTP7D7eN2
|
|
839
839
|
esphome/components/esp32/preferences.cpp,sha256=WpEG6PenHwrAIonuoV_chdDJriJXF5dcpIbuYfmaUCQ,6229
|
840
840
|
esphome/components/esp32/preferences.h,sha256=9HIy-BOgjOXJiEgOizZ_Qb8-l6K4eb3VSPW8Y8ffuWM,165
|
841
841
|
esphome/components/esp32_ble/__init__.py,sha256=aShI9hnF7NU0M8GrIYgOFqF4N2QL96Iuhzrh8SV1pus,9598
|
842
|
-
esphome/components/esp32_ble/ble.cpp,sha256=
|
843
|
-
esphome/components/esp32_ble/ble.h,sha256=
|
842
|
+
esphome/components/esp32_ble/ble.cpp,sha256=Trg51D750u2AsKTCpktiGMF26BHOQSvzxzKW-etuJBU,17932
|
843
|
+
esphome/components/esp32_ble/ble.h,sha256=eRr_nTLqWzkKn_Po4i4wuA_AQsiHduUu_8uBQjtRF80,5878
|
844
844
|
esphome/components/esp32_ble/ble_advertising.cpp,sha256=LFrrx7xMjXAf7pt7Q43XzlwwcE1YKKulE3Zbuqow6JU,6104
|
845
845
|
esphome/components/esp32_ble/ble_advertising.h,sha256=tbN2CN1CqlosOvnG0NlMHC_0JPMZ2ugTzIIOSmQl30s,1576
|
846
|
-
esphome/components/esp32_ble/ble_event.h,sha256=
|
846
|
+
esphome/components/esp32_ble/ble_event.h,sha256=3Zuq6mkPwBLg6AR4Q_7aebxLh7EWAlb4rLDmOL3DWIc,18301
|
847
|
+
esphome/components/esp32_ble/ble_event_pool.h,sha256=HWGuDfX34P-CgMtB5yzie2Y53dWtX-Cq-Scp0cXGMlo,1758
|
847
848
|
esphome/components/esp32_ble/ble_scan_result.h,sha256=3hpnLDvy9Fr7sMuophP_db4GcF76qWSZKOn_ZljYoME,546
|
848
849
|
esphome/components/esp32_ble/ble_uuid.cpp,sha256=2go_q78xgFlQRH_ZpM4tdsDJqyqe_3Ssn2PJFkpjlfI,6167
|
849
850
|
esphome/components/esp32_ble/ble_uuid.h,sha256=6OL7GrNP-pxIqANnLlsd4IWCRnVzRD3Zx20pD4uGymA,916
|
850
|
-
esphome/components/esp32_ble/queue.h,sha256=
|
851
|
+
esphome/components/esp32_ble/queue.h,sha256=11OyhJYHxuY5UTuJZawxWCoeHsGkig9uiZ3oVhN1j2M,2625
|
851
852
|
esphome/components/esp32_ble_beacon/__init__.py,sha256=ts8d3ZFLBH_QE6cW748AZUXaK_yCqg3rzlJcObTGkAQ,3190
|
852
853
|
esphome/components/esp32_ble_beacon/esp32_ble_beacon.cpp,sha256=Y1xsFMHU306rZ8ZU7Y0UmhU22gXYe_28o7jg1t5e3Ms,4202
|
853
854
|
esphome/components/esp32_ble_beacon/esp32_ble_beacon.h,sha256=tDM9fy5VLIrCp45bqgsqHAm6FTsn7ixoOZkuTugZqqw,1868
|
@@ -874,8 +875,8 @@ esphome/components/esp32_ble_server/ble_service.cpp,sha256=cLJpq-eEFNXV4tlkSHXQW
|
|
874
875
|
esphome/components/esp32_ble_server/ble_service.h,sha256=BvKpr2fsUlNnviH9gdokI7IcuTBu0C7bNFT0vvIuN1Y,2306
|
875
876
|
esphome/components/esp32_ble_tracker/__init__.py,sha256=cWHciy2tEUDNBC_bUqE-1hPSSGecbat3-8HUBitjOqQ,15170
|
876
877
|
esphome/components/esp32_ble_tracker/automation.h,sha256=0pDA6EX__f14sT0KJwcnqg7UOsueKjjegHPznQj9biw,3795
|
877
|
-
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256
|
878
|
-
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=
|
878
|
+
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=VLZ9egEuses6lxLIQJQ43YDg2VYYlQVNYjgQSRrecxk,33205
|
879
|
+
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=bhbPLtxVvW0rwQWUXBzcby0SwyvER0KLmEucXawfuSQ,10849
|
879
880
|
esphome/components/esp32_camera/__init__.py,sha256=3M3EhzV9jPpWMiAHPaVWbYUW3D_uEM_6Je4Gd2EGhNg,12631
|
880
881
|
esphome/components/esp32_camera/esp32_camera.cpp,sha256=Q7QjA1DBd_dnQkB6xos7STKZPhSDM0C09m1YvO7E1U4,16685
|
881
882
|
esphome/components/esp32_camera/esp32_camera.h,sha256=bCDwl44XrornN6_KHe8htnrUJOoFlE-KMipggt3NWa8,7590
|
@@ -1261,17 +1262,17 @@ esphome/components/i2c_device/__init__.py,sha256=O5TGYNn8F1WOy4xm0ilHSKvMrl6EnTa
|
|
1261
1262
|
esphome/components/i2c_device/i2c_device.cpp,sha256=Q4RPp_47MII-KQoQBs7Pdt5HHEasRlp-3F_ZvOKgC9c,350
|
1262
1263
|
esphome/components/i2c_device/i2c_device.h,sha256=QY8euzqa5rsehqIHj4nGktDaR7guW2vgGJ_XsT71Src,389
|
1263
1264
|
esphome/components/i2s_audio/__init__.py,sha256=lJHbtVstO5b06cMy52qaaDRW4daoXUjGTRXMbO_-XU0,9335
|
1264
|
-
esphome/components/i2s_audio/i2s_audio.cpp,sha256=
|
1265
|
+
esphome/components/i2s_audio/i2s_audio.cpp,sha256=iHAdkjg5i8TEtJvOM7WPO_lxgvxr27sv6hx1t79fnTs,712
|
1265
1266
|
esphome/components/i2s_audio/i2s_audio.h,sha256=8qkrVoPFGs95JQqbcSj0-3w5ig6K6HbNeFL46A8un9w,3448
|
1266
1267
|
esphome/components/i2s_audio/media_player/__init__.py,sha256=YKIoFb4ANgc6_jIV3t6iD0BlqW90xXpwRThyoKQQHPs,3720
|
1267
1268
|
esphome/components/i2s_audio/media_player/i2s_audio_media_player.cpp,sha256=CiO08AVUZG-egAIOs9OSgYttC1d3xQT871wJoq4718o,7563
|
1268
1269
|
esphome/components/i2s_audio/media_player/i2s_audio_media_player.h,sha256=gmG6n9YU2Mz85CFa3fO7Na2KBdt9fOrGbDg0-C7jwjI,2078
|
1269
1270
|
esphome/components/i2s_audio/microphone/__init__.py,sha256=m62jL72XwxBavk9cDULs2cdcbHHkM96JF5RPiPBHGcg,4281
|
1270
|
-
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=
|
1271
|
-
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=
|
1271
|
+
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=TUsYopCDgzRWi4QRtw3hNx5qmsy4eT8hUnEeUvFyiA4,16932
|
1272
|
+
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=74azu9ZjuKfbE5tPXIMDMQD241EqYU1VtV8gpwfLtHw,2409
|
1272
1273
|
esphome/components/i2s_audio/speaker/__init__.py,sha256=EUWTtCtc3T5zoaHMUnqu-KjJh5nnwKrkUAQi3QYEDi0,6152
|
1273
|
-
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=
|
1274
|
-
esphome/components/i2s_audio/speaker/i2s_audio_speaker.h,sha256=
|
1274
|
+
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=UGCEScVGIZjSgMdrREjmdDpzLzCwC238oX29_odEuqo,27461
|
1275
|
+
esphome/components/i2s_audio/speaker/i2s_audio_speaker.h,sha256=JZLm5X2Anpx4R34eXONlHvzypJvLI8N-MQiZkFhx7B4,6697
|
1275
1276
|
esphome/components/iaqcore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1276
1277
|
esphome/components/iaqcore/iaqcore.cpp,sha256=GIrdHKFMo9euldjdQX0xFdvOxAShB6yPVab7oCWGEsw,2246
|
1277
1278
|
esphome/components/iaqcore/iaqcore.h,sha256=wYuMlxOawAHkok41WzryDsV-2a4-YTsG0TU-gfP-ZyE,678
|
@@ -1511,7 +1512,7 @@ esphome/components/light/light_json_schema.h,sha256=8c8I3idy9-mg1jViEOlJUZu1ajD2
|
|
1511
1512
|
esphome/components/light/light_output.cpp,sha256=68RwaJIYZJHZi2Dr0CBdyBFbBim4V6lvVYVub4YAzuk,270
|
1512
1513
|
esphome/components/light/light_output.h,sha256=mDajz4kmyDxVlTFJBI49cQKx6DQDBHVwhv_z_gKyAb0,1028
|
1513
1514
|
esphome/components/light/light_state.cpp,sha256=mQWjD_s-YV5YtOpmlX5OlnC5jpIEmKbVcDp-QEK-CSE,11850
|
1514
|
-
esphome/components/light/light_state.h,sha256
|
1515
|
+
esphome/components/light/light_state.h,sha256=KsHXjxVpzKqOvpnJBIjGBe_qPRxqXXjTeNfx6-XpvZ4,9208
|
1515
1516
|
esphome/components/light/light_traits.h,sha256=CA7Cs8LUc8rImkhPJF16L08u4KLDas3b-a5gZEVUtf4,2564
|
1516
1517
|
esphome/components/light/light_transformer.h,sha256=SanY8yirPWyrIdL7anv-tBuT-lIwGm8vJhdwSa93EEc,1801
|
1517
1518
|
esphome/components/light/transformers.h,sha256=E2Fuc2wuf9VYaHIMTAihBq7ucl45Y0K65Y2BlNN8x-U,4745
|
@@ -2015,7 +2016,7 @@ esphome/components/nextion/__init__.py,sha256=1f1kBHOUMvvwSjeIgY6cWSS_cAuRILmgs7
|
|
2015
2016
|
esphome/components/nextion/automation.h,sha256=baaMGf6qTWI2OILZvkIkiKiW_pM21YZqTNbeggVXeXw,4555
|
2016
2017
|
esphome/components/nextion/base_component.py,sha256=4O2S8GLPQerIbYlIYX7O3hEkHN7unn7u9pcRCkcBlIo,4290
|
2017
2018
|
esphome/components/nextion/display.py,sha256=GszSWhlTFnGYlw-fj8oH3vxtaTdpMHK1JEltSs1dCO8,7977
|
2018
|
-
esphome/components/nextion/nextion.cpp,sha256=
|
2019
|
+
esphome/components/nextion/nextion.cpp,sha256=814O1mFUe9SozcaVsIxzmxsSLsNKxCvV43JYMbGaW1g,42214
|
2019
2020
|
esphome/components/nextion/nextion.h,sha256=SQvZnSQx1gMH9b76sIOEh-IK5mjAxPffBrQNWi0uA5Y,51539
|
2020
2021
|
esphome/components/nextion/nextion_base.h,sha256=3v9nuHpvpFxMKutV4bzuu1OB_uj26PRDaDc5gTv_2rc,2416
|
2021
2022
|
esphome/components/nextion/nextion_commands.cpp,sha256=XjTHKSw7UHf0fujti5u_keUFGtYIAlrrTKNACSxnE60,17716
|
@@ -2120,12 +2121,12 @@ esphome/components/opentherm/sensor/__init__.py,sha256=uNb3f8CaWk7HE97GEKb_Jw61j
|
|
2120
2121
|
esphome/components/opentherm/switch/__init__.py,sha256=rgirLZntBuvFQ_7T0WEfhC6pPE6dXdIXV37-DZq3yIE,1136
|
2121
2122
|
esphome/components/opentherm/switch/switch.cpp,sha256=UurvOy-U1IEmNxWMCCpkPCueR-POh-FBI8fBjWWc64o,820
|
2122
2123
|
esphome/components/opentherm/switch/switch.h,sha256=JhJFaXrJi3orbavFDc4llzmmHwU0yN2v_VuwJx3r7FU,410
|
2123
|
-
esphome/components/openthread/__init__.py,sha256=
|
2124
|
+
esphome/components/openthread/__init__.py,sha256=lZ5TETobR61V1-jAEm0gEOnNCzRqci9Ni-4dKy-001w,5108
|
2124
2125
|
esphome/components/openthread/const.py,sha256=jJvW1yrA2naAIuhZ4aGH9WEFm8MNvsbTcUJqrJR8CfM,288
|
2125
|
-
esphome/components/openthread/openthread.cpp,sha256=
|
2126
|
+
esphome/components/openthread/openthread.cpp,sha256=SrMt0cNvPMpHk0eZDf9DPE8GGIuDpTfevjItX_87qGQ,7121
|
2126
2127
|
esphome/components/openthread/openthread.h,sha256=0FpY2swy0Dpvk51doFcX1IbKfKPO7CaFWFmS1hTeQD8,1855
|
2127
2128
|
esphome/components/openthread/openthread_esp.cpp,sha256=I8bbPhwJQDfnd8RqhpZJqezJXayZztv1ZnnlLIB_KqU,4714
|
2128
|
-
esphome/components/openthread/tlv.py,sha256=
|
2129
|
+
esphome/components/openthread/tlv.py,sha256=hYi_WM0Ja2Eo2gFR_8xIzcMY6En4g12JpolLBIb12LQ,1620
|
2129
2130
|
esphome/components/openthread_info/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2130
2131
|
esphome/components/openthread_info/openthread_info_text_sensor.cpp,sha256=M2kQAgRn2uRsjsJF96lEHtD39HTAhCp5bn2gLDARR34,1113
|
2131
2132
|
esphome/components/openthread_info/openthread_info_text_sensor.h,sha256=nLnWZBLkq3Dvnr1Rg8Lnj7bO3EhqSfYfRiQkYOQSmPg,6932
|
@@ -2797,7 +2798,7 @@ esphome/components/speed/fan/speed_fan.h,sha256=hjY7VbM4H62p4Wl9XsuGSFodSi82tlH7
|
|
2797
2798
|
esphome/components/spi/__init__.py,sha256=3yUZTB6XJSBQvsQSHVds5dSgeWdVn3yvcZbyq__sfB4,13799
|
2798
2799
|
esphome/components/spi/spi.cpp,sha256=d-gJ6-lOHfuibBCpiB-1NbHbLxRt0W4G0mVAGwMgUMk,4069
|
2799
2800
|
esphome/components/spi/spi.h,sha256=uyvQGrFOG_aqPj7raEjEEwCtMXpvtcMCCGck-QeqiZI,15297
|
2800
|
-
esphome/components/spi/spi_arduino.cpp,sha256=
|
2801
|
+
esphome/components/spi/spi_arduino.cpp,sha256=T8qMEtL5gFNTQwTFd4aoezY8Y7cEb3Sx4WyaZQLAYu4,3821
|
2801
2802
|
esphome/components/spi/spi_esp_idf.cpp,sha256=ZKow9phECsh7YtZi8J96wFsYzV8TEhI7-XYe_xPitqo,8821
|
2802
2803
|
esphome/components/spi_device/__init__.py,sha256=jzMNA6ATcdlkobnDfKbCWlif1UGMluD3WH9XkzebshI,1111
|
2803
2804
|
esphome/components/spi_device/spi_device.cpp,sha256=JmjBhuhJeGQI5pBYw81wcqxq6r8xdXWfaaefy32J0PM,810
|
@@ -2932,7 +2933,7 @@ esphome/components/switch/__init__.py,sha256=MsmIZmG_fBJoNYpLof_PhTCVVnAXQusGNKO
|
|
2932
2933
|
esphome/components/switch/automation.cpp,sha256=jwWqm_2I21hZVMJ_5VgyMktPNEJHj0b3xuXARpc5k8Q,197
|
2933
2934
|
esphome/components/switch/automation.h,sha256=MG8-giENk7znqhHTeert_JEBPL7C6e0SlglUKAb3rQo,1999
|
2934
2935
|
esphome/components/switch/switch.cpp,sha256=GGccuB8NU1eoI6ap4JvAhyFVTYgTFw62IMdliqtKa1o,3667
|
2935
|
-
esphome/components/switch/switch.h,sha256=
|
2936
|
+
esphome/components/switch/switch.h,sha256=lLrzKALopIjcH0Zq7vjjwCjrKeQsiuLoKLtBQlTxr7M,4986
|
2936
2937
|
esphome/components/switch/binary_sensor/__init__.py,sha256=vSm7ahCF2DzXvYzbdfgAMZzcOimrO-ivfLkLf_q4kMo,760
|
2937
2938
|
esphome/components/switch/binary_sensor/switch_binary_sensor.cpp,sha256=ZPwaqXQTS_PIdBahVr_YMToaxckCMzDJAd7PqIIApls,470
|
2938
2939
|
esphome/components/switch/binary_sensor/switch_binary_sensor.h,sha256=rHmlHpq0LavioIB9pWNBHff4yQXS7-aLfFMSMc0CvT4,539
|
@@ -3595,9 +3596,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3595
3596
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3596
3597
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3597
3598
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3598
|
-
esphome-2025.6.
|
3599
|
-
esphome-2025.6.
|
3600
|
-
esphome-2025.6.
|
3601
|
-
esphome-2025.6.
|
3602
|
-
esphome-2025.6.
|
3603
|
-
esphome-2025.6.
|
3599
|
+
esphome-2025.6.1.dist-info/licenses/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3600
|
+
esphome-2025.6.1.dist-info/METADATA,sha256=YHEkqz_qYmFQhk5PdKCeT3WQyl3ukyRrK4sFTarKYWg,3678
|
3601
|
+
esphome-2025.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3602
|
+
esphome-2025.6.1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3603
|
+
esphome-2025.6.1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3604
|
+
esphome-2025.6.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|