From 0c7b644f268e2ffe248ead58f2a6d5dcb272cfc5 Mon Sep 17 00:00:00 2001 From: Oliver Kleinecke Date: Sun, 9 Feb 2025 18:54:19 +0100 Subject: [PATCH] Update mcp4461_output.cpp --- esphome/components/mcp4461/output/mcp4461_output.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/esphome/components/mcp4461/output/mcp4461_output.cpp b/esphome/components/mcp4461/output/mcp4461_output.cpp index 8362b4bb59..1d53d3d659 100644 --- a/esphome/components/mcp4461/output/mcp4461_output.cpp +++ b/esphome/components/mcp4461/output/mcp4461_output.cpp @@ -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; }