Arduino DRV8833 Motor Controller Library
0.2
An object for the control of motors using the TI DRV8833 dual H-bridge motor driver IC
|
An object for the control of motors using the TI DRV8833 dual H-bridge motor driver IC. More...
Public Member Functions | |
Motor () | |
Motor (int intIn1, int intIn2) | |
void | setMotorSpeed (int intIn) |
int | getMotorSpeed () |
bool | isMotorRunning () |
void | stopMotor () |
void | startMotor () |
This object encapsulates methods for the control of motors using TI DRV8833 dual H-bridge motor driver IC. This implementation was created using the Pololu carrier board available at http://www.pololu.com/catalog/product/2130. This object encapsulates methods to set the speed of a motor, as well as methods to start and stop the motor.
Motor::Motor | ( | ) |
A default constructor requiring no arguments. If this constructor is used, then pins six and nine are used for the motor controller.
Motor::Motor | ( | int | intIn1, |
int | intIn2 | ||
) |
A constructor requiring inputs for the pins to be used for the motor controller.
intIn1 | an integer value representing the first pin used to connect to the motor controller |
intIn2 | an integer value representing the second pin used to connect to the motor controller |
int Motor::getMotorSpeed | ( | ) |
This method returns the value of the current speed for a Motor object. This value cannot be used to authoritatively determine whether or not the motor is running. To authoritatively determine whether or not the motor is running, call isMotorRunning().
bool Motor::isMotorRunning | ( | ) |
This method returns the current run state of the motor(true is running, false is not running).
void Motor::setMotorSpeed | ( | int | intIn | ) |
A method to set the speed of the motor. This method does not start or stop the motor, however, if the motor is already running it will "re-start" the motor at the speed specified.
intIn | an integer value between -100 and 100(inclusive) representing the speed at which the motor will run. This value roughly equates to the PWM duty cycle(ie, zero is off and 100 is full speed), with negative and positive values having opposite rotations. |
void Motor::startMotor | ( | ) |
This method starts the motor, which will run in the direction and speed determined by the object's speed property. To get the current motor speed call getMotorSpeed(). To set the motor's speed, call setMotorSpeed(int).
void Motor::stopMotor | ( | ) |
This method stops the motor. Specifically, it sets both output pins low.