mirror of
https://github.com/esphome/esphome.git
synced 2024-11-07 09:31:10 +01:00
Clamp rotary_encoder restored value to min and max (#3184)
This commit is contained in:
parent
335512e232
commit
ad6c5ff11d
@ -138,6 +138,8 @@ void RotaryEncoderSensor::setup() {
|
|||||||
initial_value = 0;
|
initial_value = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
initial_value = clamp(initial_value, this->store_.min_value, this->store_.max_value);
|
||||||
|
|
||||||
this->store_.counter = initial_value;
|
this->store_.counter = initial_value;
|
||||||
this->store_.last_read = initial_value;
|
this->store_.last_read = initial_value;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user