diff --git a/esphome/components/stepper/__init__.py b/esphome/components/stepper/__init__.py index 0c997fc2b6..e666950ce7 100644 --- a/esphome/components/stepper/__init__.py +++ b/esphome/components/stepper/__init__.py @@ -71,11 +71,8 @@ def validate_speed(value): Rotation = stepper_ns.enum("Rotation") ROTATIONS = { "BOTH": Rotation.ROTATION_BOTH, - "CW": Rotation.ROTATION_CW, "CLOCKWISE": Rotation.ROTATION_CW, - "CCW": Rotation.ROTATION_CCW, "COUNTERCLOCKWISE": Rotation.ROTATION_CCW, - "COUNTER-CLOCKWISE": Rotation.ROTATION_CCW, } STEPPER_SCHEMA = cv.Schema(