mirror of
https://github.com/esphome/esphome.git
synced 2024-11-16 10:45:48 +01:00
Add device class support to MQTT cover (#2092)
This commit is contained in:
parent
16dbbfabc6
commit
de382b704c
@ -61,6 +61,9 @@ void MQTTCoverComponent::dump_config() {
|
||||
}
|
||||
}
|
||||
void MQTTCoverComponent::send_discovery(JsonObject &root, mqtt::SendDiscoveryConfig &config) {
|
||||
if (!this->cover_->get_device_class().empty())
|
||||
root["device_class"] = this->cover_->get_device_class();
|
||||
|
||||
auto traits = this->cover_->get_traits();
|
||||
if (traits.get_is_assumed_state()) {
|
||||
root["optimistic"] = true;
|
||||
|
Loading…
Reference in New Issue
Block a user