ME 305
Lab 3

Introduction

This lab looks at how to control DC motors through pulse width modulation by creating task files that can directly interface with the motor and encoder. A variety of commands are implemented such as finding the encoder position, velocity, setting the motor duty cycle, collecting data, and setting up a testing interface. See the link below for the code respository to this lab. You can find explainations of these files in the File Info tab above. Code repository for this lab: https://bitbucket.org/rdeanr/me305/src/master/Lab3/

User Task

Implemented as a finite state machine, this file handles all user inputs and sets flags or shares variables that can interact with all other tasks. The state transition diagram can be seen below.

Encoder Task

This task directly interacts with the encoder and then alters flags and shared variable values to be sent back the user task and interpretted. It can compute such quantities as position, change in position, change in time, and zeroing the encoder. The state transition diagram can be seen below.

Motor Task

This task directly interacts with the motors and then alters flag values to be sent back to the user task. Receiving input from the user task, it directly controls the duty cycle of each motor. The state transition diagram can be seen below.

Task Diagram

This diagram shows the interaction between the task files and which variables are shared between them.

Results

The plot below shows the position output of the encoder over a period of 30 seconds using the data collection feature inherent to this program. The position was changed by manually rotating the encoder.

The plot below compares the encoder velocity to the theoretical velocity based on duty cycle. We can see how the error increases with an increase in speed in both directions. This could be cause the motor is approaching a speed that too fast for the frequency of updates between tasks and therefore provides a different that the theoretical output.