Skip to content

Linear Actuators and Servos

Alex Schendel edited this page Dec 26, 2020 · 1 revision

These are effectively motors that: rather than turning a rotor, extend or retract a shaft. Inappropriate jokes aside, it can be very useful to convert this rotational work into linear work. Presently, we are using linear servos to raise and lower our digging system.

Linear Actuator

Linear Actuators are simpler but have less functionality. They function similar to DC motors: provide a positive voltage and it will move one way, provide a negative voltage and it will move the other way. The speed that it moves depends on the magnitude of the voltage. As such, it can be difficult to accurately control linear actuators. This difficulty in control is the reason why linear actuators often contain one particular sensor: a potentiometer. A potentiometer is a resistor that changes value basically. Implemented with the actuator, it allows the user to determine exactly how much the actuator is extended by reading the resistance.

Linear Servo

Linear Servos are linear actuators that have their own control board implemented. They function similar to servos: servos can control the angle of the rotor given a PWM signal. Linear servos can control the position of the actuator given a PWM signal, so sending the minimum PWM signal will fully extend the actuator and sending the maximum PWM signal will fully retract it. This makes it far simpler to control the actuator in code using a micro-controller because we no longer need to track the position of the actuator ourselves, but rather, just tell the servo to move the actuator to a certain position whenever we need it and then forget about it until we need it again.

Clone this wiki locally