mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Remove default initializations from tuya cover (#2415)
This commit is contained in:
parent
7af1c04493
commit
505d1d78fb
1 changed files with 3 additions and 3 deletions
|
@ -23,10 +23,10 @@ class TuyaCover : public cover::Cover, public Component {
|
|||
|
||||
Tuya *parent_;
|
||||
optional<uint8_t> position_id_{};
|
||||
uint32_t min_value_ = 0;
|
||||
uint32_t max_value_ = 100;
|
||||
uint32_t min_value_;
|
||||
uint32_t max_value_;
|
||||
uint32_t value_range_;
|
||||
bool invert_position_ = false;
|
||||
bool invert_position_;
|
||||
};
|
||||
|
||||
} // namespace tuya
|
||||
|
|
Loading…
Reference in a new issue