6b3ba659a2 | ||
---|---|---|
.. | ||
README.md | ||
current_meter.py | ||
led_rainbow.py | ||
motor_angles.py | ||
motor_cluster.py | ||
motor_profiler.py | ||
motor_wave.py | ||
multiple_motors.py | ||
position_control.py | ||
position_on_velocity_control.py | ||
position_on_velocity_tuning.py | ||
position_tuning.py | ||
reactive_encoder.py | ||
read_sensors.py | ||
sensor_feedback.py | ||
single_motor.py | ||
turn_off_led.py | ||
turn_off_motors.py | ||
velocity_control.py | ||
velocity_tuning.py |
README.md
Motor 2040 Micropython Examples
Motor Examples
Single Motor
Demonstrates how to create a Motor object and control it.
Multiple Motors
Demonstrates how to create multiple Motor objects and control them together.
Motor Cluster
Demonstrates how to create a MotorCluster object to control multiple motors at once.
Motor Wave
An example of applying a wave pattern to a group of motors and the LEDs.
Turn Off Motors
A simple program that turns off the motors.
Encoder Examples
Motor Angles
Demonstrates how to read the angles of Motor 2040's four encoders.
Motor Profiler
A program that profiles the speed of a motor across its PWM duty cycle range using the attached encoder for feedback.
Function Examples
Read Sensors
read_sensors.py TODO Shows how to initialise and read the 6 external and 2 internal sensors of Motor 2040.
Sensor Feedback
sensor_feedback.py TODO Show how to read the 6 external sensors and display their values on the neighbouring LEDs.
Current Meter
current_meter.py TODO An example of how to use Motor 2040's current measuring ability and display the value on the onboard LED bar.
LED Rainbow
Displays a rotating rainbow pattern on the Motor 2040's onboard LED.
Turn Off LED
A simple program that turns off the onboard LED.
Control Examples
Position Control
An example of how to move a motor smoothly between random positions, with the help of it's attached encoder and PID control.
Velocity Control
An example of how to drive a motor smoothly between random speeds, with the help of it's attached encoder and PID control.
Position on Velocity Control
position_on_velocity_control.py
An example of how to move a motor smoothly between random positions, with velocity limits, with the help of it's attached encoder and PID control.
Reactive Encoder
A demonstration of how a motor with an encoder can be used as a programmable rotary encoder for user input, with force-feedback for arbitrary detents and end stops.
Tuning Examples
Position Tuning
A program to aid in the discovery and tuning of motor PID values for position control. It does this by commanding the motor to move repeatedly between two target angles and plots the measured response.
Velocity Tuning
A program to aid in the discovery and tuning of motor PID values for velocity control. It does this by commanding the motor to drive repeatedly between two target speeds and plots the measured response.
Position on Velocity Tuning
position_on_velocity_tuning.py
A program to aid in the discovery and tuning of motor PID values for position on velocity control. It does this by commanding the motor to move repeatedly between two target angles and plots the measured response.