esphome 2024.7.0__py3-none-any.whl → 2024.7.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- esphome/components/aht10/aht10.cpp +2 -4
- esphome/components/climate/climate.cpp +6 -10
- esphome/components/climate/climate_traits.h +3 -3
- esphome/components/esp32_can/canbus.py +0 -3
- esphome/components/ethernet/ethernet_component.cpp +1 -5
- esphome/components/gree/climate.py +0 -1
- esphome/components/gree/gree.cpp +3 -11
- esphome/components/gree/gree.h +1 -5
- esphome/components/heatpumpir/climate.py +5 -6
- esphome/components/heatpumpir/heatpumpir.cpp +0 -5
- esphome/components/heatpumpir/heatpumpir.h +0 -5
- esphome/components/http_request/http_request_arduino.cpp +2 -7
- esphome/components/i2s_audio/__init__.py +0 -10
- esphome/components/i2s_audio/microphone/__init__.py +0 -7
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp +3 -2
- esphome/components/i2s_audio/microphone/i2s_audio_microphone.h +0 -3
- esphome/components/improv_serial/improv_serial_component.cpp +2 -3
- esphome/components/ltr390/ltr390.cpp +29 -44
- esphome/components/ltr390/ltr390.h +5 -9
- esphome/components/ltr390/sensor.py +5 -35
- esphome/components/micro_wake_word/__init__.py +1 -3
- esphome/components/mitsubishi/mitsubishi.cpp +0 -1
- esphome/components/ota/ota_backend_arduino_esp32.cpp +7 -22
- esphome/components/ota/ota_backend_arduino_esp8266.cpp +8 -23
- esphome/components/ota/ota_backend_arduino_libretiny.cpp +7 -22
- esphome/components/ota/ota_backend_arduino_rp2040.cpp +7 -22
- esphome/components/pmsa003i/pmsa003i.cpp +0 -9
- esphome/components/restart/button/__init__.py +0 -2
- esphome/components/voice_assistant/voice_assistant.cpp +1 -3
- esphome/components/web_server/server_index_v2.h +41 -42
- esphome/components/web_server/server_index_v3.h +367 -368
- esphome/const.py +1 -1
- esphome/core/helpers.cpp +1 -1
- {esphome-2024.7.0.dist-info → esphome-2024.7.0b1.dist-info}/METADATA +1 -1
- {esphome-2024.7.0.dist-info → esphome-2024.7.0b1.dist-info}/RECORD +39 -39
- {esphome-2024.7.0.dist-info → esphome-2024.7.0b1.dist-info}/LICENSE +0 -0
- {esphome-2024.7.0.dist-info → esphome-2024.7.0b1.dist-info}/WHEEL +0 -0
- {esphome-2024.7.0.dist-info → esphome-2024.7.0b1.dist-info}/entry_points.txt +0 -0
- {esphome-2024.7.0.dist-info → esphome-2024.7.0b1.dist-info}/top_level.txt +0 -0
@@ -1,17 +1,14 @@
|
|
1
1
|
#ifdef USE_ESP32_FRAMEWORK_ARDUINO
|
2
2
|
#include "esphome/core/defines.h"
|
3
|
-
#include "esphome/core/log.h"
|
4
3
|
|
5
|
-
#include "ota_backend.h"
|
6
4
|
#include "ota_backend_arduino_esp32.h"
|
5
|
+
#include "ota_backend.h"
|
7
6
|
|
8
7
|
#include <Update.h>
|
9
8
|
|
10
9
|
namespace esphome {
|
11
10
|
namespace ota {
|
12
11
|
|
13
|
-
static const char *const TAG = "ota.arduino_esp32";
|
14
|
-
|
15
12
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoESP32OTABackend>(); }
|
16
13
|
|
17
14
|
OTAResponseTypes ArduinoESP32OTABackend::begin(size_t image_size) {
|
@@ -23,9 +20,6 @@ OTAResponseTypes ArduinoESP32OTABackend::begin(size_t image_size) {
|
|
23
20
|
uint8_t error = Update.getError();
|
24
21
|
if (error == UPDATE_ERROR_SIZE)
|
25
22
|
return OTA_RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE;
|
26
|
-
|
27
|
-
ESP_LOGE(TAG, "Begin error: %d", error);
|
28
|
-
|
29
23
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
30
24
|
}
|
31
25
|
|
@@ -33,25 +27,16 @@ void ArduinoESP32OTABackend::set_update_md5(const char *md5) { Update.setMD5(md5
|
|
33
27
|
|
34
28
|
OTAResponseTypes ArduinoESP32OTABackend::write(uint8_t *data, size_t len) {
|
35
29
|
size_t written = Update.write(data, len);
|
36
|
-
if (written
|
37
|
-
return
|
30
|
+
if (written != len) {
|
31
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
38
32
|
}
|
39
|
-
|
40
|
-
uint8_t error = Update.getError();
|
41
|
-
ESP_LOGE(TAG, "Write error: %d", error);
|
42
|
-
|
43
|
-
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
33
|
+
return OTA_RESPONSE_OK;
|
44
34
|
}
|
45
35
|
|
46
36
|
OTAResponseTypes ArduinoESP32OTABackend::end() {
|
47
|
-
if (Update.end())
|
48
|
-
return
|
49
|
-
|
50
|
-
|
51
|
-
uint8_t error = Update.getError();
|
52
|
-
ESP_LOGE(TAG, "End error: %d", error);
|
53
|
-
|
54
|
-
return OTA_RESPONSE_ERROR_UPDATE_END;
|
37
|
+
if (!Update.end())
|
38
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
39
|
+
return OTA_RESPONSE_OK;
|
55
40
|
}
|
56
41
|
|
57
42
|
void ArduinoESP32OTABackend::abort() { Update.abort(); }
|
@@ -1,19 +1,16 @@
|
|
1
1
|
#ifdef USE_ARDUINO
|
2
2
|
#ifdef USE_ESP8266
|
3
|
-
#include "ota_backend_arduino_esp8266.h"
|
4
3
|
#include "ota_backend.h"
|
4
|
+
#include "ota_backend_arduino_esp8266.h"
|
5
5
|
|
6
|
-
#include "esphome/components/esp8266/preferences.h"
|
7
6
|
#include "esphome/core/defines.h"
|
8
|
-
#include "esphome/
|
7
|
+
#include "esphome/components/esp8266/preferences.h"
|
9
8
|
|
10
9
|
#include <Updater.h>
|
11
10
|
|
12
11
|
namespace esphome {
|
13
12
|
namespace ota {
|
14
13
|
|
15
|
-
static const char *const TAG = "ota.arduino_esp8266";
|
16
|
-
|
17
14
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoESP8266OTABackend>(); }
|
18
15
|
|
19
16
|
OTAResponseTypes ArduinoESP8266OTABackend::begin(size_t image_size) {
|
@@ -32,9 +29,6 @@ OTAResponseTypes ArduinoESP8266OTABackend::begin(size_t image_size) {
|
|
32
29
|
return OTA_RESPONSE_ERROR_WRONG_CURRENT_FLASH_CONFIG;
|
33
30
|
if (error == UPDATE_ERROR_SPACE)
|
34
31
|
return OTA_RESPONSE_ERROR_ESP8266_NOT_ENOUGH_SPACE;
|
35
|
-
|
36
|
-
ESP_LOGE(TAG, "Begin error: %d", error);
|
37
|
-
|
38
32
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
39
33
|
}
|
40
34
|
|
@@ -42,25 +36,16 @@ void ArduinoESP8266OTABackend::set_update_md5(const char *md5) { Update.setMD5(m
|
|
42
36
|
|
43
37
|
OTAResponseTypes ArduinoESP8266OTABackend::write(uint8_t *data, size_t len) {
|
44
38
|
size_t written = Update.write(data, len);
|
45
|
-
if (written
|
46
|
-
return
|
39
|
+
if (written != len) {
|
40
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
47
41
|
}
|
48
|
-
|
49
|
-
uint8_t error = Update.getError();
|
50
|
-
ESP_LOGE(TAG, "Write error: %d", error);
|
51
|
-
|
52
|
-
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
42
|
+
return OTA_RESPONSE_OK;
|
53
43
|
}
|
54
44
|
|
55
45
|
OTAResponseTypes ArduinoESP8266OTABackend::end() {
|
56
|
-
if (Update.end())
|
57
|
-
return
|
58
|
-
|
59
|
-
|
60
|
-
uint8_t error = Update.getError();
|
61
|
-
ESP_LOGE(TAG, "End error: %d", error);
|
62
|
-
|
63
|
-
return OTA_RESPONSE_ERROR_UPDATE_END;
|
46
|
+
if (!Update.end())
|
47
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
48
|
+
return OTA_RESPONSE_OK;
|
64
49
|
}
|
65
50
|
|
66
51
|
void ArduinoESP8266OTABackend::abort() {
|
@@ -1,17 +1,14 @@
|
|
1
1
|
#ifdef USE_LIBRETINY
|
2
|
-
#include "ota_backend_arduino_libretiny.h"
|
3
2
|
#include "ota_backend.h"
|
3
|
+
#include "ota_backend_arduino_libretiny.h"
|
4
4
|
|
5
5
|
#include "esphome/core/defines.h"
|
6
|
-
#include "esphome/core/log.h"
|
7
6
|
|
8
7
|
#include <Update.h>
|
9
8
|
|
10
9
|
namespace esphome {
|
11
10
|
namespace ota {
|
12
11
|
|
13
|
-
static const char *const TAG = "ota.arduino_libretiny";
|
14
|
-
|
15
12
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoLibreTinyOTABackend>(); }
|
16
13
|
|
17
14
|
OTAResponseTypes ArduinoLibreTinyOTABackend::begin(size_t image_size) {
|
@@ -23,9 +20,6 @@ OTAResponseTypes ArduinoLibreTinyOTABackend::begin(size_t image_size) {
|
|
23
20
|
uint8_t error = Update.getError();
|
24
21
|
if (error == UPDATE_ERROR_SIZE)
|
25
22
|
return OTA_RESPONSE_ERROR_ESP32_NOT_ENOUGH_SPACE;
|
26
|
-
|
27
|
-
ESP_LOGE(TAG, "Begin error: %d", error);
|
28
|
-
|
29
23
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
30
24
|
}
|
31
25
|
|
@@ -33,25 +27,16 @@ void ArduinoLibreTinyOTABackend::set_update_md5(const char *md5) { Update.setMD5
|
|
33
27
|
|
34
28
|
OTAResponseTypes ArduinoLibreTinyOTABackend::write(uint8_t *data, size_t len) {
|
35
29
|
size_t written = Update.write(data, len);
|
36
|
-
if (written
|
37
|
-
return
|
30
|
+
if (written != len) {
|
31
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
38
32
|
}
|
39
|
-
|
40
|
-
uint8_t error = Update.getError();
|
41
|
-
ESP_LOGE(TAG, "Write error: %d", error);
|
42
|
-
|
43
|
-
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
33
|
+
return OTA_RESPONSE_OK;
|
44
34
|
}
|
45
35
|
|
46
36
|
OTAResponseTypes ArduinoLibreTinyOTABackend::end() {
|
47
|
-
if (Update.end())
|
48
|
-
return
|
49
|
-
|
50
|
-
|
51
|
-
uint8_t error = Update.getError();
|
52
|
-
ESP_LOGE(TAG, "End error: %d", error);
|
53
|
-
|
54
|
-
return OTA_RESPONSE_ERROR_UPDATE_END;
|
37
|
+
if (!Update.end())
|
38
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
39
|
+
return OTA_RESPONSE_OK;
|
55
40
|
}
|
56
41
|
|
57
42
|
void ArduinoLibreTinyOTABackend::abort() { Update.abort(); }
|
@@ -1,19 +1,16 @@
|
|
1
1
|
#ifdef USE_ARDUINO
|
2
2
|
#ifdef USE_RP2040
|
3
|
-
#include "ota_backend_arduino_rp2040.h"
|
4
3
|
#include "ota_backend.h"
|
4
|
+
#include "ota_backend_arduino_rp2040.h"
|
5
5
|
|
6
6
|
#include "esphome/components/rp2040/preferences.h"
|
7
7
|
#include "esphome/core/defines.h"
|
8
|
-
#include "esphome/core/log.h"
|
9
8
|
|
10
9
|
#include <Updater.h>
|
11
10
|
|
12
11
|
namespace esphome {
|
13
12
|
namespace ota {
|
14
13
|
|
15
|
-
static const char *const TAG = "ota.arduino_rp2040";
|
16
|
-
|
17
14
|
std::unique_ptr<ota::OTABackend> make_ota_backend() { return make_unique<ota::ArduinoRP2040OTABackend>(); }
|
18
15
|
|
19
16
|
OTAResponseTypes ArduinoRP2040OTABackend::begin(size_t image_size) {
|
@@ -32,9 +29,6 @@ OTAResponseTypes ArduinoRP2040OTABackend::begin(size_t image_size) {
|
|
32
29
|
return OTA_RESPONSE_ERROR_WRONG_CURRENT_FLASH_CONFIG;
|
33
30
|
if (error == UPDATE_ERROR_SPACE)
|
34
31
|
return OTA_RESPONSE_ERROR_RP2040_NOT_ENOUGH_SPACE;
|
35
|
-
|
36
|
-
ESP_LOGE(TAG, "Begin error: %d", error);
|
37
|
-
|
38
32
|
return OTA_RESPONSE_ERROR_UNKNOWN;
|
39
33
|
}
|
40
34
|
|
@@ -42,25 +36,16 @@ void ArduinoRP2040OTABackend::set_update_md5(const char *md5) { Update.setMD5(md
|
|
42
36
|
|
43
37
|
OTAResponseTypes ArduinoRP2040OTABackend::write(uint8_t *data, size_t len) {
|
44
38
|
size_t written = Update.write(data, len);
|
45
|
-
if (written
|
46
|
-
return
|
39
|
+
if (written != len) {
|
40
|
+
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
47
41
|
}
|
48
|
-
|
49
|
-
uint8_t error = Update.getError();
|
50
|
-
ESP_LOGE(TAG, "Write error: %d", error);
|
51
|
-
|
52
|
-
return OTA_RESPONSE_ERROR_WRITING_FLASH;
|
42
|
+
return OTA_RESPONSE_OK;
|
53
43
|
}
|
54
44
|
|
55
45
|
OTAResponseTypes ArduinoRP2040OTABackend::end() {
|
56
|
-
if (Update.end())
|
57
|
-
return
|
58
|
-
|
59
|
-
|
60
|
-
uint8_t error = Update.getError();
|
61
|
-
ESP_LOGE(TAG, "End error: %d", error);
|
62
|
-
|
63
|
-
return OTA_RESPONSE_ERROR_UPDATE_END;
|
46
|
+
if (!Update.end())
|
47
|
+
return OTA_RESPONSE_ERROR_UPDATE_END;
|
48
|
+
return OTA_RESPONSE_OK;
|
64
49
|
}
|
65
50
|
|
66
51
|
void ArduinoRP2040OTABackend::abort() {
|
@@ -13,15 +13,6 @@ void PMSA003IComponent::setup() {
|
|
13
13
|
PM25AQIData data;
|
14
14
|
bool successful_read = this->read_data_(&data);
|
15
15
|
|
16
|
-
if (!successful_read) {
|
17
|
-
for (int i = 0; i < 3; i++) {
|
18
|
-
successful_read = this->read_data_(&data);
|
19
|
-
if (successful_read) {
|
20
|
-
break;
|
21
|
-
}
|
22
|
-
}
|
23
|
-
}
|
24
|
-
|
25
16
|
if (!successful_read) {
|
26
17
|
this->mark_failed();
|
27
18
|
return;
|
@@ -5,7 +5,6 @@ from esphome.const import (
|
|
5
5
|
CONF_ID,
|
6
6
|
DEVICE_CLASS_RESTART,
|
7
7
|
ENTITY_CATEGORY_CONFIG,
|
8
|
-
ICON_RESTART,
|
9
8
|
)
|
10
9
|
|
11
10
|
restart_ns = cg.esphome_ns.namespace("restart")
|
@@ -13,7 +12,6 @@ RestartButton = restart_ns.class_("RestartButton", button.Button, cg.Component)
|
|
13
12
|
|
14
13
|
CONFIG_SCHEMA = button.button_schema(
|
15
14
|
RestartButton,
|
16
|
-
icon=ICON_RESTART,
|
17
15
|
device_class=DEVICE_CLASS_RESTART,
|
18
16
|
entity_category=ENTITY_CATEGORY_CONFIG,
|
19
17
|
).extend(cv.COMPONENT_SCHEMA)
|
@@ -684,9 +684,7 @@ void VoiceAssistant::on_event(const api::VoiceAssistantEventResponse &msg) {
|
|
684
684
|
this->defer([this, text]() {
|
685
685
|
this->tts_start_trigger_->trigger(text);
|
686
686
|
#ifdef USE_SPEAKER
|
687
|
-
|
688
|
-
this->speaker_->start();
|
689
|
-
}
|
687
|
+
this->speaker_->start();
|
690
688
|
#endif
|
691
689
|
});
|
692
690
|
break;
|
@@ -68,7 +68,7 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
68
68
|
0xe3, 0x9b, 0x82, 0xde, 0xc5, 0x0e, 0x21, 0xa9, 0x64, 0x54, 0x44, 0x2c, 0x97, 0x29, 0x21, 0x29, 0xc2, 0x3f, 0x90,
|
69
69
|
0x45, 0x68, 0xd6, 0x13, 0xec, 0x34, 0x30, 0x9c, 0xcb, 0x40, 0x71, 0x17, 0x3c, 0xe0, 0xc9, 0x9c, 0xa6, 0x82, 0xa6,
|
70
70
|
0xc1, 0x5f, 0x71, 0x4a, 0x87, 0x31, 0x40, 0xb1, 0xd3, 0xc4, 0xe3, 0x30, 0x3b, 0x1f, 0x87, 0xc9, 0x88, 0x46, 0xc1,
|
71
|
-
0x8d, 0xc8, 0xf1, 0xdf, 0x89, 0x3b, 0x64, 0x49, 0x18, 0xb3, 0x5f, 0x69, 0xe4, 0x6a, 0x69, 0x70,
|
71
|
+
0x8d, 0xc8, 0xf1, 0xdf, 0x89, 0x3b, 0x64, 0x49, 0x18, 0xb3, 0x5f, 0x69, 0xe4, 0x6a, 0x69, 0x70, 0xeb, 0xd0, 0x5b,
|
72
72
|
0x41, 0x93, 0x28, 0x73, 0x9e, 0xbf, 0x7b, 0xf9, 0x42, 0xef, 0x63, 0x45, 0x40, 0xa0, 0x45, 0x36, 0x9b, 0xd2, 0xd4,
|
73
73
|
0x43, 0x58, 0x0b, 0x88, 0x67, 0x4c, 0x32, 0xc7, 0x97, 0xe1, 0x54, 0x95, 0xb0, 0xec, 0xfd, 0x34, 0x0a, 0x05, 0x7d,
|
74
74
|
0x43, 0x93, 0x88, 0x25, 0x23, 0xb2, 0xd3, 0x54, 0xe5, 0xe3, 0x50, 0x57, 0x44, 0x45, 0xd1, 0xe5, 0xee, 0xb3, 0x58,
|
@@ -150,19 +150,19 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
150
150
|
0xa6, 0x57, 0xfd, 0xcf, 0xf9, 0x64, 0x0a, 0xda, 0xd8, 0x0a, 0x49, 0x8f, 0xa8, 0x9e, 0xb0, 0xac, 0xcf, 0x37, 0x94,
|
151
151
|
0x55, 0xfa, 0xc8, 0xf3, 0x58, 0xa1, 0xa6, 0xc2, 0x5e, 0xde, 0x69, 0xe4, 0xb3, 0xa2, 0xa8, 0x60, 0x1c, 0x9b, 0x9c,
|
152
152
|
0x2a, 0xe7, 0xab, 0x2e, 0x19, 0x53, 0xf1, 0xda, 0x63, 0x8a, 0x0f, 0x33, 0xe0, 0x75, 0x16, 0xfb, 0x31, 0xe4, 0x6e,
|
153
|
-
0xef, 0x7f, 0x5e, 0x22, 0x67, 0x91, 0xaf, 0xa0, 0x6f, 0x91, 0xe7,
|
154
|
-
0xb2, 0x4e, 0x1b, 0x8b, 0xbd, 0x3e,
|
155
|
-
0x37, 0x07, 0xaf, 0xaa, 0xde, 0xfb, 0x81, 0xf0, 0x16, 0x6f, 0xab, 0xee, 0xd5, 0xe0,
|
153
|
+
0xef, 0x7f, 0x5e, 0x22, 0x67, 0x91, 0xaf, 0xa0, 0x6f, 0x91, 0xe7, 0xb7, 0xca, 0xc8, 0xc6, 0xb7, 0xdb, 0xad, 0xe1,
|
154
|
+
0xb2, 0x4e, 0x1b, 0x8b, 0xbd, 0x3e, 0xbe, 0x5d, 0x57, 0x1d, 0xc9, 0x62, 0xc2, 0x23, 0x1a, 0xb8, 0x7c, 0x4a, 0x13,
|
155
|
+
0x37, 0x07, 0xaf, 0xaa, 0xde, 0xfb, 0x81, 0xf0, 0x16, 0x6f, 0xab, 0xee, 0xd5, 0xe0, 0x36, 0x07, 0xef, 0xd7, 0xd7,
|
156
156
|
0xeb, 0x8e, 0xd7, 0xef, 0x69, 0x9a, 0x49, 0x45, 0xb4, 0xd0, 0x69, 0xbf, 0x2e, 0xc5, 0xd2, 0xd7, 0xc1, 0xd6, 0xf6,
|
157
157
|
0xa5, 0x09, 0xe2, 0x36, 0xfd, 0x63, 0xff, 0xc0, 0x45, 0xd2, 0x2d, 0xfc, 0x93, 0x3e, 0xf0, 0x1f, 0x8c, 0x5b, 0xf8,
|
158
158
|
0x19, 0xf9, 0x50, 0xf5, 0x0a, 0x47, 0x82, 0x3c, 0xeb, 0x3e, 0x33, 0x16, 0x33, 0x8f, 0xd9, 0xe0, 0xce, 0x73, 0x63,
|
159
159
|
0x26, 0xea, 0x10, 0x7a, 0x73, 0xf1, 0x42, 0x55, 0x80, 0x4b, 0x51, 0xba, 0xb3, 0x73, 0x63, 0xeb, 0x61, 0x21, 0x88,
|
160
160
|
0xbb, 0x1b, 0x33, 0xb1, 0xeb, 0xe2, 0x09, 0xb9, 0x82, 0x1f, 0xbb, 0x0b, 0xef, 0x65, 0x28, 0xc6, 0x7e, 0x1a, 0x26,
|
161
|
-
0x11, 0x9f, 0x78, 0xa8, 0xe6, 0xba, 0xc8, 0xcf, 0xa4, 0xbd, 0xf1, 0x18, 0xe5, 0xbb, 0x57, 0xf8,
|
162
|
-
0xeb, 0xd6, 0x26, 0xf8, 0x95, 0x20, 0x57, 0xa7, 0xbb, 0x8b,
|
163
|
-
0x6f, 0x88, 0x87, 0x48, 0xe7,
|
164
|
-
0xc9, 0x6d, 0x74, 0x68, 0x65, 0x87, 0xb8, 0x5c, 0xba, 0x08, 0xdc, 0xbd, 0x3d, 0xab, 0xac, 0x50, 0x15, 0xf0,
|
165
|
-
0x20, 0x15, 0x83, 0x1c, 0xbf, 0x95, 0x11, 0x9a,
|
161
|
+
0x11, 0x9f, 0x78, 0xa8, 0xe6, 0xba, 0xc8, 0xcf, 0xa4, 0xbd, 0xf1, 0x18, 0xe5, 0xbb, 0x57, 0xf8, 0x4c, 0x10, 0xb7,
|
162
|
+
0xeb, 0xd6, 0x26, 0xf8, 0x95, 0x20, 0x57, 0xa7, 0xbb, 0x8b, 0x33, 0x91, 0x77, 0xae, 0xf0, 0x59, 0xe1, 0xb1, 0xc7,
|
163
|
+
0x6f, 0x88, 0x87, 0x48, 0xe7, 0x4c, 0x43, 0x73, 0xce, 0x27, 0xca, 0x73, 0xef, 0x22, 0xfc, 0x1e, 0xe2, 0x2a, 0x69,
|
164
|
+
0xc9, 0x6d, 0x74, 0x68, 0x65, 0x87, 0xb8, 0x5c, 0xba, 0x08, 0xdc, 0xbd, 0x3d, 0xab, 0xac, 0x50, 0x15, 0xf0, 0xad,
|
165
|
+
0x20, 0x15, 0x83, 0x1c, 0xbf, 0x95, 0x11, 0x9a, 0x5b, 0xe1, 0xa5, 0xc8, 0x0c, 0xe3, 0x19, 0x3f, 0xb4, 0x3e, 0x9a,
|
166
166
|
0x69, 0x4f, 0x79, 0x18, 0x7c, 0x26, 0x68, 0x1a, 0x0a, 0x9e, 0xf6, 0x91, 0xad, 0x7e, 0xe0, 0xbf, 0x91, 0xab, 0x9e,
|
167
167
|
0xf3, 0x9f, 0xbe, 0xf8, 0x79, 0xf8, 0x73, 0xda, 0xbf, 0xc2, 0xaf, 0xc9, 0xfe, 0xa9, 0xd7, 0x0d, 0xbc, 0x9d, 0x7a,
|
168
168
|
0x7d, 0xf9, 0xf3, 0x7e, 0xef, 0x1f, 0x61, 0xfd, 0xd7, 0xb3, 0xfa, 0x4f, 0x7d, 0xb4, 0xf4, 0x7e, 0xde, 0xef, 0xf6,
|
@@ -177,7 +177,7 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
177
177
|
0xf2, 0x03, 0x64, 0x81, 0xc0, 0xf3, 0x30, 0x9e, 0xd1, 0x2c, 0xa0, 0x39, 0xc2, 0x03, 0x72, 0x21, 0xbc, 0x26, 0xc2,
|
178
178
|
0xcf, 0x05, 0xfc, 0x68, 0x21, 0x7c, 0xa1, 0x03, 0x98, 0x70, 0x90, 0x15, 0x51, 0x25, 0x5c, 0x69, 0x2c, 0x2e, 0xc2,
|
179
179
|
0xd3, 0x0d, 0x95, 0x62, 0x0c, 0xde, 0x05, 0x84, 0x87, 0x95, 0x70, 0x27, 0xbe, 0x21, 0x86, 0x24, 0xde, 0xa5, 0x94,
|
180
|
-
0xfe, 0x10, 0xc6, 0x1f, 0x69, 0xea,
|
180
|
+
0xfe, 0x10, 0xc6, 0x1f, 0x69, 0xea, 0x9d, 0xe1, 0x66, 0xeb, 0x31, 0x96, 0x2e, 0xe8, 0x9d, 0x26, 0x6a, 0x17, 0xb1,
|
181
181
|
0xaa, 0x73, 0xa1, 0x62, 0x04, 0x20, 0x64, 0xab, 0xbe, 0x18, 0xd8, 0xf1, 0x9d, 0x74, 0xcd, 0x61, 0x95, 0x86, 0x37,
|
182
182
|
0x2e, 0xaa, 0xc6, 0x45, 0x59, 0x32, 0x0f, 0x63, 0x16, 0x39, 0x82, 0x4e, 0xa6, 0x71, 0x28, 0xa8, 0xa3, 0xd7, 0xeb,
|
183
183
|
0x84, 0x30, 0x90, 0x5b, 0xa8, 0x0c, 0x91, 0x65, 0x70, 0x46, 0x26, 0xe0, 0x04, 0x67, 0xc5, 0x83, 0xe8, 0x94, 0x56,
|
@@ -220,10 +220,10 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
220
220
|
0x73, 0xd4, 0x69, 0xa0, 0x45, 0xa5, 0xad, 0xd4, 0x99, 0xaa, 0x71, 0xf4, 0x82, 0x4f, 0xcf, 0x49, 0xa3, 0x3d, 0x3f,
|
221
221
|
0x1d, 0xb5, 0xe7, 0xb5, 0x1a, 0xca, 0x0c, 0x69, 0xcd, 0x7a, 0xf3, 0x3e, 0x7e, 0x03, 0x4e, 0x3d, 0x9b, 0x96, 0x70,
|
222
222
|
0x65, 0x79, 0x2d, 0xbd, 0xbc, 0x5a, 0x2d, 0xc9, 0x51, 0xdb, 0xea, 0x3a, 0x52, 0x5d, 0xf3, 0x5c, 0xe1, 0x64, 0x95,
|
223
|
-
0xd4, 0x4e, 0x90, 0x2c, 0x81, 0x64, 0x28, 0x42, 0xc8,
|
223
|
+
0xd4, 0x4e, 0x90, 0x2c, 0x81, 0x64, 0x28, 0x42, 0xc8, 0x99, 0x40, 0x1b, 0x47, 0x85, 0x31, 0xa1, 0xbb, 0x3c, 0xb3,
|
224
224
|
0xc0, 0x3e, 0x95, 0x94, 0xf0, 0x00, 0x0b, 0xd0, 0xb5, 0xf0, 0x04, 0x4f, 0xf0, 0xac, 0xd6, 0x94, 0x64, 0x5e, 0x6f,
|
225
225
|
0xb6, 0xab, 0x63, 0x3d, 0x2a, 0xc7, 0xc2, 0xb3, 0x1a, 0x99, 0x14, 0x58, 0xca, 0x93, 0x5a, 0x2d, 0xaf, 0x06, 0x3b,
|
226
|
-
0xcd, 0xc9, 0xad, 0x04, 0x20,
|
226
|
+
0xcd, 0xc9, 0xad, 0x04, 0x20, 0xce, 0x56, 0x93, 0x32, 0x8c, 0x84, 0x2d, 0x65, 0x2a, 0xf3, 0x59, 0x92, 0xd0, 0x14,
|
227
227
|
0xa4, 0x28, 0x11, 0x98, 0xe5, 0x79, 0x29, 0xd9, 0x41, 0x8c, 0x62, 0x4a, 0x52, 0xe0, 0x3c, 0xd2, 0xee, 0xc2, 0x09,
|
228
228
|
0xe6, 0x78, 0x2c, 0xf9, 0x06, 0x21, 0xe4, 0xc2, 0xa4, 0xb3, 0x08, 0xc9, 0x83, 0x62, 0xc2, 0x2c, 0x99, 0x94, 0x11,
|
229
229
|
0xea, 0x5f, 0xee, 0x9e, 0xf3, 0x7b, 0x6d, 0xb2, 0x1e, 0xeb, 0x07, 0xb2, 0x59, 0xac, 0x39, 0x57, 0x48, 0xde, 0x7b,
|
@@ -238,14 +238,14 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
238
238
|
0x13, 0xf3, 0xec, 0xa5, 0x5f, 0xd6, 0xca, 0xc6, 0x97, 0xbb, 0x67, 0xef, 0x37, 0x35, 0x83, 0xf2, 0x7c, 0x56, 0xda,
|
239
239
|
0xf8, 0x12, 0xbe, 0x05, 0x8d, 0x83, 0x85, 0x16, 0x0e, 0x01, 0xcb, 0xb1, 0x14, 0x48, 0x41, 0x96, 0x17, 0xae, 0x91,
|
240
240
|
0xa7, 0x38, 0x21, 0x32, 0x0c, 0x54, 0xdd, 0x35, 0xad, 0xe6, 0x31, 0x9e, 0x5c, 0x0c, 0xf8, 0x94, 0x6e, 0x89, 0x0d,
|
241
|
-
|
241
|
+
0x9d, 0x21, 0x9f, 0x4d, 0x20, 0x75, 0x46, 0x82, 0xce, 0xf0, 0x4e, 0x03, 0xb5, 0xab, 0xe2, 0x2b, 0x91, 0x44, 0xca,
|
242
242
|
0x2b, 0xb2, 0x05, 0x8f, 0x49, 0x03, 0xc7, 0xa4, 0x81, 0x43, 0x92, 0xf5, 0x1a, 0x4a, 0x40, 0xb4, 0xc3, 0x62, 0x5c,
|
243
243
|
0x25, 0x66, 0x20, 0x2b, 0x4c, 0x9f, 0x56, 0x25, 0x80, 0xa3, 0x76, 0x28, 0x7d, 0x8f, 0x52, 0xa6, 0x47, 0x92, 0x2c,
|
244
244
|
0xde, 0x7a, 0x1c, 0x73, 0x39, 0xf0, 0x05, 0xbb, 0x8e, 0x21, 0xb1, 0x04, 0x56, 0x85, 0x05, 0x0a, 0x8a, 0xa6, 0x4d,
|
245
245
|
0xdd, 0x34, 0xf4, 0xe5, 0x3e, 0x71, 0x1c, 0xfa, 0xc0, 0xb9, 0x71, 0xa8, 0xf3, 0x70, 0xb2, 0xf5, 0x2e, 0xc7, 0x7b,
|
246
246
|
0x7b, 0x9e, 0xea, 0xf4, 0x8b, 0xf0, 0xb8, 0xa9, 0x2f, 0x23, 0x77, 0xdf, 0x2b, 0x5e, 0x11, 0x21, 0x09, 0x7f, 0xad,
|
247
247
|
0x16, 0xf7, 0x73, 0x08, 0x43, 0x7b, 0x61, 0x15, 0x83, 0x06, 0x78, 0xa9, 0xeb, 0x55, 0x97, 0x5f, 0xab, 0x15, 0x51,
|
248
|
-
0xda, 0x2a, 0xb6,
|
248
|
+
0xda, 0x2a, 0xb6, 0xce, 0x70, 0x92, 0xcf, 0xbd, 0x22, 0xf5, 0xa7, 0xb1, 0x96, 0x2f, 0x65, 0x40, 0x40, 0xcc, 0xa6,
|
249
249
|
0x59, 0x66, 0x16, 0x63, 0x1d, 0x09, 0x06, 0xed, 0xbe, 0xd1, 0x59, 0x0b, 0x58, 0x66, 0x57, 0xe9, 0x46, 0x86, 0x9d,
|
250
250
|
0xb5, 0x50, 0x60, 0x1a, 0x41, 0x54, 0x0a, 0x1a, 0xd5, 0x72, 0x4d, 0xde, 0x6f, 0xd7, 0x73, 0x2e, 0x71, 0x86, 0xb4,
|
251
251
|
0x93, 0x4b, 0x42, 0x21, 0x91, 0xd5, 0x2a, 0x90, 0xf2, 0x9c, 0x4c, 0xb7, 0x93, 0xfc, 0x99, 0x45, 0xf2, 0x4f, 0x08,
|
@@ -268,7 +268,7 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
268
268
|
0x36, 0x44, 0x4d, 0xa5, 0xd4, 0x91, 0x2d, 0x50, 0xd1, 0xc1, 0x9f, 0x7b, 0x4c, 0x2b, 0x6e, 0x26, 0x6e, 0x06, 0x0c,
|
269
269
|
0xf8, 0x89, 0xf0, 0x54, 0x30, 0x0a, 0x64, 0x06, 0xf7, 0x67, 0x5e, 0x65, 0xea, 0x36, 0x97, 0xdd, 0xb0, 0x46, 0xdc,
|
270
270
|
0xd8, 0x46, 0x13, 0x97, 0x71, 0xbd, 0xf3, 0x92, 0x97, 0x0e, 0x55, 0x06, 0xb5, 0x30, 0x5c, 0xb0, 0x4c, 0x24, 0xb1,
|
271
|
-
0x96, 0x3f, 0x54, 0x49, 0xd1, 0x45, 0x23, 0x4c, 0x25, 0x18, 0xef, 0xe4, 0x1e, 0xd0, 0x1c, 0xfe, 0x2e,
|
271
|
+
0x96, 0x3f, 0x54, 0x49, 0xd1, 0x45, 0x23, 0x4c, 0x25, 0x18, 0xef, 0xe4, 0x1e, 0xd0, 0x1c, 0xfe, 0x2e, 0x6e, 0x85,
|
272
272
|
0xb5, 0xa3, 0xc6, 0x89, 0x2d, 0xe7, 0xb4, 0xa4, 0xfe, 0x5b, 0x48, 0x75, 0x59, 0x3d, 0xf3, 0xcf, 0xa5, 0x2c, 0x64,
|
273
273
|
0x38, 0xab, 0x30, 0xf6, 0x44, 0x32, 0x76, 0x04, 0x7a, 0x9a, 0x49, 0xfc, 0xee, 0xea, 0x8c, 0x17, 0xa6, 0xa5, 0x9c,
|
274
274
|
0x26, 0xb1, 0x37, 0x45, 0xb4, 0xdc, 0xfa, 0xbd, 0xb2, 0x1b, 0x01, 0x23, 0x90, 0x05, 0x84, 0x35, 0x67, 0x4f, 0x10,
|
@@ -312,7 +312,7 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
312
312
|
0xf1, 0xb5, 0x7b, 0x78, 0x63, 0x02, 0x1e, 0xb4, 0x87, 0x4d, 0x61, 0x19, 0xdb, 0x99, 0xba, 0x07, 0x64, 0x8f, 0x4f,
|
313
313
|
0xb8, 0xd1, 0xdd, 0xaa, 0x56, 0xc6, 0x1b, 0xb0, 0xff, 0x11, 0x1e, 0x9b, 0xcb, 0x71, 0x54, 0x73, 0x60, 0x1a, 0x2c,
|
314
314
|
0xf2, 0xc2, 0x29, 0xc0, 0x95, 0xf2, 0x96, 0x22, 0xcc, 0x73, 0x19, 0xe0, 0xfe, 0x16, 0x7f, 0xa7, 0x59, 0xe2, 0xb0,
|
315
|
-
0xe0, 0x38,
|
315
|
+
0xe0, 0x38, 0xb7, 0x0f, 0xe5, 0x88, 0x0a, 0xfc, 0x22, 0x7e, 0x0f, 0x74, 0x2c, 0x29, 0x34, 0x37, 0x54, 0xf4, 0x94,
|
316
316
|
0xeb, 0x85, 0x6c, 0x4d, 0x4b, 0xc5, 0xb4, 0x48, 0xa9, 0x91, 0xd3, 0x6c, 0xc8, 0xe3, 0x34, 0x56, 0xb6, 0x28, 0x4e,
|
317
317
|
0x55, 0x65, 0x5e, 0xb4, 0x05, 0x8b, 0x65, 0x68, 0x71, 0xb9, 0xf4, 0xaa, 0xa8, 0x26, 0xcc, 0x8a, 0x64, 0x20, 0xcc,
|
318
318
|
0xac, 0x8c, 0x8a, 0x8a, 0x66, 0xad, 0xfa, 0x78, 0x68, 0x35, 0xa1, 0xc8, 0xe8, 0xe6, 0x15, 0x38, 0x6c, 0x17, 0x82,
|
@@ -612,32 +612,31 @@ const uint8_t INDEX_GZ[] PROGMEM = {
|
|
612
612
|
0xde, 0x0b, 0x3e, 0xda, 0x3c, 0x56, 0xcc, 0x47, 0x5d, 0x79, 0x05, 0x42, 0xdd, 0xb5, 0x35, 0xca, 0x2f, 0x8f, 0xdd,
|
613
613
|
0xce, 0xa9, 0x56, 0x06, 0x1c, 0x19, 0x0e, 0x77, 0x8f, 0x1a, 0xe6, 0x56, 0x45, 0xcc, 0x47, 0x70, 0x20, 0x55, 0x17,
|
614
614
|
0x6b, 0x92, 0x8a, 0xc7, 0x7d, 0xdc, 0xec, 0x9c, 0x86, 0x8e, 0xe4, 0x2d, 0x92, 0x79, 0x64, 0xc1, 0x3e, 0x74, 0x1e,
|
615
|
-
0xf3, 0x09, 0xf5, 0x19, 0xdf, 0xbf, 0xa1, 0xd7, 0xf5, 0x70, 0xca, 0x4a, 0xf7, 0x36, 0x28, 0x1d, 0xc5, 0x94,
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
0x00, 0x00};
|
615
|
+
0xf3, 0x09, 0xf5, 0x19, 0xdf, 0xbf, 0xa1, 0xd7, 0xf5, 0x70, 0xca, 0x4a, 0xf7, 0x36, 0x28, 0x1d, 0xc5, 0x94, 0xbc,
|
616
|
+
0x9c, 0x09, 0x7e, 0x86, 0x2b, 0x8b, 0x94, 0x2c, 0x3c, 0xd7, 0xbe, 0x73, 0xb0, 0x55, 0x80, 0x84, 0x5c, 0x47, 0x71,
|
617
|
+
0x78, 0xe3, 0x63, 0xd7, 0xb2, 0x37, 0x77, 0x3b, 0xff, 0xfa, 0x3f, 0xfe, 0x97, 0x76, 0x9b, 0x9f, 0xee, 0x8f, 0x9b,
|
618
|
+
0x66, 0xac, 0x15, 0x44, 0xe7, 0xa7, 0x70, 0x11, 0xb1, 0x8c, 0xf3, 0xd2, 0xdb, 0xfa, 0x28, 0x65, 0x51, 0x7d, 0x1c,
|
619
|
+
0xc6, 0x43, 0xb7, 0xb3, 0x1d, 0x41, 0xf6, 0x0d, 0x24, 0x0d, 0x75, 0xb5, 0x08, 0x48, 0xf0, 0x37, 0xdd, 0xa1, 0x31,
|
620
|
+
0x57, 0x31, 0xe4, 0x69, 0xb5, 0x6f, 0xd4, 0x94, 0x07, 0xaa, 0x72, 0xab, 0x26, 0xd5, 0x5f, 0xaf, 0xd2, 0x4c, 0x2d,
|
621
|
+
0xad, 0x5c, 0xa6, 0xc9, 0x5d, 0xa7, 0x88, 0x53, 0xfd, 0xdf, 0xff, 0xf9, 0x5f, 0xfe, 0x9b, 0x79, 0x84, 0xf0, 0xd3,
|
622
|
+
0xbf, 0xfe, 0xf7, 0xff, 0xfc, 0x7f, 0xfe, 0xf7, 0x7f, 0x85, 0x0b, 0x18, 0x3a, 0x44, 0x25, 0xf9, 0x84, 0x53, 0xc6,
|
623
|
+
0xa7, 0x14, 0xc3, 0x70, 0x20, 0x47, 0x71, 0xc2, 0x32, 0xc1, 0x06, 0xd5, 0xeb, 0x35, 0x17, 0x72, 0x42, 0x79, 0xd8,
|
624
|
+
0x34, 0x74, 0xf2, 0xd0, 0xe6, 0x25, 0x8d, 0x54, 0x50, 0x2e, 0x69, 0x31, 0x3f, 0xdd, 0x07, 0x7c, 0x3f, 0xec, 0x46,
|
625
|
+
0xa2, 0x5f, 0x6c, 0xc7, 0xc2, 0x38, 0x65, 0xa1, 0x24, 0x2f, 0xcb, 0x1d, 0x08, 0x97, 0x2c, 0xe0, 0x31, 0x68, 0x59,
|
626
|
+
0xc5, 0x72, 0xf7, 0x2a, 0x7d, 0xda, 0x1f, 0x66, 0x99, 0x60, 0x43, 0x40, 0xb9, 0x72, 0xfd, 0xca, 0xc8, 0x74, 0x1d,
|
627
|
+
0xd4, 0xbf, 0xf8, 0x2e, 0x97, 0xa3, 0x28, 0xdb, 0xfa, 0xf0, 0xe4, 0x4f, 0xf9, 0x5f, 0x26, 0xa0, 0x64, 0x39, 0xde,
|
628
|
+
0x24, 0xbc, 0xd5, 0x16, 0xf7, 0x71, 0xa3, 0x31, 0xbd, 0x45, 0x8b, 0x72, 0x06, 0xbc, 0x6d, 0x32, 0xe9, 0x2e, 0xb6,
|
629
|
+
0x07, 0x94, 0x21, 0xed, 0xc2, 0x33, 0xdd, 0x70, 0xc0, 0xbd, 0xed, 0x34, 0xf2, 0xfc, 0xcf, 0x0b, 0xe9, 0x1c, 0x65,
|
630
|
+
0xbf, 0x42, 0xe8, 0x59, 0xfb, 0x91, 0xaf, 0xb9, 0xbd, 0xb8, 0x85, 0xd5, 0xab, 0xa5, 0x7a, 0x8d, 0x9b, 0xeb, 0x17,
|
631
|
+
0xed, 0xec, 0xd0, 0xb9, 0x1d, 0xf4, 0x3e, 0x84, 0x30, 0xf6, 0xb8, 0x89, 0xc7, 0xad, 0x45, 0x31, 0xbc, 0x10, 0x7c,
|
632
|
+
0x62, 0xc7, 0xca, 0x69, 0x48, 0x07, 0x74, 0x68, 0xfc, 0xef, 0xba, 0x5e, 0xc5, 0xc1, 0xf3, 0xf1, 0xc1, 0x86, 0xb9,
|
633
|
+
0x34, 0x48, 0x32, 0x46, 0xee, 0x34, 0xf2, 0x2f, 0xe1, 0x04, 0x2e, 0x86, 0x31, 0x0f, 0x45, 0x20, 0x09, 0xb6, 0x6d,
|
634
|
+
0x47, 0xdc, 0x43, 0x60, 0x33, 0x7c, 0x61, 0xc1, 0xd3, 0x56, 0x4d, 0xc1, 0x13, 0x5e, 0xbd, 0x0e, 0x99, 0xfb, 0xb2,
|
635
|
+
0xbb, 0x3d, 0x94, 0x72, 0xa4, 0x7d, 0xaf, 0x03, 0xd9, 0xaf, 0x2a, 0x1e, 0x28, 0x2d, 0x63, 0x5a, 0x68, 0x73, 0xbd,
|
636
|
+
0x12, 0xd5, 0xaa, 0xf6, 0x27, 0xe1, 0xb9, 0x12, 0x4c, 0x77, 0xb5, 0x95, 0x2c, 0x84, 0x56, 0xaf, 0xc8, 0xf7, 0x85,
|
637
|
+
0x15, 0x14, 0x4e, 0xa7, 0xb2, 0x21, 0x6a, 0x9f, 0xee, 0x2b, 0xe5, 0x15, 0xb8, 0x87, 0xcc, 0xd2, 0x50, 0x49, 0x11,
|
638
|
+
0xba, 0x91, 0x3e, 0x0a, 0xea, 0x97, 0x4e, 0x97, 0x80, 0xcf, 0x9a, 0x75, 0xfe, 0x1f, 0xd6, 0xb2, 0x30, 0xa4, 0x67,
|
639
|
+
0x88, 0x00, 0x00};
|
641
640
|
|
642
641
|
} // namespace web_server
|
643
642
|
} // namespace esphome
|