esphome 2024.11.0__py3-none-any.whl → 2024.11.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/bme68x_bsec2/bme68x_bsec2.cpp +47 -50
- esphome/components/bme68x_bsec2/bme68x_bsec2.h +2 -0
- esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp +0 -3
- esphome/components/http_request/http_request_arduino.cpp +0 -2
- esphome/components/http_request/http_request_idf.cpp +0 -6
- esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp +10 -1
- esphome/components/i2s_audio/speaker/i2s_audio_speaker.h +1 -1
- esphome/components/ld2420/ld2420.cpp +1 -1
- esphome/components/sdm_meter/sdm_meter.cpp +1 -1
- esphome/components/tuya/fan/tuya_fan.cpp +1 -1
- esphome/const.py +2 -2
- {esphome-2024.11.0.dist-info → esphome-2024.11.0b1.dist-info}/METADATA +2 -2
- {esphome-2024.11.0.dist-info → esphome-2024.11.0b1.dist-info}/RECORD +17 -17
- {esphome-2024.11.0.dist-info → esphome-2024.11.0b1.dist-info}/LICENSE +0 -0
- {esphome-2024.11.0.dist-info → esphome-2024.11.0b1.dist-info}/WHEEL +0 -0
- {esphome-2024.11.0.dist-info → esphome-2024.11.0b1.dist-info}/entry_points.txt +0 -0
- {esphome-2024.11.0.dist-info → esphome-2024.11.0b1.dist-info}/top_level.txt +0 -0
@@ -204,11 +204,11 @@ void BME68xBSEC2Component::update_subscription_() {
|
|
204
204
|
}
|
205
205
|
|
206
206
|
void BME68xBSEC2Component::run_() {
|
207
|
-
this->op_mode_ = this->bsec_settings_.op_mode;
|
208
207
|
int64_t curr_time_ns = this->get_time_ns_();
|
209
|
-
if (curr_time_ns < this->
|
208
|
+
if (curr_time_ns < this->next_call_ns_) {
|
210
209
|
return;
|
211
210
|
}
|
211
|
+
this->op_mode_ = this->bsec_settings_.op_mode;
|
212
212
|
uint8_t status;
|
213
213
|
|
214
214
|
ESP_LOGV(TAG, "Performing sensor run");
|
@@ -219,60 +219,57 @@ void BME68xBSEC2Component::run_() {
|
|
219
219
|
ESP_LOGW(TAG, "Failed to fetch sensor control settings (BSEC2 error code %d)", this->bsec_status_);
|
220
220
|
return;
|
221
221
|
}
|
222
|
+
this->next_call_ns_ = this->bsec_settings_.next_call;
|
222
223
|
|
223
|
-
|
224
|
-
|
225
|
-
bme68x_get_conf(&bme68x_conf, &this->bme68x_);
|
226
|
-
|
227
|
-
bme68x_conf.os_hum = this->bsec_settings_.humidity_oversampling;
|
228
|
-
bme68x_conf.os_temp = this->bsec_settings_.temperature_oversampling;
|
229
|
-
bme68x_conf.os_pres = this->bsec_settings_.pressure_oversampling;
|
230
|
-
bme68x_set_conf(&bme68x_conf, &this->bme68x_);
|
231
|
-
this->bme68x_heatr_conf_.enable = BME68X_ENABLE;
|
232
|
-
this->bme68x_heatr_conf_.heatr_temp = this->bsec_settings_.heater_temperature;
|
233
|
-
this->bme68x_heatr_conf_.heatr_dur = this->bsec_settings_.heater_duration;
|
224
|
+
if (this->bsec_settings_.trigger_measurement) {
|
225
|
+
bme68x_get_conf(&bme68x_conf, &this->bme68x_);
|
234
226
|
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
ESP_LOGV(TAG, "Using forced mode");
|
227
|
+
bme68x_conf.os_hum = this->bsec_settings_.humidity_oversampling;
|
228
|
+
bme68x_conf.os_temp = this->bsec_settings_.temperature_oversampling;
|
229
|
+
bme68x_conf.os_pres = this->bsec_settings_.pressure_oversampling;
|
230
|
+
bme68x_set_conf(&bme68x_conf, &this->bme68x_);
|
240
231
|
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
232
|
+
switch (this->bsec_settings_.op_mode) {
|
233
|
+
case BME68X_FORCED_MODE:
|
234
|
+
this->bme68x_heatr_conf_.enable = BME68X_ENABLE;
|
235
|
+
this->bme68x_heatr_conf_.heatr_temp = this->bsec_settings_.heater_temperature;
|
236
|
+
this->bme68x_heatr_conf_.heatr_dur = this->bsec_settings_.heater_duration;
|
245
237
|
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
238
|
+
status = bme68x_set_op_mode(this->bsec_settings_.op_mode, &this->bme68x_);
|
239
|
+
status = bme68x_set_heatr_conf(BME68X_FORCED_MODE, &this->bme68x_heatr_conf_, &this->bme68x_);
|
240
|
+
status = bme68x_set_op_mode(BME68X_FORCED_MODE, &this->bme68x_);
|
241
|
+
this->op_mode_ = BME68X_FORCED_MODE;
|
242
|
+
this->sleep_mode_ = false;
|
243
|
+
ESP_LOGV(TAG, "Using forced mode");
|
250
244
|
|
251
|
-
|
252
|
-
|
253
|
-
this->
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
245
|
+
break;
|
246
|
+
case BME68X_PARALLEL_MODE:
|
247
|
+
if (this->op_mode_ != this->bsec_settings_.op_mode) {
|
248
|
+
this->bme68x_heatr_conf_.enable = BME68X_ENABLE;
|
249
|
+
this->bme68x_heatr_conf_.heatr_temp_prof = this->bsec_settings_.heater_temperature_profile;
|
250
|
+
this->bme68x_heatr_conf_.heatr_dur_prof = this->bsec_settings_.heater_duration_profile;
|
251
|
+
this->bme68x_heatr_conf_.profile_len = this->bsec_settings_.heater_profile_len;
|
252
|
+
this->bme68x_heatr_conf_.shared_heatr_dur =
|
253
|
+
BSEC_TOTAL_HEAT_DUR -
|
254
|
+
(bme68x_get_meas_dur(BME68X_PARALLEL_MODE, &bme68x_conf, &this->bme68x_) / INT64_C(1000));
|
255
|
+
|
256
|
+
status = bme68x_set_heatr_conf(BME68X_PARALLEL_MODE, &this->bme68x_heatr_conf_, &this->bme68x_);
|
257
|
+
|
258
|
+
status = bme68x_set_op_mode(BME68X_PARALLEL_MODE, &this->bme68x_);
|
259
|
+
this->op_mode_ = BME68X_PARALLEL_MODE;
|
260
|
+
this->sleep_mode_ = false;
|
261
|
+
ESP_LOGV(TAG, "Using parallel mode");
|
262
|
+
}
|
263
|
+
break;
|
264
|
+
case BME68X_SLEEP_MODE:
|
265
|
+
if (!this->sleep_mode_) {
|
266
|
+
bme68x_set_op_mode(BME68X_SLEEP_MODE, &this->bme68x_);
|
267
|
+
this->sleep_mode_ = true;
|
268
|
+
ESP_LOGV(TAG, "Using sleep mode");
|
269
|
+
}
|
270
|
+
break;
|
271
|
+
}
|
274
272
|
|
275
|
-
if (this->bsec_settings_.trigger_measurement && this->bsec_settings_.op_mode != BME68X_SLEEP_MODE) {
|
276
273
|
uint32_t meas_dur = 0;
|
277
274
|
meas_dur = bme68x_get_meas_dur(this->op_mode_, &bme68x_conf, &this->bme68x_);
|
278
275
|
ESP_LOGV(TAG, "Queueing read in %uus", meas_dur);
|
@@ -113,11 +113,13 @@ class BME68xBSEC2Component : public Component {
|
|
113
113
|
|
114
114
|
struct bme68x_heatr_conf bme68x_heatr_conf_;
|
115
115
|
uint8_t op_mode_; // operating mode of sensor
|
116
|
+
bool sleep_mode_;
|
116
117
|
bsec_library_return_t bsec_status_{BSEC_OK};
|
117
118
|
int8_t bme68x_status_{BME68X_OK};
|
118
119
|
|
119
120
|
int64_t last_time_ms_{0};
|
120
121
|
uint32_t millis_overflow_counter_{0};
|
122
|
+
int64_t next_call_ns_{0};
|
121
123
|
|
122
124
|
std::queue<std::function<void()>> queue_;
|
123
125
|
|
@@ -65,9 +65,6 @@ void ESP32BLETracker::setup() {
|
|
65
65
|
[this](ota::OTAState state, float progress, uint8_t error, ota::OTAComponent *comp) {
|
66
66
|
if (state == ota::OTA_STARTED) {
|
67
67
|
this->stop_scan();
|
68
|
-
for (auto *client : this->clients_) {
|
69
|
-
client->disconnect();
|
70
|
-
}
|
71
68
|
}
|
72
69
|
});
|
73
70
|
#endif
|
@@ -104,9 +104,7 @@ std::shared_ptr<HttpContainer> HttpRequestArduino::start(std::string url, std::s
|
|
104
104
|
static const size_t HEADER_COUNT = sizeof(header_keys) / sizeof(header_keys[0]);
|
105
105
|
container->client_.collectHeaders(header_keys, HEADER_COUNT);
|
106
106
|
|
107
|
-
App.feed_wdt();
|
108
107
|
container->status_code = container->client_.sendRequest(method.c_str(), body.c_str());
|
109
|
-
App.feed_wdt();
|
110
108
|
if (container->status_code < 0) {
|
111
109
|
ESP_LOGW(TAG, "HTTP Request failed; URL: %s; Error: %s", url.c_str(),
|
112
110
|
HTTPClient::errorToString(container->status_code).c_str());
|
@@ -117,11 +117,8 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
|
|
117
117
|
return nullptr;
|
118
118
|
}
|
119
119
|
|
120
|
-
App.feed_wdt();
|
121
120
|
container->content_length = esp_http_client_fetch_headers(client);
|
122
|
-
App.feed_wdt();
|
123
121
|
container->status_code = esp_http_client_get_status_code(client);
|
124
|
-
App.feed_wdt();
|
125
122
|
if (is_success(container->status_code)) {
|
126
123
|
container->duration_ms = millis() - start;
|
127
124
|
return container;
|
@@ -151,11 +148,8 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
|
|
151
148
|
return nullptr;
|
152
149
|
}
|
153
150
|
|
154
|
-
App.feed_wdt();
|
155
151
|
container->content_length = esp_http_client_fetch_headers(client);
|
156
|
-
App.feed_wdt();
|
157
152
|
container->status_code = esp_http_client_get_status_code(client);
|
158
|
-
App.feed_wdt();
|
159
153
|
if (is_success(container->status_code)) {
|
160
154
|
container->duration_ms = millis() - start;
|
161
155
|
return container;
|
@@ -99,6 +99,14 @@ void I2SAudioSpeaker::setup() {
|
|
99
99
|
this->mark_failed();
|
100
100
|
return;
|
101
101
|
}
|
102
|
+
|
103
|
+
this->i2s_event_queue_ = xQueueCreate(I2S_EVENT_QUEUE_COUNT, sizeof(i2s_event_t));
|
104
|
+
|
105
|
+
if (this->i2s_event_queue_ == nullptr) {
|
106
|
+
ESP_LOGE(TAG, "Failed to create I2S event queue");
|
107
|
+
this->mark_failed();
|
108
|
+
return;
|
109
|
+
}
|
102
110
|
}
|
103
111
|
|
104
112
|
void I2SAudioSpeaker::loop() {
|
@@ -331,7 +339,7 @@ void I2SAudioSpeaker::speaker_task(void *params) {
|
|
331
339
|
}
|
332
340
|
|
333
341
|
void I2SAudioSpeaker::start() {
|
334
|
-
if (
|
342
|
+
if (this->is_failed() || this->status_has_error())
|
335
343
|
return;
|
336
344
|
if ((this->state_ == speaker::STATE_STARTING) || (this->state_ == speaker::STATE_RUNNING))
|
337
345
|
return;
|
@@ -511,6 +519,7 @@ void I2SAudioSpeaker::delete_task_(size_t buffer_size) {
|
|
511
519
|
}
|
512
520
|
|
513
521
|
xEventGroupSetBits(this->event_group_, SpeakerEventGroupBits::STATE_STOPPED);
|
522
|
+
xQueueReset(this->i2s_event_queue_);
|
514
523
|
|
515
524
|
this->task_created_ = false;
|
516
525
|
vTaskDelete(nullptr);
|
@@ -23,7 +23,7 @@ namespace i2s_audio {
|
|
23
23
|
|
24
24
|
class I2SAudioSpeaker : public I2SAudioOut, public speaker::Speaker, public Component {
|
25
25
|
public:
|
26
|
-
float get_setup_priority() const override { return esphome::setup_priority::
|
26
|
+
float get_setup_priority() const override { return esphome::setup_priority::LATE; }
|
27
27
|
|
28
28
|
void setup() override;
|
29
29
|
void loop() override;
|
@@ -180,7 +180,7 @@ void LD2420Component::apply_config_action() {
|
|
180
180
|
}
|
181
181
|
|
182
182
|
void LD2420Component::factory_reset_action() {
|
183
|
-
ESP_LOGCONFIG(TAG, "
|
183
|
+
ESP_LOGCONFIG(TAG, "Setiing factory defaults...");
|
184
184
|
if (this->set_config_mode(true) == LD2420_ERROR_TIMEOUT) {
|
185
185
|
ESP_LOGE(TAG, "LD2420 module has failed to respond, check baud rate and serial connections.");
|
186
186
|
this->mark_failed();
|
@@ -38,7 +38,7 @@ void SDMMeter::on_modbus_data(const std::vector<uint8_t> &data) {
|
|
38
38
|
|
39
39
|
ESP_LOGD(
|
40
40
|
TAG,
|
41
|
-
"SDMMeter Phase %c: V=%.3f V, I=%.3f A, Active P=%.3f W, Apparent P=%.3f VA, Reactive P=%.3f
|
41
|
+
"SDMMeter Phase %c: V=%.3f V, I=%.3f A, Active P=%.3f W, Apparent P=%.3f VA, Reactive P=%.3f VAR, PF=%.3f, "
|
42
42
|
"PA=%.3f °",
|
43
43
|
i + 'A', voltage, current, active_power, apparent_power, reactive_power, power_factor, phase_angle);
|
44
44
|
if (phase.voltage_sensor_ != nullptr)
|
@@ -86,7 +86,7 @@ void TuyaFan::control(const fan::FanCall &call) {
|
|
86
86
|
if (this->oscillation_id_.has_value() && call.get_oscillating().has_value()) {
|
87
87
|
if (this->oscillation_type_ == TuyaDatapointType::ENUM) {
|
88
88
|
this->parent_->set_enum_datapoint_value(*this->oscillation_id_, *call.get_oscillating());
|
89
|
-
} else if (this->
|
89
|
+
} else if (this->speed_type_ == TuyaDatapointType::BOOLEAN) {
|
90
90
|
this->parent_->set_boolean_datapoint_value(*this->oscillation_id_, *call.get_oscillating());
|
91
91
|
}
|
92
92
|
}
|
esphome/const.py
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"""Constants used by esphome."""
|
2
2
|
|
3
|
-
__version__ = "2024.11.
|
3
|
+
__version__ = "2024.11.0b1"
|
4
4
|
|
5
5
|
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
6
6
|
VALID_SUBSTITUTIONS_CHARACTERS = (
|
@@ -1095,7 +1095,7 @@ UNIT_STEPS = "steps"
|
|
1095
1095
|
UNIT_VOLT = "V"
|
1096
1096
|
UNIT_VOLT_AMPS = "VA"
|
1097
1097
|
UNIT_VOLT_AMPS_HOURS = "VAh"
|
1098
|
-
UNIT_VOLT_AMPS_REACTIVE = "
|
1098
|
+
UNIT_VOLT_AMPS_REACTIVE = "VAR"
|
1099
1099
|
UNIT_VOLT_AMPS_REACTIVE_HOURS = "VARh"
|
1100
1100
|
UNIT_WATT = "W"
|
1101
1101
|
UNIT_WATT_HOURS = "Wh"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: esphome
|
3
|
-
Version: 2024.11.
|
3
|
+
Version: 2024.11.0b1
|
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
|
@@ -36,7 +36,7 @@ Requires-Dist: pyserial ==3.5
|
|
36
36
|
Requires-Dist: platformio ==6.1.16
|
37
37
|
Requires-Dist: esptool ==4.7.0
|
38
38
|
Requires-Dist: click ==8.1.7
|
39
|
-
Requires-Dist: esphome-dashboard ==
|
39
|
+
Requires-Dist: esphome-dashboard ==20241025.0
|
40
40
|
Requires-Dist: aioesphomeapi ==24.6.2
|
41
41
|
Requires-Dist: zeroconf ==0.132.2
|
42
42
|
Requires-Dist: puremagic ==1.27
|
@@ -5,7 +5,7 @@ esphome/codegen.py,sha256=GePHUM7xdXb_Pil59SHVsXg2F4VBPgkH-Fz2PDX8Z54,1873
|
|
5
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=RaF7hC9-VwtWA8C6vYaKVzyz4XqeoOOajr3EJDnaBaI,66311
|
8
|
-
esphome/const.py,sha256=
|
8
|
+
esphome/const.py,sha256=Ih-5bSQlMPrMXQH7J4-cf4Tw-PKXcHvZ6LcevLSfIBk,40261
|
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
|
@@ -387,8 +387,8 @@ esphome/components/bme680_bsec/bme680_bsec.h,sha256=aUGZXwSiu0wOlt13_mxhy0yKxToA
|
|
387
387
|
esphome/components/bme680_bsec/sensor.py,sha256=w26_mIroRS4r8ZWZb_kPnFih1G17cschuzqnHly5ZAM,4012
|
388
388
|
esphome/components/bme680_bsec/text_sensor.py,sha256=9CsWVu3VLV74nnrpChN9IabeZDhkwEi_G2xHdHFrpRI,920
|
389
389
|
esphome/components/bme68x_bsec2/__init__.py,sha256=ZHqqKsnyQh9LYyZAfvRhZPgs1actOKRugZPqG4r3aiw,6161
|
390
|
-
esphome/components/bme68x_bsec2/bme68x_bsec2.cpp,sha256=
|
391
|
-
esphome/components/bme68x_bsec2/bme68x_bsec2.h,sha256=
|
390
|
+
esphome/components/bme68x_bsec2/bme68x_bsec2.cpp,sha256=kTbYtw5SztJVQj71mAIY4cl2U-CHNG9GBVtew47d8T8,20223
|
391
|
+
esphome/components/bme68x_bsec2/bme68x_bsec2.h,sha256=BkOXWdcLh5WN0wr-Sgz0y60Mq46ANIHd_Fyu5jfDfY0,5463
|
392
392
|
esphome/components/bme68x_bsec2/sensor.py,sha256=fZ04TAM3yw9ly0_x48IxoPylCMjwYNRAeErqm1U3Uqo,4254
|
393
393
|
esphome/components/bme68x_bsec2/text_sensor.py,sha256=ASxXU6gdsqXnnf7aqYQdokpMGkqJemkpwSazu_Cfq6E,909
|
394
394
|
esphome/components/bme68x_bsec2_i2c/__init__.py,sha256=6QtxvZcW0h5iZv9YyBIAgT0QSOJti4sTJCGewQ3YQtI,766
|
@@ -820,7 +820,7 @@ esphome/components/esp32_ble_server/ble_service.cpp,sha256=zs-xQT9ISP8hn40DoL3k9
|
|
820
820
|
esphome/components/esp32_ble_server/ble_service.h,sha256=MTQ1FsfwMgDoDiLNo0RqPObE8b9sE4NcCSVxlmR49v8,2328
|
821
821
|
esphome/components/esp32_ble_tracker/__init__.py,sha256=Sgr8LKTUWh5nC2bh_iKNlQQZY7GSRr5FLG2QxI-piaY,12362
|
822
822
|
esphome/components/esp32_ble_tracker/automation.h,sha256=0pDA6EX__f14sT0KJwcnqg7UOsueKjjegHPznQj9biw,3795
|
823
|
-
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=
|
823
|
+
esphome/components/esp32_ble_tracker/esp32_ble_tracker.cpp,sha256=x0e81DwrOvBl9RSryR-i9ASagHE9m2qBuPSzEIfn7fY,26439
|
824
824
|
esphome/components/esp32_ble_tracker/esp32_ble_tracker.h,sha256=9PE-RHLPS0uax7Zb5EnV4Yinmhyss-BZ9SmqbxxOPIs,8875
|
825
825
|
esphome/components/esp32_camera/__init__.py,sha256=qhJ3Jgv1gum3m8kfkOFZLK7TLNsbuHZxIrqxBb11mz0,12649
|
826
826
|
esphome/components/esp32_camera/esp32_camera.cpp,sha256=Ba2nu453rF4FDSlIJwD5sLnzE8ru4kKK4xVCvMdoyac,16960
|
@@ -1151,9 +1151,9 @@ esphome/components/hte501/sensor.py,sha256=H7cfhfjQ0lyUgHABpoyiKOaj_f2qhN7nDW-tT
|
|
1151
1151
|
esphome/components/http_request/__init__.py,sha256=4_uFrwkt-A5zGn3yg_9OmTeqG_B-0-qLdVB7OpDdkT8,10324
|
1152
1152
|
esphome/components/http_request/http_request.cpp,sha256=UFpMPffAuE2enh8iBvZzV3EDr7lS-MoLaquDoi5FGEw,705
|
1153
1153
|
esphome/components/http_request/http_request.h,sha256=xKfYOmgFbHJd1aDNIrvgl7LuDoz7QaifT26f-pz44HQ,8657
|
1154
|
-
esphome/components/http_request/http_request_arduino.cpp,sha256=
|
1154
|
+
esphome/components/http_request/http_request_arduino.cpp,sha256=JPc3fIEfvywwetZgrrZZ5vexbagO14jLTh9MoI1tdVA,5416
|
1155
1155
|
esphome/components/http_request/http_request_arduino.h,sha256=iaOY5aKpQJREygOoyBB8Nsozp4cfETDt-G6Hgu_pkm0,871
|
1156
|
-
esphome/components/http_request/http_request_idf.cpp,sha256=
|
1156
|
+
esphome/components/http_request/http_request_idf.cpp,sha256=kPX1ZnzJVsgbfm8T8Wg9NFSRgUU4AJL1hA1RiLwLXZ8,6080
|
1157
1157
|
esphome/components/http_request/http_request_idf.h,sha256=AYRv1xjWqRGXXHobcH9CHe-wk6D8OrerG4VAqrRCxPk,1122
|
1158
1158
|
esphome/components/http_request/ota/__init__.py,sha256=jpcMsy-w7q6YH2XFwBHVMb9_rM8hY0_3BS_3rkKRvc0,3202
|
1159
1159
|
esphome/components/http_request/ota/automation.h,sha256=yQo6nJis0S56r5F-tIPbRPqPZMcu0Lpcawr2cX92Ap4,1209
|
@@ -1204,8 +1204,8 @@ esphome/components/i2s_audio/microphone/__init__.py,sha256=bUKAY5HBZrBJGufEA9MkC
|
|
1204
1204
|
esphome/components/i2s_audio/microphone/i2s_audio_microphone.cpp,sha256=-AN8LLxtcLp9r-JCpfSG2huLk3ptbgijvKsH-XWl3XQ,6228
|
1205
1205
|
esphome/components/i2s_audio/microphone/i2s_audio_microphone.h,sha256=dMNlVDWJ8Agz8NJe0pNvxDN9ZM9GMU3XNxPqQgHLQ5c,1036
|
1206
1206
|
esphome/components/i2s_audio/speaker/__init__.py,sha256=DcG-0I2ETqk3akuTvzl7szVERy99qEgo-Ma8iFJjN4c,4013
|
1207
|
-
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=
|
1208
|
-
esphome/components/i2s_audio/speaker/i2s_audio_speaker.h,sha256=
|
1207
|
+
esphome/components/i2s_audio/speaker/i2s_audio_speaker.cpp,sha256=JplMNgfwxrV_5mDdn_3VTkxl6eaDcddQ_BgPVacP20k,20397
|
1208
|
+
esphome/components/i2s_audio/speaker/i2s_audio_speaker.h,sha256=2coh-0jpkgB93olsrB5gp3uKmbrfiN6f2Uege9s4JUQ,6500
|
1209
1209
|
esphome/components/iaqcore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
1210
1210
|
esphome/components/iaqcore/iaqcore.cpp,sha256=hKSC0Xar693LMqOHpYShl_-VdWkKc18i21AzjdjB7e4,2268
|
1211
1211
|
esphome/components/iaqcore/iaqcore.h,sha256=wYuMlxOawAHkok41WzryDsV-2a4-YTsG0TU-gfP-ZyE,678
|
@@ -1347,7 +1347,7 @@ esphome/components/ld2410/switch/bluetooth_switch.h,sha256=B-oPEG1KV23aATKLLRqqt
|
|
1347
1347
|
esphome/components/ld2410/switch/engineering_mode_switch.cpp,sha256=DtyDtB0m9xyiEjfrKCg_z0aUVlexvS2t6EdkZ_j1S4Q,258
|
1348
1348
|
esphome/components/ld2410/switch/engineering_mode_switch.h,sha256=YtfYVHHSWRic0qg9iei16S52urpQHAeUMddDXon2EII,364
|
1349
1349
|
esphome/components/ld2420/__init__.py,sha256=RsAhN7qo0D3m3OkUTYOCgaILRkG1ORX3EMAI92qwlFo,898
|
1350
|
-
esphome/components/ld2420/ld2420.cpp,sha256=
|
1350
|
+
esphome/components/ld2420/ld2420.cpp,sha256=DRXAODnYlI2I9xzXQA5MZ_VmH4-mJcYMmos2_5AsB30,31819
|
1351
1351
|
esphome/components/ld2420/ld2420.h,sha256=WxZbC3l7cc8dOJgSFVPnM5MYrOAKrFfrP4VdRBfWnXI,11863
|
1352
1352
|
esphome/components/ld2420/binary_sensor/__init__.py,sha256=z6nd2xRbTZnMA7dDyAyc0ya52OOYbAaDlRFI7xM0iUQ,1099
|
1353
1353
|
esphome/components/ld2420/binary_sensor/ld2420_binary_sensor.cpp,sha256=c-uJCQ2TMZmTrmMlzy0KBVaAJlaykmfVxkysBPXGcl8,396
|
@@ -2377,7 +2377,7 @@ esphome/components/sdl/sdl_esphome.h,sha256=Zm10wrvS2U3_KdRxIXqRYlDsKHy6Ar80aj9l
|
|
2377
2377
|
esphome/components/sdl/touchscreen/__init__.py,sha256=n7dRzjNzDuM7hfACtgJmneufLWH_xM05FstsDBxxgnQ,633
|
2378
2378
|
esphome/components/sdl/touchscreen/sdl_touchscreen.h,sha256=dgw2wGuEvjX6zbPjqMOPLkOl-aVYVWxY7n7Gc_kAKm0,595
|
2379
2379
|
esphome/components/sdm_meter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2380
|
-
esphome/components/sdm_meter/sdm_meter.cpp,sha256=
|
2380
|
+
esphome/components/sdm_meter/sdm_meter.cpp,sha256=QSvx5YJAoPEL654tSIZHH_CxafyU4uqo_VcQQSmsLac,5223
|
2381
2381
|
esphome/components/sdm_meter/sdm_meter.h,sha256=-ZrIeuFjRgAWkrOvHjNFtbUihjeHa_dcspmuNLzY6vQ,3449
|
2382
2382
|
esphome/components/sdm_meter/sdm_meter_registers.h,sha256=8aESi_oho70EyVeMcmfA1NO0bWilxuuUiq-Lc5llaF8,5891
|
2383
2383
|
esphome/components/sdm_meter/sensor.py,sha256=2A1WjaUrtmLc0auiN5RgiWHTlkfT0XzgBCWxCQ-ETrE,6172
|
@@ -2966,7 +2966,7 @@ esphome/components/tuya/cover/__init__.py,sha256=AbIK1-3XjKZaByOfiUgu6WsANOtvMBk
|
|
2966
2966
|
esphome/components/tuya/cover/tuya_cover.cpp,sha256=0VKNLg0zDy7EPk7sRQC6aL1QjV7832tmubbPenbQW3Y,4369
|
2967
2967
|
esphome/components/tuya/cover/tuya_cover.h,sha256=9S9_X7xuiusjDRfsXw_aV6_7i8P9WpMOvOg-dlyOrz8,1787
|
2968
2968
|
esphome/components/tuya/fan/__init__.py,sha256=ErByNMxL3KwDoVNVzwve0hYkKu8iYf7TPnXhCpjettU,1795
|
2969
|
-
esphome/components/tuya/fan/tuya_fan.cpp,sha256=
|
2969
|
+
esphome/components/tuya/fan/tuya_fan.cpp,sha256=qWIzjzHo93E6_H81CnzFnN1HQeeFwt0Np_W1V6f91og,4324
|
2970
2970
|
esphome/components/tuya/fan/tuya_fan.h,sha256=nYKtPdShhbQl05W83rAFS4CxKbsY2jhp5N11k1c2alk,1114
|
2971
2971
|
esphome/components/tuya/light/__init__.py,sha256=YOoEU4ZiaLAmlZTT_IRXcY-sgLMBSL1NfFl4tj_07sU,4857
|
2972
2972
|
esphome/components/tuya/light/tuya_light.cpp,sha256=sINqk90PdAxq3zxKYMsF302ro_uL-qaR4oTNK2mOaaU,8434
|
@@ -3355,9 +3355,9 @@ esphome/dashboard/util/itertools.py,sha256=8eLrWEWmICLtXNxkKdYPQV0c_N4GEz8m9Npnb
|
|
3355
3355
|
esphome/dashboard/util/password.py,sha256=cQz3b9B-ijTe7zS6BeCW0hc3pWv6JjC78jmnycYYAh8,321
|
3356
3356
|
esphome/dashboard/util/subprocess.py,sha256=T8EW6dbU4LPd2DG1dRrdh8li71tt6J1isn411poMhkk,1022
|
3357
3357
|
esphome/dashboard/util/text.py,sha256=ENDnfN4O0NdA3CKVJjQYabFbwbrsIhVKrAMQe53qYu4,534
|
3358
|
-
esphome-2024.11.
|
3359
|
-
esphome-2024.11.
|
3360
|
-
esphome-2024.11.
|
3361
|
-
esphome-2024.11.
|
3362
|
-
esphome-2024.11.
|
3363
|
-
esphome-2024.11.
|
3358
|
+
esphome-2024.11.0b1.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
|
3359
|
+
esphome-2024.11.0b1.dist-info/METADATA,sha256=yLww3VPi9ijklr74bZ2oukYce9eXI94nOaMHwkwJ5aM,3455
|
3360
|
+
esphome-2024.11.0b1.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
3361
|
+
esphome-2024.11.0b1.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
|
3362
|
+
esphome-2024.11.0b1.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
|
3363
|
+
esphome-2024.11.0b1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|