1
0
mirror of https://github.com/esphome/esphome.git synced 2025-03-26 12:38:16 +00:00

Update mcp4461_output.cpp

This commit is contained in:
Oliver Kleinecke 2025-02-09 18:53:47 +01:00 committed by GitHub
parent 0b1a5fdeb8
commit 59ecddfe2a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -31,14 +31,16 @@ void Mcp4461Wiper::disable_wiper() {
}
void Mcp4461Wiper::increase_wiper() {
if (this->state_ == 0.256) { return; }
if (this->parent_->increase_wiper_(this->wiper_)) {
this->state_ = this->state_ + 1.0;
this->state_ = this->state_ + 0.001;
}
}
void Mcp4461Wiper::decrease_wiper() {
if (this->state_ == 0.000) { return; }
if (this->parent_->decrease_wiper_(this->wiper_)) {
this->state_ = this->state_ - 1.0;
this->state_ = this->state_ - 0.001;
}
}