esphome 2024.11.0b2__py3-none-any.whl → 2024.11.0b4__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.
@@ -104,7 +104,9 @@ 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();
107
108
  container->status_code = container->client_.sendRequest(method.c_str(), body.c_str());
109
+ App.feed_wdt();
108
110
  if (container->status_code < 0) {
109
111
  ESP_LOGW(TAG, "HTTP Request failed; URL: %s; Error: %s", url.c_str(),
110
112
  HTTPClient::errorToString(container->status_code).c_str());
@@ -117,8 +117,11 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
117
117
  return nullptr;
118
118
  }
119
119
 
120
+ App.feed_wdt();
120
121
  container->content_length = esp_http_client_fetch_headers(client);
122
+ App.feed_wdt();
121
123
  container->status_code = esp_http_client_get_status_code(client);
124
+ App.feed_wdt();
122
125
  if (is_success(container->status_code)) {
123
126
  container->duration_ms = millis() - start;
124
127
  return container;
@@ -148,8 +151,11 @@ std::shared_ptr<HttpContainer> HttpRequestIDF::start(std::string url, std::strin
148
151
  return nullptr;
149
152
  }
150
153
 
154
+ App.feed_wdt();
151
155
  container->content_length = esp_http_client_fetch_headers(client);
156
+ App.feed_wdt();
152
157
  container->status_code = esp_http_client_get_status_code(client);
158
+ App.feed_wdt();
153
159
  if (is_success(container->status_code)) {
154
160
  container->duration_ms = millis() - start;
155
161
  return container;
@@ -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->speed_type_ == TuyaDatapointType::BOOLEAN) {
89
+ } else if (this->oscillation_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.0b2"
3
+ __version__ = "2024.11.0b4"
4
4
 
5
5
  ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
6
6
  VALID_SUBSTITUTIONS_CHARACTERS = (
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: esphome
3
- Version: 2024.11.0b2
3
+ Version: 2024.11.0b4
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 ==20241025.0
39
+ Requires-Dist: esphome-dashboard ==20241120.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=5FDAKAoaQ4XOuFEDIKVwNq0X5Xlhcfd5arInNhLIjCQ,40261
8
+ esphome/const.py,sha256=zh6nnMR_XJryP1JkcK3jC4el8RDKzg-E_2k3Sr79UWA,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
@@ -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=JPc3fIEfvywwetZgrrZZ5vexbagO14jLTh9MoI1tdVA,5416
1154
+ esphome/components/http_request/http_request_arduino.cpp,sha256=btiSWqmr45miC9yIjjiTKrMhvtJ45JieiO0V9h1EjBo,5452
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=kPX1ZnzJVsgbfm8T8Wg9NFSRgUU4AJL1hA1RiLwLXZ8,6080
1156
+ esphome/components/http_request/http_request_idf.cpp,sha256=qVH3oaYuqfwRrDmviMOxwiof7PrIAqvg7Nc75UD2xmo,6200
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
@@ -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=qWIzjzHo93E6_H81CnzFnN1HQeeFwt0Np_W1V6f91og,4324
2969
+ esphome/components/tuya/fan/tuya_fan.cpp,sha256=KZTNjsQtSAIr4JXf2VKocxBANqORi7jaC5BsUt-gNWs,4330
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.0b2.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3359
- esphome-2024.11.0b2.dist-info/METADATA,sha256=ibM7RnyCmrX_-gOxTnBJU6MSYOfpH2HzgYnABoXgQp4,3455
3360
- esphome-2024.11.0b2.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
3361
- esphome-2024.11.0b2.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3362
- esphome-2024.11.0b2.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3363
- esphome-2024.11.0b2.dist-info/RECORD,,
3358
+ esphome-2024.11.0b4.dist-info/LICENSE,sha256=HzEjkBInJe44L4WvAOPfhPJJDNj6YbnqFyvGWRzArGM,36664
3359
+ esphome-2024.11.0b4.dist-info/METADATA,sha256=UCxbT5rVwrvp-MqYxsd3K6R2s6ehlGosombgw94UAtM,3455
3360
+ esphome-2024.11.0b4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
3361
+ esphome-2024.11.0b4.dist-info/entry_points.txt,sha256=mIxVNuWtbYzeEcaWCl-AQ-97aBOWbnYBAK8nbF6P4M0,50
3362
+ esphome-2024.11.0b4.dist-info/top_level.txt,sha256=0GSXEW3cnITpgG3qnsSMz0qoqJHAFyfw7Y8MVtEf1Yk,8
3363
+ esphome-2024.11.0b4.dist-info/RECORD,,