wpi-32u4-library
|
A servo class to control a servo on pin 12. More...
#include <servo32u4.h>
Inherits Servo32U4Base.
Public Member Functions | |
void | attach (void) |
void | detach (void) |
void | writeMicroseconds (uint16_t microseconds) |
![]() | |
virtual void | attach (void)=0 |
virtual void | detach (void)=0 |
virtual void | writeMicroseconds (uint16_t microseconds)=0 |
uint16_t | setMinMaxMicroseconds (uint16_t min, uint16_t max) |
Additional Inherited Members | |
![]() | |
uint16_t | usMin = 1000 |
uint16_t | usMax = 2000 |
uint8_t | feedbackPin = -1 |
bool | isAttached = false |
A servo class to control a servo on pin 12.
Servo32U4Pin12 uses output compare on Timer4 to control the pulse to the servo. _In Chassis::init(), The 8-bit Timer4 is set up with a pre-scaler of 1024, TOP of 249 + 1 => 16 ms interval.
YOU MUST CALL Chasssis::init() IN setup() FOR THIS TO WORK, AND YOU MUST CALL Chassis::init() BEFORE YOU CALL attach()
^OCR4D controls the pulse on pin 12 – this servo must be on pin 12!
DO NOT USE IN CONJUNCTION WITH Servo32U4Pin12
Defaults to a range of 1000 - 2000 us, but can be customized.
Note that because we're using an 8-bit timer, resolution is only 64 us.
Definition at line 148 of file servo32u4.h.
|
virtual |
Implements Servo32U4Base.
Definition at line 135 of file servo32u4.cpp.
References Servo32U4Base::isAttached.
Referenced by writeMicroseconds().
|
virtual |
Implements Servo32U4Base.
Definition at line 149 of file servo32u4.cpp.
References Servo32U4Base::isAttached.
|
virtual |
Implements Servo32U4Base.
Definition at line 162 of file servo32u4.cpp.
References attach(), Servo32U4Base::isAttached, Servo32U4Base::usMax, and Servo32U4Base::usMin.