mirror of
https://github.com/esphome/esphome.git
synced 2024-11-12 18:27:46 +01:00
fix servo warning (#1591)
This commit is contained in:
parent
c17624adab
commit
2b60b0f1fa
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ void Servo::loop() {
|
|||
if (this->transition_length_) {
|
||||
float new_value;
|
||||
float travel_diff = this->target_value_ - this->source_value_;
|
||||
uint32_t target_runtime = target_runtime = abs((int) ((travel_diff) * this->transition_length_ * 1.0f / 2.0f));
|
||||
uint32_t target_runtime = abs((int) ((travel_diff) * this->transition_length_ * 1.0f / 2.0f));
|
||||
uint32_t current_runtime = millis() - this->start_millis_;
|
||||
float percentage_run = current_runtime * 1.0f / target_runtime * 1.0f;
|
||||
if (percentage_run > 1.0f) {
|
||||
|
|
Loading…
Reference in a new issue