mirror of
https://github.com/esphome/esphome.git
synced 2025-11-06 10:01:51 +00:00
Compare commits
83 Commits
2023.2.0b4
...
2023.2.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f0760e99b7 | ||
|
|
18fecf8c09 | ||
|
|
414cf1b333 | ||
|
|
d10f891f51 | ||
|
|
b5927322e6 | ||
|
|
1cf4107e1c | ||
|
|
c12408326c | ||
|
|
4434e59e5a | ||
|
|
45180d98f6 | ||
|
|
44494ad18e | ||
|
|
1447536906 | ||
|
|
27ec517084 | ||
|
|
ce1f034bac | ||
|
|
f1f96f16e9 | ||
|
|
7665e9b076 | ||
|
|
227d94f38d | ||
|
|
b724ae9e0e | ||
|
|
df6cc14201 | ||
|
|
d981d7859d | ||
|
|
0f1ec515c1 | ||
|
|
78e18256f7 | ||
|
|
4af4649e23 | ||
|
|
8bcddef39d | ||
|
|
4ac96ccea2 | ||
|
|
3c5de77ae9 | ||
|
|
a2925b1d37 | ||
|
|
73748e9e20 | ||
|
|
75c9823899 | ||
|
|
c8c0bd3351 | ||
|
|
e1cdeb7c8f | ||
|
|
7f97f42552 | ||
|
|
aa7f3569ec | ||
|
|
2d0a08442e | ||
|
|
d2380756b2 | ||
|
|
925e3cb6c9 | ||
|
|
6757acba56 | ||
|
|
5cc91cdd95 | ||
|
|
2b41886819 | ||
|
|
72c6efd6a0 | ||
|
|
a1f1804112 | ||
|
|
a8b1ceb4e9 | ||
|
|
4fb0f7f8c6 | ||
|
|
958cadeca8 | ||
|
|
00f2655f1a | ||
|
|
074f5029eb | ||
|
|
1691976587 | ||
|
|
60e6b4d21e | ||
|
|
5750591df2 | ||
|
|
a75da54455 | ||
|
|
de7f6c3f5f | ||
|
|
4245480656 | ||
|
|
1824c8131e | ||
|
|
4e9606d2e0 | ||
|
|
78500fa933 | ||
|
|
9c69b98a49 | ||
|
|
e6d8ef98d3 | ||
|
|
3f1af1690b | ||
|
|
84374b6b1e | ||
|
|
391316c9b5 | ||
|
|
705c62ebd7 | ||
|
|
7209dd8bae | ||
|
|
ab736c89bb | ||
|
|
6911639617 | ||
|
|
b9720d0715 | ||
|
|
47b3267ed4 | ||
|
|
e16ba2adb5 | ||
|
|
0a19b1e32c | ||
|
|
bae9a950c0 | ||
|
|
72b2943332 | ||
|
|
4ec0ef7548 | ||
|
|
25bc6761f6 | ||
|
|
81b6562c25 | ||
|
|
ae74189fc2 | ||
|
|
9e516efe10 | ||
|
|
366e29439e | ||
|
|
1c9c700d7f | ||
|
|
b2e6b9d31f | ||
|
|
7623f63846 | ||
|
|
2bfaf9dce3 | ||
|
|
5c2c1560bb | ||
|
|
f7096ab78e | ||
|
|
98f8feb625 | ||
|
|
9944ca414e |
@@ -1,8 +1,6 @@
|
|||||||
include LICENSE
|
include LICENSE
|
||||||
include README.md
|
include README.md
|
||||||
include requirements.txt
|
include requirements.txt
|
||||||
include esphome/dashboard/templates/*.html
|
recursive-include esphome *.cpp *.h *.tcc *.c
|
||||||
recursive-include esphome/dashboard/static *.ico *.js *.css *.woff* LICENSE
|
|
||||||
recursive-include esphome *.cpp *.h *.tcc
|
|
||||||
recursive-include esphome *.py.script
|
recursive-include esphome *.py.script
|
||||||
recursive-include esphome LICENSE.txt
|
recursive-include esphome LICENSE.txt
|
||||||
|
|||||||
@@ -83,11 +83,30 @@ def import_config(
|
|||||||
raise FileExistsError
|
raise FileExistsError
|
||||||
|
|
||||||
if project_name == "esphome.web":
|
if project_name == "esphome.web":
|
||||||
|
if "esp32c3" in import_url:
|
||||||
|
board = "esp32-c3-devkitm-1"
|
||||||
|
platform = "ESP32"
|
||||||
|
elif "esp32s2" in import_url:
|
||||||
|
board = "esp32-s2-saola-1"
|
||||||
|
platform = "ESP32"
|
||||||
|
elif "esp32s3" in import_url:
|
||||||
|
board = "esp32-s3-devkitc-1"
|
||||||
|
platform = "ESP32"
|
||||||
|
elif "esp32" in import_url:
|
||||||
|
board = "esp32dev"
|
||||||
|
platform = "ESP32"
|
||||||
|
elif "esp8266" in import_url:
|
||||||
|
board = "esp01_1m"
|
||||||
|
platform = "ESP8266"
|
||||||
|
elif "pico-w" in import_url:
|
||||||
|
board = "pico-w"
|
||||||
|
platform = "RP2040"
|
||||||
|
|
||||||
kwargs = {
|
kwargs = {
|
||||||
"name": name,
|
"name": name,
|
||||||
"friendly_name": friendly_name,
|
"friendly_name": friendly_name,
|
||||||
"platform": "ESP32" if "esp32" in import_url else "ESP8266",
|
"platform": platform,
|
||||||
"board": "esp32dev" if "esp32" in import_url else "esp01_1m",
|
"board": board,
|
||||||
"ssid": "!secret wifi_ssid",
|
"ssid": "!secret wifi_ssid",
|
||||||
"psk": "!secret wifi_password",
|
"psk": "!secret wifi_password",
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -12,6 +12,8 @@ CONF_BLE_ID = "ble_id"
|
|||||||
|
|
||||||
NO_BLUTOOTH_VARIANTS = [const.VARIANT_ESP32S2]
|
NO_BLUTOOTH_VARIANTS = [const.VARIANT_ESP32S2]
|
||||||
|
|
||||||
|
NO_BLUTOOTH_VARIANTS = [const.VARIANT_ESP32S2]
|
||||||
|
|
||||||
esp32_ble_ns = cg.esphome_ns.namespace("esp32_ble")
|
esp32_ble_ns = cg.esphome_ns.namespace("esp32_ble")
|
||||||
ESP32BLE = esp32_ble_ns.class_("ESP32BLE", cg.Component)
|
ESP32BLE = esp32_ble_ns.class_("ESP32BLE", cg.Component)
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,20 @@
|
|||||||
#endif
|
#endif
|
||||||
#include <driver/ledc.h>
|
#include <driver/ledc.h>
|
||||||
|
|
||||||
|
#define CLOCK_FREQUENCY 80e6f
|
||||||
|
|
||||||
|
#ifdef USE_ARDUINO
|
||||||
|
#ifdef SOC_LEDC_SUPPORT_XTAL_CLOCK
|
||||||
|
#undef CLOCK_FREQUENCY
|
||||||
|
// starting with ESP32 Arduino 2.0.2, the 40MHz crystal is used as clock by default if supported
|
||||||
|
#define CLOCK_FREQUENCY 40e6f
|
||||||
|
#endif
|
||||||
|
#else
|
||||||
|
#define DEFAULT_CLK LEDC_USE_APB_CLK
|
||||||
|
#endif
|
||||||
|
|
||||||
|
static const uint8_t SETUP_ATTEMPT_COUNT_MAX = 5;
|
||||||
|
|
||||||
namespace esphome {
|
namespace esphome {
|
||||||
namespace ledc {
|
namespace ledc {
|
||||||
|
|
||||||
@@ -26,11 +40,11 @@ inline ledc_mode_t get_speed_mode(uint8_t) { return LEDC_LOW_SPEED_MODE; }
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
float ledc_max_frequency_for_bit_depth(uint8_t bit_depth) { return 80e6f / float(1 << bit_depth); }
|
float ledc_max_frequency_for_bit_depth(uint8_t bit_depth) { return CLOCK_FREQUENCY / float(1 << bit_depth); }
|
||||||
|
|
||||||
float ledc_min_frequency_for_bit_depth(uint8_t bit_depth, bool low_frequency) {
|
float ledc_min_frequency_for_bit_depth(uint8_t bit_depth, bool low_frequency) {
|
||||||
const float max_div_num = ((1 << MAX_RES_BITS) - 1) / (low_frequency ? 32.0f : 256.0f);
|
const float max_div_num = ((1 << MAX_RES_BITS) - 1) / (low_frequency ? 32.0f : 256.0f);
|
||||||
return 80e6f / (max_div_num * float(1 << bit_depth));
|
return CLOCK_FREQUENCY / (max_div_num * float(1 << bit_depth));
|
||||||
}
|
}
|
||||||
|
|
||||||
optional<uint8_t> ledc_bit_depth_for_frequency(float frequency) {
|
optional<uint8_t> ledc_bit_depth_for_frequency(float frequency) {
|
||||||
@@ -46,6 +60,38 @@ optional<uint8_t> ledc_bit_depth_for_frequency(float frequency) {
|
|||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef USE_ESP_IDF
|
||||||
|
esp_err_t configure_timer_frequency(ledc_mode_t speed_mode, ledc_timer_t timer_num, ledc_channel_t chan_num,
|
||||||
|
uint8_t channel, uint8_t &bit_depth, float frequency) {
|
||||||
|
bit_depth = *ledc_bit_depth_for_frequency(frequency);
|
||||||
|
if (bit_depth < 1) {
|
||||||
|
ESP_LOGE(TAG, "Frequency %f can't be achieved with any bit depth", frequency);
|
||||||
|
}
|
||||||
|
|
||||||
|
ledc_timer_config_t timer_conf{};
|
||||||
|
timer_conf.speed_mode = speed_mode;
|
||||||
|
timer_conf.duty_resolution = static_cast<ledc_timer_bit_t>(bit_depth);
|
||||||
|
timer_conf.timer_num = timer_num;
|
||||||
|
timer_conf.freq_hz = (uint32_t) frequency;
|
||||||
|
timer_conf.clk_cfg = DEFAULT_CLK;
|
||||||
|
|
||||||
|
// Configure the time with fallback in case of error
|
||||||
|
int attempt_count_max = SETUP_ATTEMPT_COUNT_MAX;
|
||||||
|
esp_err_t init_result = ESP_FAIL;
|
||||||
|
while (attempt_count_max > 0 && init_result != ESP_OK) {
|
||||||
|
init_result = ledc_timer_config(&timer_conf);
|
||||||
|
if (init_result != ESP_OK) {
|
||||||
|
ESP_LOGW(TAG, "Unable to initialize timer with frequency %.1f and bit depth of %u", frequency, bit_depth);
|
||||||
|
// try again with a lower bit depth
|
||||||
|
timer_conf.duty_resolution = static_cast<ledc_timer_bit_t>(--bit_depth);
|
||||||
|
}
|
||||||
|
attempt_count_max--;
|
||||||
|
}
|
||||||
|
|
||||||
|
return init_result;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
void LEDCOutput::write_state(float state) {
|
void LEDCOutput::write_state(float state) {
|
||||||
if (!initialized_) {
|
if (!initialized_) {
|
||||||
ESP_LOGW(TAG, "LEDC output hasn't been initialized yet!");
|
ESP_LOGW(TAG, "LEDC output hasn't been initialized yet!");
|
||||||
@@ -61,6 +107,7 @@ void LEDCOutput::write_state(float state) {
|
|||||||
auto duty = static_cast<uint32_t>(duty_rounded);
|
auto duty = static_cast<uint32_t>(duty_rounded);
|
||||||
|
|
||||||
#ifdef USE_ARDUINO
|
#ifdef USE_ARDUINO
|
||||||
|
ESP_LOGV(TAG, "Setting duty: %u on channel %u", duty, this->channel_);
|
||||||
ledcWrite(this->channel_, duty);
|
ledcWrite(this->channel_, duty);
|
||||||
#endif
|
#endif
|
||||||
#ifdef USE_ESP_IDF
|
#ifdef USE_ESP_IDF
|
||||||
@@ -72,6 +119,7 @@ void LEDCOutput::write_state(float state) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void LEDCOutput::setup() {
|
void LEDCOutput::setup() {
|
||||||
|
ESP_LOGV(TAG, "Entering setup...");
|
||||||
#ifdef USE_ARDUINO
|
#ifdef USE_ARDUINO
|
||||||
this->update_frequency(this->frequency_);
|
this->update_frequency(this->frequency_);
|
||||||
this->turn_off();
|
this->turn_off();
|
||||||
@@ -83,19 +131,16 @@ void LEDCOutput::setup() {
|
|||||||
auto timer_num = static_cast<ledc_timer_t>((channel_ % 8) / 2);
|
auto timer_num = static_cast<ledc_timer_t>((channel_ % 8) / 2);
|
||||||
auto chan_num = static_cast<ledc_channel_t>(channel_ % 8);
|
auto chan_num = static_cast<ledc_channel_t>(channel_ % 8);
|
||||||
|
|
||||||
bit_depth_ = *ledc_bit_depth_for_frequency(frequency_);
|
esp_err_t timer_init_result =
|
||||||
if (bit_depth_ < 1) {
|
configure_timer_frequency(speed_mode, timer_num, chan_num, this->channel_, this->bit_depth_, this->frequency_);
|
||||||
ESP_LOGW(TAG, "Frequency %f can't be achieved with any bit depth", frequency_);
|
|
||||||
this->status_set_warning();
|
if (timer_init_result != ESP_OK) {
|
||||||
|
ESP_LOGE(TAG, "Frequency %f can't be achieved with computed bit depth %u", this->frequency_, this->bit_depth_);
|
||||||
|
this->status_set_error();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
ledc_timer_config_t timer_conf{};
|
ESP_LOGV(TAG, "Configured frequency %f with a bit depth of %u bits", this->frequency_, this->bit_depth_);
|
||||||
timer_conf.speed_mode = speed_mode;
|
|
||||||
timer_conf.duty_resolution = static_cast<ledc_timer_bit_t>(bit_depth_);
|
|
||||||
timer_conf.timer_num = timer_num;
|
|
||||||
timer_conf.freq_hz = (uint32_t) frequency_;
|
|
||||||
timer_conf.clk_cfg = LEDC_AUTO_CLK;
|
|
||||||
ledc_timer_config(&timer_conf);
|
|
||||||
|
|
||||||
ledc_channel_config_t chan_conf{};
|
ledc_channel_config_t chan_conf{};
|
||||||
chan_conf.gpio_num = pin_->get_pin();
|
chan_conf.gpio_num = pin_->get_pin();
|
||||||
@@ -107,6 +152,7 @@ void LEDCOutput::setup() {
|
|||||||
chan_conf.hpoint = 0;
|
chan_conf.hpoint = 0;
|
||||||
ledc_channel_config(&chan_conf);
|
ledc_channel_config(&chan_conf);
|
||||||
initialized_ = true;
|
initialized_ = true;
|
||||||
|
this->status_clear_error();
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -114,36 +160,80 @@ void LEDCOutput::dump_config() {
|
|||||||
ESP_LOGCONFIG(TAG, "LEDC Output:");
|
ESP_LOGCONFIG(TAG, "LEDC Output:");
|
||||||
LOG_PIN(" Pin ", this->pin_);
|
LOG_PIN(" Pin ", this->pin_);
|
||||||
ESP_LOGCONFIG(TAG, " LEDC Channel: %u", this->channel_);
|
ESP_LOGCONFIG(TAG, " LEDC Channel: %u", this->channel_);
|
||||||
ESP_LOGCONFIG(TAG, " Frequency: %.1f Hz", this->frequency_);
|
ESP_LOGCONFIG(TAG, " PWM Frequency: %.1f Hz", this->frequency_);
|
||||||
|
ESP_LOGCONFIG(TAG, " Bit depth: %u", this->bit_depth_);
|
||||||
|
ESP_LOGV(TAG, " Max frequency for bit depth: %f", ledc_max_frequency_for_bit_depth(this->bit_depth_));
|
||||||
|
ESP_LOGV(TAG, " Min frequency for bit depth: %f",
|
||||||
|
ledc_min_frequency_for_bit_depth(this->bit_depth_, (this->frequency_ < 100)));
|
||||||
|
ESP_LOGV(TAG, " Max frequency for bit depth-1: %f", ledc_max_frequency_for_bit_depth(this->bit_depth_ - 1));
|
||||||
|
ESP_LOGV(TAG, " Min frequency for bit depth-1: %f",
|
||||||
|
ledc_min_frequency_for_bit_depth(this->bit_depth_ - 1, (this->frequency_ < 100)));
|
||||||
|
ESP_LOGV(TAG, " Max frequency for bit depth+1: %f", ledc_max_frequency_for_bit_depth(this->bit_depth_ + 1));
|
||||||
|
ESP_LOGV(TAG, " Min frequency for bit depth+1: %f",
|
||||||
|
ledc_min_frequency_for_bit_depth(this->bit_depth_ + 1, (this->frequency_ < 100)));
|
||||||
|
ESP_LOGV(TAG, " Max res bits: %d", MAX_RES_BITS);
|
||||||
|
ESP_LOGV(TAG, " Clock frequency: %f", CLOCK_FREQUENCY);
|
||||||
}
|
}
|
||||||
|
|
||||||
void LEDCOutput::update_frequency(float frequency) {
|
void LEDCOutput::update_frequency(float frequency) {
|
||||||
auto bit_depth_opt = ledc_bit_depth_for_frequency(frequency);
|
auto bit_depth_opt = ledc_bit_depth_for_frequency(frequency);
|
||||||
if (!bit_depth_opt.has_value()) {
|
if (!bit_depth_opt.has_value()) {
|
||||||
ESP_LOGW(TAG, "Frequency %f can't be achieved with any bit depth", frequency);
|
ESP_LOGE(TAG, "Frequency %f can't be achieved with any bit depth", this->frequency_);
|
||||||
this->status_set_warning();
|
this->status_set_error();
|
||||||
}
|
}
|
||||||
this->bit_depth_ = bit_depth_opt.value_or(8);
|
this->bit_depth_ = bit_depth_opt.value_or(8);
|
||||||
this->frequency_ = frequency;
|
this->frequency_ = frequency;
|
||||||
#ifdef USE_ARDUINO
|
#ifdef USE_ARDUINO
|
||||||
ledcSetup(this->channel_, frequency, this->bit_depth_);
|
ESP_LOGV(TAG, "Using Arduino API - Trying to define channel, frequency and bit depth...");
|
||||||
initialized_ = true;
|
u_int32_t configured_frequency = 0;
|
||||||
|
|
||||||
|
// Configure LEDC channel, frequency and bit depth with fallback
|
||||||
|
int attempt_count_max = SETUP_ATTEMPT_COUNT_MAX;
|
||||||
|
while (attempt_count_max > 0 && configured_frequency == 0) {
|
||||||
|
ESP_LOGV(TAG, "Trying initialize channel %u with frequency %.1f and bit depth of %u...", this->channel_,
|
||||||
|
this->frequency_, this->bit_depth_);
|
||||||
|
configured_frequency = ledcSetup(this->channel_, frequency, this->bit_depth_);
|
||||||
|
if (configured_frequency != 0) {
|
||||||
|
initialized_ = true;
|
||||||
|
this->status_clear_error();
|
||||||
|
ESP_LOGV(TAG, "Configured frequency: %u with bit depth: %u", configured_frequency, this->bit_depth_);
|
||||||
|
} else {
|
||||||
|
ESP_LOGW(TAG, "Unable to initialize channel %u with frequency %.1f and bit depth of %u", this->channel_,
|
||||||
|
this->frequency_, this->bit_depth_);
|
||||||
|
// try again with a lower bit depth
|
||||||
|
this->bit_depth_--;
|
||||||
|
}
|
||||||
|
attempt_count_max--;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (configured_frequency == 0) {
|
||||||
|
ESP_LOGE(TAG, "Permanently failed to initialize channel %u with frequency %.1f and bit depth of %u", this->channel_,
|
||||||
|
this->frequency_, this->bit_depth_);
|
||||||
|
this->status_set_error();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
#endif // USE_ARDUINO
|
#endif // USE_ARDUINO
|
||||||
#ifdef USE_ESP_IDF
|
#ifdef USE_ESP_IDF
|
||||||
if (!initialized_) {
|
if (!initialized_) {
|
||||||
ESP_LOGW(TAG, "LEDC output hasn't been initialized yet!");
|
ESP_LOGW(TAG, "LEDC output hasn't been initialized yet!");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto speed_mode = get_speed_mode(channel_);
|
auto speed_mode = get_speed_mode(channel_);
|
||||||
auto timer_num = static_cast<ledc_timer_t>((channel_ % 8) / 2);
|
auto timer_num = static_cast<ledc_timer_t>((channel_ % 8) / 2);
|
||||||
|
auto chan_num = static_cast<ledc_channel_t>(channel_ % 8);
|
||||||
|
|
||||||
ledc_timer_config_t timer_conf{};
|
esp_err_t timer_init_result =
|
||||||
timer_conf.speed_mode = speed_mode;
|
configure_timer_frequency(speed_mode, timer_num, chan_num, this->channel_, this->bit_depth_, this->frequency_);
|
||||||
timer_conf.duty_resolution = static_cast<ledc_timer_bit_t>(bit_depth_);
|
|
||||||
timer_conf.timer_num = timer_num;
|
if (timer_init_result != ESP_OK) {
|
||||||
timer_conf.freq_hz = (uint32_t) frequency_;
|
ESP_LOGE(TAG, "Frequency %f can't be achieved with computed bit depth %u", this->frequency_, this->bit_depth_);
|
||||||
timer_conf.clk_cfg = LEDC_AUTO_CLK;
|
this->status_set_error();
|
||||||
ledc_timer_config(&timer_conf);
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this->status_clear_error();
|
||||||
#endif
|
#endif
|
||||||
// re-apply duty
|
// re-apply duty
|
||||||
this->write_state(this->duty_);
|
this->write_state(this->duty_);
|
||||||
|
|||||||
@@ -84,18 +84,18 @@ ClimateTraits AirConditioner::traits() {
|
|||||||
traits.set_supported_custom_presets(this->supported_custom_presets_);
|
traits.set_supported_custom_presets(this->supported_custom_presets_);
|
||||||
traits.set_supported_custom_fan_modes(this->supported_custom_fan_modes_);
|
traits.set_supported_custom_fan_modes(this->supported_custom_fan_modes_);
|
||||||
/* + MINIMAL SET OF CAPABILITIES */
|
/* + MINIMAL SET OF CAPABILITIES */
|
||||||
traits.add_supported_mode(ClimateMode::CLIMATE_MODE_OFF);
|
|
||||||
traits.add_supported_mode(ClimateMode::CLIMATE_MODE_FAN_ONLY);
|
|
||||||
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_AUTO);
|
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_AUTO);
|
||||||
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_LOW);
|
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_LOW);
|
||||||
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_MEDIUM);
|
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_MEDIUM);
|
||||||
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_HIGH);
|
traits.add_supported_fan_mode(ClimateFanMode::CLIMATE_FAN_HIGH);
|
||||||
traits.add_supported_swing_mode(ClimateSwingMode::CLIMATE_SWING_OFF);
|
|
||||||
traits.add_supported_swing_mode(ClimateSwingMode::CLIMATE_SWING_VERTICAL);
|
|
||||||
traits.add_supported_preset(ClimatePreset::CLIMATE_PRESET_NONE);
|
|
||||||
traits.add_supported_preset(ClimatePreset::CLIMATE_PRESET_SLEEP);
|
|
||||||
if (this->base_.getAutoconfStatus() == dudanov::midea::AUTOCONF_OK)
|
if (this->base_.getAutoconfStatus() == dudanov::midea::AUTOCONF_OK)
|
||||||
Converters::to_climate_traits(traits, this->base_.getCapabilities());
|
Converters::to_climate_traits(traits, this->base_.getCapabilities());
|
||||||
|
if (!traits.get_supported_modes().empty())
|
||||||
|
traits.add_supported_mode(ClimateMode::CLIMATE_MODE_OFF);
|
||||||
|
if (!traits.get_supported_swing_modes().empty())
|
||||||
|
traits.add_supported_swing_mode(ClimateSwingMode::CLIMATE_SWING_OFF);
|
||||||
|
if (!traits.get_supported_presets().empty())
|
||||||
|
traits.add_supported_preset(ClimatePreset::CLIMATE_PRESET_NONE);
|
||||||
return traits;
|
return traits;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ void MQTTClimateComponent::send_discovery(JsonObject root, mqtt::SendDiscoveryCo
|
|||||||
// preset_mode_state_topic
|
// preset_mode_state_topic
|
||||||
root[MQTT_PRESET_MODE_STATE_TOPIC] = this->get_preset_state_topic();
|
root[MQTT_PRESET_MODE_STATE_TOPIC] = this->get_preset_state_topic();
|
||||||
// presets
|
// presets
|
||||||
JsonArray presets = root.createNestedArray("presets");
|
JsonArray presets = root.createNestedArray("preset_modes");
|
||||||
if (traits.supports_preset(CLIMATE_PRESET_HOME))
|
if (traits.supports_preset(CLIMATE_PRESET_HOME))
|
||||||
presets.add("home");
|
presets.add("home");
|
||||||
if (traits.supports_preset(CLIMATE_PRESET_AWAY)) {
|
if (traits.supports_preset(CLIMATE_PRESET_AWAY)) {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
"""Constants used by esphome."""
|
"""Constants used by esphome."""
|
||||||
|
|
||||||
__version__ = "2023.2.0b4"
|
__version__ = "2023.2.3"
|
||||||
|
|
||||||
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
|
||||||
|
|
||||||
|
|||||||
@@ -545,6 +545,14 @@ class DownloadBinaryRequestHandler(BaseHandler):
|
|||||||
self.finish()
|
self.finish()
|
||||||
|
|
||||||
|
|
||||||
|
class EsphomeVersionHandler(BaseHandler):
|
||||||
|
@authenticated
|
||||||
|
def get(self):
|
||||||
|
self.set_header("Content-Type", "application/json")
|
||||||
|
self.write(json.dumps({"version": const.__version__}))
|
||||||
|
self.finish()
|
||||||
|
|
||||||
|
|
||||||
def _list_dashboard_entries():
|
def _list_dashboard_entries():
|
||||||
files = settings.list_yaml_files()
|
files = settings.list_yaml_files()
|
||||||
return [DashboardEntry(file) for file in files]
|
return [DashboardEntry(file) for file in files]
|
||||||
@@ -1000,8 +1008,14 @@ class SafeLoaderIgnoreUnknown(yaml.SafeLoader):
|
|||||||
def ignore_unknown(self, node):
|
def ignore_unknown(self, node):
|
||||||
return f"{node.tag} {node.value}"
|
return f"{node.tag} {node.value}"
|
||||||
|
|
||||||
|
def construct_yaml_binary(self, node) -> str:
|
||||||
|
return super().construct_yaml_binary(node).decode("ascii")
|
||||||
|
|
||||||
|
|
||||||
SafeLoaderIgnoreUnknown.add_constructor(None, SafeLoaderIgnoreUnknown.ignore_unknown)
|
SafeLoaderIgnoreUnknown.add_constructor(None, SafeLoaderIgnoreUnknown.ignore_unknown)
|
||||||
|
SafeLoaderIgnoreUnknown.add_constructor(
|
||||||
|
"tag:yaml.org,2002:binary", SafeLoaderIgnoreUnknown.construct_yaml_binary
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
class JsonConfigRequestHandler(BaseHandler):
|
class JsonConfigRequestHandler(BaseHandler):
|
||||||
@@ -1135,6 +1149,7 @@ def make_app(debug=get_bool_env(ENV_DEV)):
|
|||||||
(f"{rel}rename", EsphomeRenameHandler),
|
(f"{rel}rename", EsphomeRenameHandler),
|
||||||
(f"{rel}prometheus-sd", PrometheusServiceDiscoveryHandler),
|
(f"{rel}prometheus-sd", PrometheusServiceDiscoveryHandler),
|
||||||
(f"{rel}boards/([a-z0-9]+)", BoardsRequestHandler),
|
(f"{rel}boards/([a-z0-9]+)", BoardsRequestHandler),
|
||||||
|
(f"{rel}version", EsphomeVersionHandler),
|
||||||
],
|
],
|
||||||
**app_settings,
|
**app_settings,
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -142,7 +142,10 @@ def get_ini_content():
|
|||||||
# Sort to avoid changing build flags order
|
# Sort to avoid changing build flags order
|
||||||
CORE.add_platformio_option("build_flags", sorted(CORE.build_flags))
|
CORE.add_platformio_option("build_flags", sorted(CORE.build_flags))
|
||||||
|
|
||||||
content = f"[env:{CORE.name}]\n"
|
content = "[platformio]\n"
|
||||||
|
content += f"description = ESPHome {__version__}\n"
|
||||||
|
|
||||||
|
content += f"[env:{CORE.name}]\n"
|
||||||
content += format_ini(CORE.platformio_options)
|
content += format_ini(CORE.platformio_options)
|
||||||
|
|
||||||
return content
|
return content
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ pyserial==3.5
|
|||||||
platformio==6.1.5 # When updating platformio, also update Dockerfile
|
platformio==6.1.5 # When updating platformio, also update Dockerfile
|
||||||
esptool==4.4
|
esptool==4.4
|
||||||
click==8.1.3
|
click==8.1.3
|
||||||
esphome-dashboard==20230120.0
|
esphome-dashboard==20230214.0
|
||||||
aioesphomeapi==13.1.0
|
aioesphomeapi==13.1.0
|
||||||
zeroconf==0.47.1
|
zeroconf==0.47.1
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user