#led-driver #pwm #driver #servo #led #led-controller #embedded-hal-driver

no-std pwm-pca9685

Platform-agnostic Rust driver for the PCA9685 I2C 16-channel, 12-bit PWM/Servo/LED controller

7 releases (1 stable)

1.0.0 Apr 5, 2024
0.3.1 Jul 14, 2021
0.3.0 Sep 3, 2020
0.2.0 Dec 10, 2019
0.1.0 Nov 26, 2018

#50 in Embedded development

Download history 75/week @ 2023-12-22 23/week @ 2023-12-29 162/week @ 2024-01-05 86/week @ 2024-01-12 59/week @ 2024-01-19 65/week @ 2024-01-26 88/week @ 2024-02-02 82/week @ 2024-02-09 111/week @ 2024-02-16 243/week @ 2024-02-23 452/week @ 2024-03-01 206/week @ 2024-03-08 149/week @ 2024-03-15 225/week @ 2024-03-22 182/week @ 2024-03-29 273/week @ 2024-04-05

910 downloads per month
Used in 4 crates (3 directly)

MIT/Apache

55KB
814 lines

Rust PCA9685 16-channel 12-bit I2C PWM/Servo/LED driver

crates.io Docs Minimum Supported Rust Version Build Status Coverage Status

This is a platform agnostic Rust driver for the PCA9685 PWM/Servo/LED controller, based on the embedded-hal traits. This driver also supports the embedded-hal-async traits if the async feature is enabled.

This driver allows you to:

  • Enable/disable the device. See: enable().
  • Set the on and off counter for a channel or all of them. See: set_channel_on().
  • Set the on and off counters for a channel or all of them at once. See: set_channel_on_off().
  • Set a channel to be always on or off. See: set_channel_full_on().
  • Set the on and off counters for each channel at once. See: set_all_on_off().
  • Set the on and off counters and the always-on/always-off flags for each channel at once. See: set_all_channels().
  • Set the prescale value. See: set_prescale().
  • Select the output logic state direct or inverted. See: set_output_logic_state().
  • Set when the outputs change. See: set_output_change_behavior().
  • Set the output driver configuration. See: set_output_driver().
  • Set the output value when outputs are disabled. See: `set_disabled_output_value()]
  • Select the EXTCLK pin as clock source. See: use_external_clock().
  • Enable/disable a programmable address. See: enable_programmable_address().
  • Set a programmable address. See: set_programmable_address().
  • Change the address used by the driver. See: set_address().
  • Restart keeping the PWM register contents. See: enable_restart_and_disable().

Introductory blog post

The device

This device is an I2C-bus controlled 16-channel, 12-bit PWM controller. Its outputs can be used to control servo motors or LEDs, for example.

Each channel output has its own 12-bit resolution (4096 steps) fixed frequency individual PWM controller that operates at a programmable frequency from a typical of 24 Hz to 1526 Hz with a duty cycle that is adjustable from 0% to 100%. All outputs are set to the same PWM frequency.

Each channel output can be off or on (no PWM control), or set at its individual PWM controller value. The output driver is programmed to be either open-drain with a 25 mA current sink capability at 5 V or totem pole with a 25 mA sink, 10 mA source capability at 5 V. The PCA9685 operates with a supply voltage range of 2.3 V to 5.5 V and the inputs and outputs are 5.5 V tolerant. LEDs can be directly connected to the outputs (up to 25 mA, 5.5 V) or controlled with external drivers and a minimum amount of discrete components for larger current, higher voltage LEDs, etc. It is optimized to be used as an LED controller for Red/Green/Blue/Amber (RGBA) color backlighting applications.

Datasheet: PCA9685

Usage

Please find additional examples in this repository: driver-examples

To use this driver, import this crate and an embedded_hal implementation, then instantiate the appropriate device.

In this example we set a PWM frequency of 60 Hz and a duty cycle of 50% on channel 0.

use linux_embedded_hal::I2cdev;
use pwm_pca9685::{Address, Channel, Pca9685};

fn main() {
    let dev = I2cdev::new("/dev/i2c-1").unwrap();
    let address = Address::default();
    let mut pwm = Pca9685::new(dev, address).unwrap();

    // This corresponds to a frequency of 60 Hz.
    pwm.set_prescale(100).unwrap();

    // It is necessary to enable the device.
    pwm.enable().unwrap();

    // Turn on channel 0 at 0.
    pwm.set_channel_on(Channel::C0, 0).unwrap();

    // Turn off channel 0 at 2047, which is 50% in
    // the range `[0..4095]`.
    pwm.set_channel_off(Channel::C0, 2047).unwrap();

    let _dev = pwm.destroy(); // Get the I2C device back
}

The same settings, but async with the Embassy framework on an RP2040:

# Cargo.toml
pwm-pca9685 = { version = "1.0.0", features = ["async"] }
#![no_std]
#![no_main]

use embassy_executor::Spawner;
use embassy_rp::{bind_interrupts, i2c};
use embassy_rp::peripherals::I2C0;
use embassy_time::Timer;
use panic_halt as _;
use pwm_pca9685::{Address, Channel, Pca9685};

bind_interrupts!(struct Irqs {
    I2C0_IRQ => i2c::InterruptHandler<I2C0>;
});

#[embassy_executor::main]
async fn main(_spawner: Spawner) {
    let p = embassy_rp::init(Default::default());
    let i2c = i2c::I2c::new_async(p.I2C0, p.PIN_1, p.PIN_0, Irqs, i2c::Config::default());

    let address = Address::default();
    let mut pwm = Pca9685::new(dev, address).await.unwrap();

    // This corresponds to a frequency of 60 Hz.
    pwm.set_prescale(100).await.unwrap();

    // It is necessary to enable the device.
    pwm.enable().await.unwrap();

    // Turn on channel 0 at 0.
    pwm.set_channel_on(Channel::C0, 0).await.unwrap();

    // Turn off channel 0 at 2047, which is 50% in
    // the range `[0..4095]`.
    pwm.set_channel_off(Channel::C0, 2047).await.unwrap();

    let _dev = pwm.destroy(); // Get the I2C device back
}

Support

For questions, issues, feature requests, and other changes, please file an issue in the github project.

License

Licensed under either of

at your option.

Contributing

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~2.5MB
~55K SLoC