ev3devices
– EV3 Motors and Sensors¶
LEGO® MINDSTORMS® EV3 motors and sensors.
Motors¶
-
class
Motor
(port, direction=Direction.CLOCKWISE, gears=None)¶ LEGO® MINDSTORMS® EV3 Medium or Large Motor.
Element 99455/6148292 or 95658/6148278, contained in:
- 31313: LEGO® MINDSTORMS® EV3 (2013)
- 45544: LEGO® MINDSTORMS® Education EV3 Core Set (2013)
- 45503 or 45502: Separate part (2013)
Parameters: - port (Port) – Port to which the motor is connected.
- direction (Direction) – Positive speed direction (Default: Direction.CLOCKWISE).
- gears (list) –
List of gears linked to the motor (Default:
None
).For example:
[12, 36]
represents a gear train with a 12-tooth and a 36-tooth gear. See ratio for illustrated examples.Use a list of lists for multiple gear trains, such as
[[12, 36], [20, 16, 40]]
.When you specify a gear train, all motor commands and settings are automatically adjusted to account for the resulting gear ratio. The motor direction remains unchanged, no matter how many gears you choose.
For example, with
gears=[12, 36]
, the gear ratio is 3, which means that the output is mechanically slowed down by a factor of 3. To compensate, the motor will automatically turn 3 times as fast and 3 times as far when you give a motor command. So when you chooserun_angle(200, 90)
, your mechanism output simply turns at 200 deg/s for 90 degrees.The same holds for the documentation below: When it states “motor angle” or “motor speed”, you can read this as “mechanism output angle” and “mechanism output speed”, and so on, as the gear ratio is automatically accounted for.
The
gears
setting is only available for motors with rotation sensors.
Example:
# Initialize a motor (by default this means clockwise, without any gears). example_motor = Motor(Port.A) # Initialize a motor where positive speed values should go counterclockwise right_motor = Motor(Port.B, Direction.COUNTERCLOCKWISE) # Initialize a motor with a gear train robot_arm = Motor(Port.C, Direction.CLOCKWISE, [12, 36])
Methods for motors without rotation sensors
-
dc
(duty)¶ Set the duty cycle of the motor.
Parameters: duty (percentage: %) – The duty cycle (-100.0 to 100). Example:
# Set the motor duty cycle to 75%. example_motor.duty(75)
Methods for motors with rotation sensors
-
angle
()¶ Get the rotation angle of the motor.
Returns: Motor angle. Return type: angle: deg
-
reset_angle
(angle)¶ Reset the accumulated rotation angle of the motor.
Parameters: angle (angle: deg) – Value to which the angle should be reset.
-
speed
()¶ Get the speed (angular velocity) of the motor.
Returns: Motor speed. Return type: rotational speed: deg/s
-
stop
(stop_type=Stop.COAST)¶ Stop the motor.
Parameters: stop_type (Stop) – Whether to coast, brake, or hold (Default: Stop.COAST
).
-
run
(speed)¶ Keep the motor running at a constant speed (angular velocity).
The motor will accelerate towards the requested speed and the duty cycle is automatically adjusted to keep the speed constant, even under some load. This continues in the background until you give the motor a new command or the program stops.
Parameters: speed (rotational speed: deg/s) – Speed of the motor.
-
run_time
(speed, time, stop_type=Stop.COAST, wait=True)¶ Run the motor at a constant speed (angular velocity) for a given amount of time.
The motor will accelerate towards the requested speed and the duty cycle is automatically adjusted to keep the speed constant, even under some load. It begins to decelerate just in time to reach standstill after the specified duration.
Parameters: - speed (rotational speed: deg/s) – Speed of the motor.
- time (time: ms) – Duration of the maneuver.
- stop_type (Stop) – Whether to coast, brake, or hold after coming to a standstill (Default:
Stop.COAST
). - wait (bool) – Wait for the maneuver to complete before continuing with the rest of the program (Default:
True
). This means that your program waits for the specifiedtime
.
-
run_angle
(speed, rotation_angle, stop_type=Stop.COAST, wait=True)¶ Run the motor at a constant speed (angular velocity) by a given angle.
The motor will accelerate towards the requested speed and the duty cycle is automatically adjusted to keep the speed constant, even under some load. It begins to decelerate just in time so that it comes to a standstill after traversing the given angle.
Parameters: - speed (rotational speed: deg/s) – Speed of the motor.
- rotation_angle (angle: deg) – Angle by which the motor should rotate.
- stop_type (Stop) – Whether to coast, brake, or hold after coming to a standstill (Default:
Stop.COAST
). - wait (bool) – Wait for the maneuver to complete before continuing with the rest of the program (Default:
True
). This means that your program waits until the motor has traveled precisely the requested angle.
-
run_target
(speed, target_angle, stop_type=Stop.COAST, wait=True)¶ Run the motor at a constant speed (angular velocity) towards a given target angle.
The motor will accelerate towards the requested speed and the duty cycle is automatically adjusted to keep the speed constant, even under some load. It begins to decelerate just in time so that it comes to a standstill at the given target angle.
The direction of rotation is automatically selected based on the target angle.
Parameters: - speed (rotational speed: deg/s) – Absolute speed of the motor. The direction will be automatically selected based on the target angle: it makes no difference if you specify a positive or negative speed.
- target_angle (angle: deg) – Target angle that the motor should rotate to, regardless of its current angle.
- stop_type (Stop) – Whether to coast, brake, or hold after coming to a standstill (Default:
Stop.COAST
). - wait (bool) – Wait for the maneuver to complete before continuing with the rest of the program (Default:
True
). This means that your program waits until the motor has reached the target angle.
Advanced methods for motors with rotation sensors
-
track_target
(target_angle)¶ Track a target angle that varies in time.
This function is quite similar to
run_target()
, but speed and acceleration settings are ignored: it will move to the target angle as fast as possible. Instead, you adjust speed and acceleration by choosing how fast or slow you vary thetarget_angle
.This method is useful in fast loops where the motor target changes continuously.
Parameters: target_angle (angle: deg) – Target angle that the motor should rotate to. Example:
# Initialize motor and timer from math import sin motor = Motor(Port.A) watch = StopWatch() amplitude = 90 # In a fast loop, compute a reference angle # and make the motor track it. while True: # Get the time in seconds seconds = watch.time()/1000 # Compute a reference angle. This produces # a sine wave that makes the motor move # smoothly between -90 and +90 degrees. angle_now = sin(seconds)*amplitude # Make the motor track the given angle motor.track_target(angle_now)
-
stalled
()¶ Check whether the motor is currently stalled.
A motor is stalled when it cannot move even with the maximum torque. For example, when something is blocking the motor or your mechanism simply cannot turn any further.
Specifically, the motor is stalled when the duty cycle computed by the PID controllers has reached the maximum (so
duty
=duty_limit
) and still the motor cannot reach a minimal speed (sospeed
<stall_speed
) for a period of at leaststall_time
.You can change the
duty_limit
,stall_speed
, andstall_time
settings usingset_dc_settings()
andset_pid_settings()
in order to change the sensitivity to being stalled.Returns: True
if the motor is stalled,False
if it is not.Return type: bool
-
run_until_stalled
(speed, stop_type=Stop.COAST, duty_limit=default)¶ Run the motor at a constant speed (angular velocity) until it stalls. The motor is considered stalled when it cannot move even with the maximum torque. See
stalled()
for a more precise definition.The
duty_limit
argument lets you temporarily limit the motor torque during this maneuver. This is useful to avoid applying the full motor torque to a geared or lever mechanism.Parameters: - speed (rotational speed: deg/s) – Speed of the motor.
- stop_type (Stop) – Whether to coast, brake, or hold after coming to a standstill (Default:
Stop.COAST
). - duty_limit (percentage: %) – Relative torque limit. This limit works just like
set_dc_settings()
, but in this case the limit is temporary: it returns to its previous value after completing this command.
-
set_dc_settings
(duty_limit, duty_offset)¶ Configure the settings to adjust the behavior of the
dc()
command. This also affects all of therun
commands, which use thedc()
method in the background.Parameters: - duty_limit (percentage: %) – Relative torque limit during subsequent motor commands. This sets the maximum duty cycle that is applied during any subsequent motor command. This reduces the maximum torque output to a percentage of the absolute maximum stall torque. This is useful to avoid applying the full motor torque to a geared or lever mechanism, or to prevent your LEGO® train from unintentionally going at full speed. (Default: 100).
- duty_offset (percentage: %) – Minimum duty cycle given when you use
dc()
. This adds a small feed forward torque so that your motor will move even for very low duty cycle values, which can be useful when you create your own feedback controllers (Default: 0).
-
set_run_settings
(max_speed, acceleration)¶ Configure the maximum speed and acceleration/deceleration of the motor for all run commands.
This applies to the
run
,run_time
,run_angle
,run_target
, orrun_until_stalled
commands you give the motor. See also the default parameters for each motor.Parameters: - max_speed (rotational speed: deg/s) – Maximum speed of the motor during a motor command.
- acceleration (rotational acceleration: deg/s/s) – Acceleration towards the target speed and deceleration towards standstill. This should be a positive value. The motor will automatically change the sign to decelerate as needed.
Example:
# Set the maximum speed to 200 deg/s and acceleration to 400 deg/s/s. example_motor.set_run_settings(200, 400) # Make the motor run for 5 seconds. Even though the speed argument is 300 # deg/s in this example, the motor will move at only 200 deg/s because of # the settings above. example_motor.run_time(300, 5000)
-
set_pid_settings
(kp, ki, kd, tight_loop_limit, angle_tolerance, speed_tolerance, stall_speed, stall_time)¶ Configure the settings of the position and speed controllers. See also pid and the default parameters for each motor.
Parameters: - kp (int) – Proportional position (and integral speed) control constant.
- ki (int) – Integral position control constant.
- kd (int) – Derivative position (and proportional speed) control constant.
- tight_loop_limit (time: ms) – If you execute any of the
run
commands within this interval after starting the previous command, the controllers assume that you want to control the speed directly. This means that it will ignore the acceleration setting and immediately begin tracking the speed you give in therun
command. This is useful in a fast loop, where you usually want the motors to respond quickly rather than accelerate smoothly, for example with a line-following robot. - angle_tolerance (angle: deg) – Allowed deviation from the target angle before motion is considered complete.
- speed_tolerance (rotational speed: deg/s) – Allowed deviation from zero speed before motion is considered complete.
- stall_speed (rotational speed: deg/s) – See
stalled()
. - stall_time (time: ms) – See
stalled()
.
Sensors¶
Touch Sensor¶
-
class
TouchSensor
(port)¶ LEGO® MINDSTORMS® EV3 Touch Sensor.
Element 95648/6138404, contained in:
- 31313: LEGO® MINDSTORMS® EV3 (2013)
- 45544: LEGO® MINDSTORMS® Education EV3 Core Set (2013)
- 45507: Separate part (2013)
Parameters: port (Port) – Port to which the sensor is connected. -
pressed
()¶ Check if the sensor is pressed.
Returns: True
if the sensor is pressed,False
if it is not pressed.Return type: bool
Color Sensor¶
-
class
ColorSensor
(port)¶ LEGO® MINDSTORMS® EV3 Color Sensor.
Element 95650/6128869, contained in:
- 31313: LEGO® MINDSTORMS® EV3 (2013)
- 45544: LEGO® MINDSTORMS® Education EV3 Core Set (2013)
- 45506: Separate part (2013)
Parameters: port (Port) – Port to which the sensor is connected. -
color
()¶ Measure the color of a surface.
Returns: Color.BLACK
,Color.BLUE
,Color.GREEN
,Color.YELLOW
,Color.RED
,Color.WHITE
,Color.BROWN
orNone
.Return type: Color
, orNone
if no color is detected.
-
ambient
()¶ Measure the ambient light intensity.
Returns: Ambient light intensity, ranging from 0 (dark) to 100 (bright). Return type: percentage: %
-
reflection
()¶ Measure the reflection of a surface using a red light.
Returns: Reflection, ranging from 0 (no reflection) to 100 (high reflection). Return type: percentage: %
-
rgb
()¶ Measure the reflection of a surface using a red, green, and then a blue light.
Returns: Reflection for red, green, and blue light, each ranging from 0.0 (no reflection) to 100.0 (high reflection). Return type: tuple of three percentages
Infrared Sensor and Beacon¶
-
class
InfraredSensor
(port)¶ LEGO® MINDSTORMS® EV3 Infrared Sensor and Beacon.
Element 95654/6132629 and 72156/6127283, contained in:
- 31313: LEGO® MINDSTORMS® EV3 (2013)
- 45509 and 45508: Separate parts (2013)
Parameters: port (Port) – Port to which the sensor is connected. -
distance
()¶ Measure the relative distance between the sensor and an object using infrared light.
Returns: Relative distance ranging from 0 (closest) to 100 (farthest). Return type: relative distance: %
-
beacon
(channel)¶ Measure the relative distance and angle between the remote and the infrared sensor.
Parameters: channel (int) – Channel number of the remote. Returns: Tuple of relative distance (0 to 100) and approximate angle (-75 to 75 degrees) between remote and infrared sensor. Return type: (relative distance: %, angle: deg) or ( None
,None
) if no remote is detected.
Check which buttons on the infrared remote are pressed.
Parameters: channel (int) – Channel number of the remote. Returns: List of pressed buttons on the remote on the specified channel. Return type: List of Button
Ultrasonic Sensor¶
-
class
UltrasonicSensor
(port)¶ LEGO® MINDSTORMS® EV3 Ultrasonic Sensor.
Element 95652/6138403, contained in:
- 45544: LEGO® MINDSTORMS® Education EV3 Core Set (2013)
- 45504: Separate part (2013)
Parameters: port (Port) – Port to which the sensor is connected. -
distance
(silent=False)¶ Measure the distance between the sensor and an object using ultrasonic sound waves.
Parameters: silent (bool) – Choose
True
to turn the sensor off after measuring the distance.Choose
False
to leave the sensor on (Default).When you choose
silent=True
, the sensor does not emit sounds waves except when taking the measurement. This reduces interference with other ultrasonic sensors, but turning the sensor off takes approximately 300 ms each time.Returns: Distance (millimeters). Return type: distance: mm
-
presence
()¶ Check for the presence of other ultrasonic sensors by detecting ultrasonic sounds.
If the other ultrasonic sensor is operating in silent mode, you can only detect the presence of that sensor while it is taking a measurement.
Returns: True
if ultrasonic sounds are detected,False
if not.Return type: bool
Gyroscopic Sensor¶
-
class
GyroSensor
(port, direction=Direction.CLOCKWISE)¶ LEGO® MINDSTORMS® EV3 Gyro Sensor.
Element 99380/6138411, contained in:
- 45544: LEGO® MINDSTORMS® Education EV3 Core Set (2013)
- 45505: Separate part (2013)
Parameters: -
speed
()¶ Get the speed (angular velocity) of the sensor.
Returns: Sensor angular velocity. Return type: rotational speed: deg/s
-
angle
()¶ Get the accumulated angle of the sensor.
Returns: Rotation angle. Return type: angle: deg
-
reset_angle
(angle)¶ Set the rotation angle of the sensor to a desired value.
Parameters: angle (angle: deg) – Value to which the angle should be reset.