C driver for the NXP Semiconductors PCA9685 16-channel 12-bit PWM I2C-bus LED Controller (datasheet)
- Tests with greatest and theft
- Bring your own I2C and hardware interface libraries
- Minimal dependencies
- Strict, full implementation of manufacturer specifications
- A clean, user-friendly interface for application developers and library writers
- No tight coupling to a specific I2C library or hardware platform (Linux I2C, various Pi/Arduino libraries, etc.)
- No tight coupling to a specific application (LEDs vs. servos, etc.)
- Modern C (C11) development practices, like unit tests, property-based tests, modern CMake (3.13), etc.
Option 1: add it as a git submodule like this:
$ git clone git@github.com:carlodicelico/libpca9685.git vendor/libpca9685
Then, add it in your CMakeLists.txt
and link your library or executable:
add_subdirectory(vendor/libpca9685)
target_link_libraries(my_lib pca9685)
Option 2: install it like this:
$ git clone git@github.com:carlodicelico/libpca9685.git && cd libpca9685
$ cmake -DCMAKE_BUILD_TYPE=Release -DTESTING=OFF -G "Unix Makefiles" -S . -B cmake-build-release
$ cd cmake-build-release
$ make && sudo make install
Then, add it in your CMakeLists.txt
and link your library or executable:
find_library(PCA9506 pca9685)
target_link_libraries(my_lib ${PCA9685})
Example application code might look something like this:
#include "libpca9685.h"
// Application (not library) dependencies
#include "pigpio.h"
#include <zconf.h>
#define I2C_BUS 1
#define I2C_BUS_ADDRESS 0x40
#define I2C_FLAGS 0
// ALL management of the I2C bus itself is your application's responsibility!
static int pi, handle;
// Set up an I2C reader callback
static uint8_t i2c_read_byte_cb(pca9685_s *driver, uint8_t r) {
// This is pigpio's function we're wrapping here, but it could be any other library, as well
int result = i2c_read_byte_data(pi, (uint8_t)servo_master_handle, r);
// You can add information to the driver struct's status field if you like
driver->status = (result >= 0) ? "ok" : pigpio_error(result);
return (uint8_t)result;
}
static uint8_t i2c_write_byte_cb(pca9685_s *driver, uint8_t r, uint8_t d) {
// This is pigpio's function we're wrapping here, but it could be any other library, as well
int result = i2c_write_byte_data(pi, (uint8_t)servo_master_handle, r, d);
// You can add information to the driver struct's status field if you like
driver->status = (result >= 0) ? "ok" : pigpio_error(result);
return (uint8_t)result;
}
int main(int argc, char **argv) {
pi = pigpio_start(NULL, NULL);
char *pi_status = (pi >= 0) ? "ok" : pigpio_error(pi);
handle = i2c_open(pi, I2C_BUS, I2C_BUS_ADDRESS, I2C_FLAGS);
char *handle_status = (handle >= 0) ? "ok" : pigpio_error(handle);
printf("\nMain\n====\n: %d");
printf("\nPIGPIO Status: %s", pi_status);
printf("\nI2C Handle Status: %s\n", handle_status);
printf("Initializing driver...");
// Initialize your driver struct—also does test read and write operations
pca9685_s my_driver = pca9685(.bus_reader=bus_byte_reader, .bus_writer=bus_byte_writer);
printf("%s\n", my_driver.status);
// Set the chip's frequency to 300Hz
my_driver.set_frequency(&my_driver, 300);
// Set up a basic timer for example purposes (10 minutes, in seconds)
int simple_timer = 600;
// Flash all LEDs on and off continuously until the timer runs out
while(simple_timer > 0) {
my_driver.channel_on(&my_driver, -1);
sleep(1);
my_driver.channel_off(&my_driver, -1);
sleep(1);
simple_timer--;
}
// Do some other stuff here...
// You can attempt an orderly shutdown
my_driver.soft_reset(&my_driver);
// Or maybe just restore all defaults
my_driver.hard_reset(&my_driver);
// pigpio-specific...
int close = i2c_close(pi, (uint)handle);
char *close_message = (close == PI_BAD_HANDLE) ? "PI_BAD_HANDLE" : "CLOSED";
printf("\nClose result: %s\n", close_message);
pigpio_stop(pi);
if(close == PI_BAD_HANDLE) return 1;
return 0;
}
See also the included examples.
Contributions are welcome! Check out CONTRIBUTING for instructions.
This library follows the principles of Semantic Versioning. You can find each new release, along with the changelog, in the CHANGELOG.
During initial development, the major version will be 0 (e.g., 0.x.y
), which indicates the code does not yet have a
stable API. Once we hit 1.0.0
, we will make every effort to maintain a backwards compatible API and use the MAJOR,
MINOR, and PATCH versions on each release to indicate any incompatibilities.
This code is released under the MIT License. Please see LICENSE for more details.