self.machine.steppers.*¶
-
class
mpf.devices.stepper.Stepper(*args, **kwargs)¶ Bases:
mpf.core.system_wide_device.SystemWideDeviceRepresents an stepper motor based axis in a pinball machine.
Args: Same as the Device parent class.
Accessing steppers in code
The device collection which contains the steppers in your machine is available via
self.machine.steppers. For example, to access one called “foo”, you would useself.machine.steppers.foo. You can also access steppers in dictionary form, e.g.self.machine.steppers['foo'].You can also get devices by tag or hardware number. See the DeviceCollection documentation for details.
Methods & Attributes
Steppers have the following methods & attributes available. Note that methods & attributes inherited from base classes are not included here.
-
current_position()¶ Return position in user units (vs microsteps).
-
home()¶ Home an axis, resetting 0 position.
-
move_abs_pos(position)¶ Move servo to position.
-
move_rel_pos(delta)¶ Move axis to a relative position.
-
move_vel_mode(velocity)¶ Move at a specific velocity indefinitely.
-
raise_config_error(msg, error_no, *, context=None)¶ Raise a ConfigFileError exception.
-
reset(**kwargs)¶ Stop Motor.
-
stop()¶ Stop motor.
-