wpi-32u4-library
Public Member Functions
Servo32U4Pin12 Class Reference

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)
 
- Public Member Functions inherited from Servo32U4Base
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

- Protected Attributes inherited from Servo32U4Base
uint16_t usMin = 1000
 
uint16_t usMax = 2000
 
uint8_t feedbackPin = -1
 
bool isAttached = false
 

Detailed Description

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.

Member Function Documentation

◆ attach()

void Servo32U4Pin12::attach ( void  )
virtual

Implements Servo32U4Base.

Definition at line 135 of file servo32u4.cpp.

References Servo32U4Base::isAttached.

Referenced by writeMicroseconds().

◆ detach()

void Servo32U4Pin12::detach ( void  )
virtual

Implements Servo32U4Base.

Definition at line 149 of file servo32u4.cpp.

References Servo32U4Base::isAttached.

◆ writeMicroseconds()

void Servo32U4Pin12::writeMicroseconds ( uint16_t  microseconds)
virtual

The documentation for this class was generated from the following files: