esphome 2024.7.0b3__py3-none-any.whl → 2024.7.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/__main__.py +2 -1
- esphome/components/heatpumpir/climate.py +3 -0
- esphome/components/http_request/http_request_idf.cpp +1 -0
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp +2 -1
- 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/sml/sml_parser.cpp +4 -2
- esphome/const.py +1 -1
- {esphome-2024.7.0b3.dist-info → esphome-2024.7.1.dist-info}/METADATA +1 -1
- {esphome-2024.7.0b3.dist-info → esphome-2024.7.1.dist-info}/RECORD +16 -16
- {esphome-2024.7.0b3.dist-info → esphome-2024.7.1.dist-info}/LICENSE +0 -0
- {esphome-2024.7.0b3.dist-info → esphome-2024.7.1.dist-info}/WHEEL +0 -0
- {esphome-2024.7.0b3.dist-info → esphome-2024.7.1.dist-info}/entry_points.txt +0 -0
- {esphome-2024.7.0b3.dist-info → esphome-2024.7.1.dist-info}/top_level.txt +0 -0
esphome/__main__.py
CHANGED
@@ -8,6 +8,7 @@ from esphome.const import (
|
|
8
8
|
CONF_PROTOCOL,
|
9
9
|
CONF_VISUAL,
|
10
10
|
)
|
11
|
+
from esphome.core import CORE
|
11
12
|
|
12
13
|
CODEOWNERS = ["@rob-deutsch"]
|
13
14
|
|
@@ -127,3 +128,5 @@ def to_code(config):
|
|
127
128
|
cg.add(var.set_min_temperature(config[CONF_MIN_TEMPERATURE]))
|
128
129
|
|
129
130
|
cg.add_library("tonia/HeatpumpIR", "1.0.27")
|
131
|
+
if CORE.is_libretiny:
|
132
|
+
CORE.add_platformio_option("lib_ignore", "IRremoteESP8266")
|
@@ -52,6 +52,7 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
|
|
52
52
|
config.timeout_ms = this->timeout_;
|
53
53
|
config.disable_auto_redirect = !this->follow_redirects_;
|
54
54
|
config.max_redirection_count = this->redirect_limit_;
|
55
|
+
config.auth_type = HTTP_AUTH_TYPE_BASIC;
|
55
56
|
#if CONFIG_MBEDTLS_CERTIFICATE_BUNDLE
|
56
57
|
if (secure) {
|
57
58
|
config.crt_bundle_attach = esp_crt_bundle_attach;
|
@@ -174,7 +174,8 @@ size_t I2SAudioMicrophone::read(int16_t *buf, size_t len) {
|
|
174
174
|
size_t samples_read = bytes_read / sizeof(int32_t);
|
175
175
|
samples.resize(samples_read);
|
176
176
|
for (size_t i = 0; i < samples_read; i++) {
|
177
|
-
|
177
|
+
int32_t temp = reinterpret_cast<int32_t *>(buf)[i] >> 14;
|
178
|
+
samples[i] = clamp<int16_t>(temp, INT16_MIN, INT16_MAX);
|
178
179
|
}
|
179
180
|
memcpy(buf, samples.data(), samples_read * sizeof(int16_t));
|
180
181
|
return samples_read * sizeof(int16_t);
|
@@ -1,14 +1,17 @@
|
|
1
1
|
#ifdef USE_ESP32_FRAMEWORK_ARDUINO
|
2
2
|
#include "esphome/core/defines.h"
|
3
|
+
#include "esphome/core/log.h"
|
3
4
|
|
4
|
-
#include "ota_backend_arduino_esp32.h"
|
5
5
|
#include "ota_backend.h"
|
6
|
+
#include "ota_backend_arduino_esp32.h"
|
6
7
|
|
7
8
|
#include <Update.h>
|
8
9
|
|
9
10
|
namespace esphome {
|
10
11
|
namespace ota {
|
11
12
|
|
13
|
+
static const char *const TAG = "ota.arduino_esp32";
|
14
|
+
|
12
15
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoESP32OTABackend>(); }
|
13
16
|
|
14
17
|
OTAResponseTypes ArduinoESP32OTABackend::begin(size_t image_size) {
|
@@ -20,6 +23,9 @@ OTAResponseTypes ArduinoESP32OTABackend::begin(size_t image_size) {
|
|
20
23
|
uint8_t error = Update.getError();
|
21
24
|
if (error == UPDATE_ERROR_SIZE)
|
22
25
|
return OTA_RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE;
|
26
|
+
|
27
|
+
ESP_LOGE(TAG, "Begin error: %d", error);
|
28
|
+
|
23
29
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
24
30
|
}
|
25
31
|
|
@@ -27,16 +33,25 @@ void ArduinoESP32OTABackend::set_update_md5(const char *md5) { Update.setMD5(md5
|
|
27
33
|
|
28
34
|
OTAResponseTypes ArduinoESP32OTABackend::write(uint8_t *data, size_t len) {
|
29
35
|
size_t written = Update.write(data, len);
|
30
|
-
if (written
|
31
|
-
return
|
36
|
+
if (written == len) {
|
37
|
+
return OTA_RESPONSE_OK;
|
32
38
|
}
|
33
|
-
|
39
|
+
|
40
|
+
uint8_t error = Update.getError();
|
41
|
+
ESP_LOGE(TAG, "Write error: %d", error);
|
42
|
+
|
43
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
34
44
|
}
|
35
45
|
|
36
46
|
OTAResponseTypes ArduinoESP32OTABackend::end() {
|
37
|
-
if (
|
38
|
-
return
|
39
|
-
|
47
|
+
if (Update.end()) {
|
48
|
+
return OTA_RESPONSE_OK;
|
49
|
+
}
|
50
|
+
|
51
|
+
uint8_t error = Update.getError();
|
52
|
+
ESP_LOGE(TAG, "End error: %d", error);
|
53
|
+
|
54
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
40
55
|
}
|
41
56
|
|
42
57
|
void ArduinoESP32OTABackend::abort() { Update.abort(); }
|
@@ -1,16 +1,19 @@
|
|
1
1
|
#ifdef USE_ARDUINO
|
2
2
|
#ifdef USE_ESP8266
|
3
|
-
#include "ota_backend.h"
|
4
3
|
#include "ota_backend_arduino_esp8266.h"
|
4
|
+
#include "ota_backend.h"
|
5
5
|
|
6
|
-
#include "esphome/core/defines.h"
|
7
6
|
#include "esphome/components/esp8266/preferences.h"
|
7
|
+
#include "esphome/core/defines.h"
|
8
|
+
#include "esphome/core/log.h"
|
8
9
|
|
9
10
|
#include <Updater.h>
|
10
11
|
|
11
12
|
namespace esphome {
|
12
13
|
namespace ota {
|
13
14
|
|
15
|
+
static const char *const TAG = "ota.arduino_esp8266";
|
16
|
+
|
14
17
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoESP8266OTABackend>(); }
|
15
18
|
|
16
19
|
OTAResponseTypes ArduinoESP8266OTABackend::begin(size_t image_size) {
|
@@ -29,6 +32,9 @@ OTAResponseTypes ArduinoESP8266OTABackend::begin(size_t image_size) {
|
|
29
32
|
return OTA_RESPONSE_ERROR_WRONG_CURRENT_FLASH_CONFIG;
|
30
33
|
if (error == UPDATE_ERROR_SPACE)
|
31
34
|
return OTA_RESPONSE_ERROR_ESP8266_NOT_ENOUGH_SPACE;
|
35
|
+
|
36
|
+
ESP_LOGE(TAG, "Begin error: %d", error);
|
37
|
+
|
32
38
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
33
39
|
}
|
34
40
|
|
@@ -36,16 +42,25 @@ void ArduinoESP8266OTABackend::set_update_md5(const char *md5) { Update.setMD5(m
|
|
36
42
|
|
37
43
|
OTAResponseTypes ArduinoESP8266OTABackend::write(uint8_t *data, size_t len) {
|
38
44
|
size_t written = Update.write(data, len);
|
39
|
-
if (written
|
40
|
-
return
|
45
|
+
if (written == len) {
|
46
|
+
return OTA_RESPONSE_OK;
|
41
47
|
}
|
42
|
-
|
48
|
+
|
49
|
+
uint8_t error = Update.getError();
|
50
|
+
ESP_LOGE(TAG, "Write error: %d", error);
|
51
|
+
|
52
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
43
53
|
}
|
44
54
|
|
45
55
|
OTAResponseTypes ArduinoESP8266OTABackend::end() {
|
46
|
-
if (
|
47
|
-
return
|
48
|
-
|
56
|
+
if (Update.end()) {
|
57
|
+
return OTA_RESPONSE_OK;
|
58
|
+
}
|
59
|
+
|
60
|
+
uint8_t error = Update.getError();
|
61
|
+
ESP_LOGE(TAG, "End error: %d", error);
|
62
|
+
|
63
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
49
64
|
}
|
50
65
|
|
51
66
|
void ArduinoESP8266OTABackend::abort() {
|
@@ -1,14 +1,17 @@
|
|
1
1
|
#ifdef USE_LIBRETINY
|
2
|
-
#include "ota_backend.h"
|
3
2
|
#include "ota_backend_arduino_libretiny.h"
|
3
|
+
#include "ota_backend.h"
|
4
4
|
|
5
5
|
#include "esphome/core/defines.h"
|
6
|
+
#include "esphome/core/log.h"
|
6
7
|
|
7
8
|
#include <Update.h>
|
8
9
|
|
9
10
|
namespace esphome {
|
10
11
|
namespace ota {
|
11
12
|
|
13
|
+
static const char *const TAG = "ota.arduino_libretiny";
|
14
|
+
|
12
15
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoLibreTinyOTABackend>(); }
|
13
16
|
|
14
17
|
OTAResponseTypes ArduinoLibreTinyOTABackend::begin(size_t image_size) {
|
@@ -20,6 +23,9 @@ OTAResponseTypes ArduinoLibreTinyOTABackend::begin(size_t image_size) {
|
|
20
23
|
uint8_t error = Update.getError();
|
21
24
|
if (error == UPDATE_ERROR_SIZE)
|
22
25
|
return OTA_RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE;
|
26
|
+
|
27
|
+
ESP_LOGE(TAG, "Begin error: %d", error);
|
28
|
+
|
23
29
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
24
30
|
}
|
25
31
|
|
@@ -27,16 +33,25 @@ void ArduinoLibreTinyOTABackend::set_update_md5(const char *md5) { Update.setMD5
|
|
27
33
|
|
28
34
|
OTAResponseTypes ArduinoLibreTinyOTABackend::write(uint8_t *data, size_t len) {
|
29
35
|
size_t written = Update.write(data, len);
|
30
|
-
if (written
|
31
|
-
return
|
36
|
+
if (written == len) {
|
37
|
+
return OTA_RESPONSE_OK;
|
32
38
|
}
|
33
|
-
|
39
|
+
|
40
|
+
uint8_t error = Update.getError();
|
41
|
+
ESP_LOGE(TAG, "Write error: %d", error);
|
42
|
+
|
43
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
34
44
|
}
|
35
45
|
|
36
46
|
OTAResponseTypes ArduinoLibreTinyOTABackend::end() {
|
37
|
-
if (
|
38
|
-
return
|
39
|
-
|
47
|
+
if (Update.end()) {
|
48
|
+
return OTA_RESPONSE_OK;
|
49
|
+
}
|
50
|
+
|
51
|
+
uint8_t error = Update.getError();
|
52
|
+
ESP_LOGE(TAG, "End error: %d", error);
|
53
|
+
|
54
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
40
55
|
}
|
41
56
|
|
42
57
|
void ArduinoLibreTinyOTABackend::abort() { Update.abort(); }
|
@@ -1,16 +1,19 @@
|
|
1
1
|
#ifdef USE_ARDUINO
|
2
2
|
#ifdef USE_RP2040
|
3
|
-
#include "ota_backend.h"
|
4
3
|
#include "ota_backend_arduino_rp2040.h"
|
4
|
+
#include "ota_backend.h"
|
5
5
|
|
6
6
|
#include "esphome/components/rp2040/preferences.h"
|
7
7
|
#include "esphome/core/defines.h"
|
8
|
+
#include "esphome/core/log.h"
|
8
9
|
|
9
10
|
#include <Updater.h>
|
10
11
|
|
11
12
|
namespace esphome {
|
12
13
|
namespace ota {
|
13
14
|
|
15
|
+
static const char *const TAG = "ota.arduino_rp2040";
|
16
|
+
|
14
17
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoRP2040OTABackend>(); }
|
15
18
|
|
16
19
|
OTAResponseTypes ArduinoRP2040OTABackend::begin(size_t image_size) {
|
@@ -29,6 +32,9 @@ OTAResponseTypes ArduinoRP2040OTABackend::begin(size_t image_size) {
|
|
29
32
|
return OTA_RESPONSE_ERROR_WRONG_CURRENT_FLASH_CONFIG;
|
30
33
|
if (error == UPDATE_ERROR_SPACE)
|
31
34
|
return OTA_RESPONSE_ERROR_RP2040_NOT_ENOUGH_SPACE;
|
35
|
+
|
36
|
+
ESP_LOGE(TAG, "Begin error: %d", error);
|
37
|
+
|
32
38
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
33
39
|
}
|
34
40
|
|
@@ -36,16 +42,25 @@ void ArduinoRP2040OTABackend::set_update_md5(const char *md5) { Update.setMD5(md
|
|
36
42
|
|
37
43
|
OTAResponseTypes ArduinoRP2040OTABackend::write(uint8_t *data, size_t len) {
|
38
44
|
size_t written = Update.write(data, len);
|
39
|
-
if (written
|
40
|
-
return
|
45
|
+
if (written == len) {
|
46
|
+
return OTA_RESPONSE_OK;
|
41
47
|
}
|
42
|
-
|
48
|
+
|
49
|
+
uint8_t error = Update.getError();
|
50
|
+
ESP_LOGE(TAG, "Write error: %d", error);
|
51
|
+
|
52
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
43
53
|
}
|
44
54
|
|
45
55
|
OTAResponseTypes ArduinoRP2040OTABackend::end() {
|
46
|
-
if (
|
47
|
-
return
|
48
|
-
|
56
|
+
if (Update.end()) {
|
57
|
+
return OTA_RESPONSE_OK;
|
58
|
+
}
|
59
|
+
|
60
|
+
uint8_t error = Update.getError();
|
61
|
+
ESP_LOGE(TAG, "End error: %d", error);
|
62
|
+
|
63
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
49
64
|
}
|
50
65
|
|
51
66
|
void ArduinoRP2040OTABackend::abort() {
|
@@ -27,7 +27,7 @@ bool SmlFile::setup_node(SmlNode *node) {
|
|
27
27
|
uint8_t parse_length = length;
|
28
28
|
if (has_extended_length) {
|
29
29
|
length = (length << 4) + (this->buffer_[this->pos_ + 1] & 0x0f);
|
30
|
-
parse_length = length
|
30
|
+
parse_length = length;
|
31
31
|
this->pos_ += 1;
|
32
32
|
}
|
33
33
|
|
@@ -37,7 +37,9 @@ bool SmlFile::setup_node(SmlNode *node) {
|
|
37
37
|
node->type = type & 0x07;
|
38
38
|
node->nodes.clear();
|
39
39
|
node->value_bytes.clear();
|
40
|
-
|
40
|
+
|
41
|
+
// if the list is a has_extended_length list with e.g. 16 elements this is a 0x00 byte but not the end of message
|
42
|
+
if (!has_extended_length && this->buffer_[this->pos_] == 0x00) { // end of message
|
41
43
|
this->pos_ += 1;
|
42
44
|
} else if (is_list) { // list
|
43
45
|
this->pos_ += 1;
|
esphome/const.py
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
esphome/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
-
esphome/__main__.py,sha256=
|
2
|
+
esphome/__main__.py,sha256=DFZm9R3tlYSY-LpdxEtdlN7iAH7KCym8iy3TbfHgdjQ,33443
|
3
3
|
esphome/automation.py,sha256=wnD7iJvGPSz7q8AJo2o5KglnN_uuhKcWOpYp95Vg9Oc,14507
|
4
4
|
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=k4OE5Ih6zGTEbXW-8Yjs0TIgZ9NkZcfzahJA0NsH448,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
|
@@ -993,7 +993,7 @@ 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=
|
996
|
+
esphome/components/heatpumpir/climate.py,sha256=zR9RKa-zV1z9cRiSLxLMriZYT9FND6s_xlUAdo2fxAg,5558
|
997
997
|
esphome/components/heatpumpir/heatpumpir.cpp,sha256=EWcDXuqMULSgdCMRg88ONAwv5ef2KcBhBhz6tHLMxxs,9850
|
998
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
|
@@ -1070,7 +1070,7 @@ esphome/components/http_request/http_request.cpp,sha256=UFpMPffAuE2enh8iBvZzV3ED
|
|
1070
1070
|
esphome/components/http_request/http_request.h,sha256=-QVBxaH5iOFuzuvdmBDrjL81YM63mv3zILS4m8E4Oa4,6758
|
1071
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
|
-
esphome/components/http_request/http_request_idf.cpp,sha256=
|
1073
|
+
esphome/components/http_request/http_request_idf.cpp,sha256=k9lTzJh2X7DoP2OOyTvtQTyIwJT780sXVck-0u9rvLE,4425
|
1074
1074
|
esphome/components/http_request/http_request_idf.h,sha256=RmtzXsXsi8M66Lnf6eHbdEK5PIwALlvHyNXVz4skeGQ,774
|
1075
1075
|
esphome/components/http_request/watchdog.cpp,sha256=vrRWycQv1a4iOxYaR2Ld4UJdnYgp-s2E1V6kLjqoK_w,1687
|
1076
1076
|
esphome/components/http_request/watchdog.h,sha256=45UrEdgj6KmB7lLPIK4-_BdpwZy-aDki3tMWrQn-hF8,454
|
@@ -1117,7 +1117,7 @@ esphome/components/i2s_audio/media_player/__init__.py,sha256=jlk-y5UGX8fc4dsXda2
|
|
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
1119
|
esphome/components/i2s_audio/microphone/__init__.py,sha256=uPZ7e0pGxbNklDqIoqLcTmvhnSTcQ16q3pSDFIgEy70,3982
|
1120
|
-
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=
|
1120
|
+
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=Tt16Tu_KsGPBOJPjug0WX4A-QZhAFLl7s-Kgno81Vn0,6187
|
1121
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
|
@@ -1775,13 +1775,13 @@ esphome/components/ota/__init__.py,sha256=EiXnjLtJX3CXeDGRsqLnp5I4xQiy3Yhcy24mqv
|
|
1775
1775
|
esphome/components/ota/automation.h,sha256=UaasWG6gZG59MtC5DHHfMhRb7BXYmLlkOyYujZReEV0,2044
|
1776
1776
|
esphome/components/ota/ota_backend.cpp,sha256=IfpR0mvzSs9ugJa2LRi4AtYHT4Ht6PoS9BY5Ydjs_eE,587
|
1777
1777
|
esphome/components/ota/ota_backend.h,sha256=ILfnmlVzp0qhHFv13jZ6GQ7MLgKf5ICtL6xI4ojg4K8,2806
|
1778
|
-
esphome/components/ota/ota_backend_arduino_esp32.cpp,sha256=
|
1778
|
+
esphome/components/ota/ota_backend_arduino_esp32.cpp,sha256=gEExNdFUN-iiOX3rVUXBiRZcE8cfEk0G3chGhTaPYr0,1514
|
1779
1779
|
esphome/components/ota/ota_backend_arduino_esp32.h,sha256=h0oH0gREs7M6hW_BlGHHFFml14IJYx7IpKpsVaHJ554,610
|
1780
|
-
esphome/components/ota/ota_backend_arduino_esp8266.cpp,sha256=
|
1780
|
+
esphome/components/ota/ota_backend_arduino_esp8266.cpp,sha256=lJgvlbP3v6piuoE_klojKI7si_2g0pL3QN3CIU09lmY,1947
|
1781
1781
|
esphome/components/ota/ota_backend_arduino_esp8266.h,sha256=PABg5GIPA75xe9KpcP2Jc_N_U0ygOu-KPGgVE-sNotU,712
|
1782
|
-
esphome/components/ota/ota_backend_arduino_libretiny.cpp,sha256=
|
1782
|
+
esphome/components/ota/ota_backend_arduino_libretiny.cpp,sha256=4DEgWdOZQAeTNZiv0tKDyILZxpfj7i0hS37IvAKyXRw,1518
|
1783
1783
|
esphome/components/ota/ota_backend_arduino_libretiny.h,sha256=7RnBge-XizF0KQtft_Naeh1-Gj0yO2Y_hJW6mCXO-gQ,552
|
1784
|
-
esphome/components/ota/ota_backend_arduino_rp2040.cpp,sha256=
|
1784
|
+
esphome/components/ota/ota_backend_arduino_rp2040.cpp,sha256=H2TUIWJMHCeArtr-0IcZPgyDI9DNOZfzP8F47lPeTZU,1965
|
1785
1785
|
esphome/components/ota/ota_backend_arduino_rp2040.h,sha256=6E54dND3ToVbYVsWRsLPpZ8o3DytNhtZg1IVXTPyKx4,618
|
1786
1786
|
esphome/components/ota/ota_backend_esp_idf.cpp,sha256=_TBWW23aHSFo5P8pHSqexR0LgnOB4z5b-3Lw0vliWvc,3328
|
1787
1787
|
esphome/components/ota/ota_backend_esp_idf.h,sha256=aiHISZQjSxaRWuq_4ZGAEuP8kCG0BccYAbJ9kx6WvhQ,725
|
@@ -2344,7 +2344,7 @@ esphome/components/sml/automation.h,sha256=lY2a8F41GCJB03oPWj4fBJ_3VlXgSc7HKwkVz
|
|
2344
2344
|
esphome/components/sml/constants.h,sha256=bBhl2KSbp7c44Ah4qcVxGwVGMq5na8JgSLwu-Zk-uUE,639
|
2345
2345
|
esphome/components/sml/sml.cpp,sha256=Th5Q5VbkGt8RsNOCWFDRFFmTbTZj0NH6JRH1A2tSlNE,4209
|
2346
2346
|
esphome/components/sml/sml.h,sha256=UWA0WZEwiMk2NWgCm9nUCQyJa6DUSxJwhV_W9EE3l1E,1326
|
2347
|
-
esphome/components/sml/sml_parser.cpp,sha256=
|
2347
|
+
esphome/components/sml/sml_parser.cpp,sha256=mvZkfBALgSO9KKOPIKa2ffWZfrhgAe_ssuQSr6vmqD4,4121
|
2348
2348
|
esphome/components/sml/sml_parser.h,sha256=9HlTT3dcbn8jnnvwIARwzBC7wasi2UUZrCj6tTXN--E,955
|
2349
2349
|
esphome/components/sml/sensor/__init__.py,sha256=Moj__7kqYwuKSh27dxoWpJpDswVSuwx8PAPTIdt5adM,910
|
2350
2350
|
esphome/components/sml/sensor/sml_sensor.cpp,sha256=onWh6gi584Qy8TaYgnRi5K4nMUkS39P8_liCTTKW5JM,1106
|
@@ -3119,9 +3119,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3119
3119
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3120
3120
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3121
3121
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3122
|
-
esphome-2024.7.
|
3123
|
-
esphome-2024.7.
|
3124
|
-
esphome-2024.7.
|
3125
|
-
esphome-2024.7.
|
3126
|
-
esphome-2024.7.
|
3127
|
-
esphome-2024.7.
|
3122
|
+
esphome-2024.7.1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3123
|
+
esphome-2024.7.1.dist-info/METADATA,sha256=8Br6BjjqmWwQKeEF-qx0gIJ1xDbQPyV7B9kNNaALKu0,3263
|
3124
|
+
esphome-2024.7.1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
3125
|
+
esphome-2024.7.1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3126
|
+
esphome-2024.7.1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3127
|
+
esphome-2024.7.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|