mirror of
https://github.com/esphome/esphome.git
synced 2025-01-08 05:41:44 +01:00
Update stepper.cpp to use enum
This commit is contained in:
parent
eccf7860b5
commit
6f91a36275
1 changed files with 1 additions and 1 deletions
|
@ -38,7 +38,7 @@ int32_t Stepper::should_step_() {
|
||||||
// assumes this method is called in a constant interval
|
// assumes this method is called in a constant interval
|
||||||
uint32_t dt = now - this->last_step_;
|
uint32_t dt = now - this->last_step_;
|
||||||
if (dt >= (1 / this->current_speed_) * 1e6f) {
|
if (dt >= (1 / this->current_speed_) * 1e6f) {
|
||||||
int32_t mag = (rotation_ == 0 ? (this->target_position > this->current_position ? 1 : -1) : rotation_);
|
int32_t mag = (rotation_ == ROTATION_BOTH ? (this->target_position > this->current_position ? 1 : -1) : (rotation_ == ROTATION_CW ? 1 : -1));
|
||||||
this->last_step_ = now;
|
this->last_step_ = now;
|
||||||
this->current_position += mag;
|
this->current_position += mag;
|
||||||
return mag;
|
return mag;
|
||||||
|
|
Loading…
Reference in a new issue