upm  0.2.0
Sensor/Actuator repository for libmraa (v0.6.1)
Public Member Functions

C++ API for Adafruit Servo Shield. More...

Detailed Description

UPM library for the PCA9685 based Adafruit 16-channel servo shield. When 3 or more GWS servos attached results unpredictable. Adafruit do recommend a capacitor be installed on the board which should alleviate the issue. Sizing depends on servos and count.

upm::adafruitss* servos = new upm::adafruitss(6,0x40);
for (;;)
{
cout << "Setting all to 0" << endl;
for (n = 0; n < 16; n++)
servos->servo(n, 1, 0); // GWS Mini Servo = Type 1.
usleep(1000000); // Wait 1 second
cout << "Setting all to 45" << endl;
for (n = 0; n < 16; n++)
servos->servo(n, 1, 45);
usleep(1000000); // Wait 1 second
cout << "Setting all to 90" << endl;
for (n = 0; n < 16; n++)
servos->servo(n, 1, 90);
usleep(1000000); // Wait 1 second
cout << "Setting all to 135" << endl;
for (n = 0; n < 16; n++)
servos->servo(n, 1, 135);
usleep(1000000); // Wait 1 second
cout << "Setting all to 180" << endl;
for (n = 0; n < 16; n++)
servos->servo(n, 1, 160);
usleep(2000000); // Wait 1 second
}

Public Member Functions

 adafruitss (int bus, int i2c_address)
 
int update (void)
 
void setPWMFreq (float freq)
 
void servo (uint8_t port, uint8_t servo_type, uint16_t degrees)
 

Constructor & Destructor Documentation

adafruitss ( int  bus,
int  i2c_address 
)

Creates a adafruitss object

Parameters
busnumber of used i2c bus
i2c_addressaddress of servo controller on i2c bus

Here is the call graph for this function:

Member Function Documentation

void setPWMFreq ( float  freq)

Sets the frequency for your servos

Parameters
freqthe frequency at which the servos operate

Here is the caller graph for this function:

void servo ( uint8_t  port,
uint8_t  servo_type,
uint16_t  degrees 
)

Moves the one of the servos to the specified angle

Parameters
portport of the servo on the controller (servo number)
servo_typecan be 0 = standard 1ms to 2ms, 1 = extended 0.6ms to 2.4ms, or 2 = extended 0.8ms to 2.2ms
degreesangle to set the servo to

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