1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-17 10:42:21 +01:00

Update mcp4461_output.cpp

This commit is contained in:
Oliver Kleinecke
2025-02-09 18:54:19 +01:00
committed by GitHub
parent 59ecddfe2a
commit 0c7b644f26

View File

@@ -31,14 +31,12 @@ 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_ + 0.001;
}
}
void Mcp4461Wiper::decrease_wiper() {
if (this->state_ == 0.000) { return; }
if (this->parent_->decrease_wiper_(this->wiper_)) {
this->state_ = this->state_ - 0.001;
}