PCA9624, PCA9622 and PCA9626 class library. The PCA9624 is a 8-channel, the PCA9622 is a 16-channel and the PCA9956A is a 24-channel Fm+ I2C-bus 100mA/40V LED driver.
Dependents: PCA9626_Hello PCA9624_Hello PCA9622_Hello
What is this?
Code for PCA9626, PCA9622 and PCA9624.
24-channel, 16-channel and 8-channel PWM output LED driver component class.
Please refer to the component page for details
High-level API is available
A high-level API that can be used as the "PwmOut" of bed-SDK is available.
This API enables to make instances of each LED output pins and control PWM duty cycle by assignment.
For detail information, refer API document of LedPwmOut Class
class which is included in PCA962xA class library.
#include "mbed.h" #include "PCA9626.h" PCA9626 led_cntlr( p28, p27, 0xC4 ); // SDA, SCL, Slave_address(option) LedPwmOut led( led_cntlr, L0 ); int main() { while( 1 ) { for( float p = 0.0f; p < 1.0f; p += 0.1f ) { led = p; wait( 0.1 ); } } }
About the chips
PCA9626
The PCA9626 is an I2C-bus controlled 24-bit LED driver optimized for voltage switch dimming and blinking 100 mA LEDs. Each LED output has its own 8-bit resolution (256 steps) fixed frequency individual PWM controller that operates at 97 kHz with a duty cycle that is adjustable from 0 % to 99.6 % to allow the LED to be set to a specific brightness value.
Datasheet: http://www.nxp.com/documents/data_sheet/PCA9626.pdf
PCA9622
The PCA9622 is an I2C-bus controlled 16-bit LED driver optimized for voltage switch dimming and blinking 100 mA LEDs. Each LED output has its own 8-bit resolution (256 steps) fixed frequency individual PWM controller that operates at 97 kHz with a duty cycle that is adjustable from 0 % to 99.6 % to allow the LED to be set to a specific brightness value.
Datasheet: http://www.nxp.com/documents/data_sheet/PCA9622.pdf
PCA9624
The PCA9624 is an I2C-bus controlled 8-bit LED driver optimized for voltage switch dimming and blinking 100 mA Red/Green/Blue/Amber (RGBA) LEDs. Each LED output has its own 8-bit resolution (256 steps) fixed frequency individual PWM controller that operates at 97 kHz with a duty cycle that is adjustable from 0 % to 99.6 % to allow the LED to be set to a specific brightness value.
Datasheet: http://www.nxp.com/documents/data_sheet/PCA9624.pdf
How the API works?
When the instance is made, all set up for PWM operation are done automatically.
PCA9626, PCA9624 and PCA9622 have internal 97kHz oscillator to generate internal PWM waveform. This signal switchs the output current ON and OFF. The class' function pwm()
controls duty-cycle of this output.
Tips for the chips
PCA962x family
This PCA962x components library can be used for all PCA9926(24-channel), PCA9922(16-channel) and PCA9624(8-channel).
If you are using both chips on the I2C bus, those can be operated like..
#include "mbed.h" #include "PCA9622.h" #include "PCA9626.h" PCA9622 led0( p28, p27, 0xC0 ); // SDA, SCL, Slave_address=0xC0 (16-channel chip) PCA9626 led1( p28, p27, 0xC2 ); // SDA, SCL, Slave_address=0xC2 (24-channel chip) int main() { led0.pwm( .... // PWM control for PCA9955A(16-channel chip) led1.pwm( .... // PWM control for PCA9956A(24-channel chip) ...
Sample code for each types
For PCA9624 (8 channel) : http://developer.mbed.org/users/nxp_ip/code/PCA9624_Hello/
For PCA9622 (16 channel) : http://developer.mbed.org/users/nxp_ip/code/PCA9622_Hello/
For PCA9626 (24 channel) : http://developer.mbed.org/users/nxp_ip/code/PCA9626_Hello/
Diff: PCA9626/PCA9626.h
- Revision:
- 7:7ebf563f6e6c
- Parent:
- 3:40f83904f0a8
--- a/PCA9626/PCA9626.h Wed Mar 04 08:31:40 2015 +0000 +++ b/PCA9626/PCA9626.h Thu Mar 19 10:02:57 2015 +0000 @@ -28,13 +28,17 @@ * Detail information is available on next URL. * http://www.nxp.com/products/lighting_driver_and_controller_ics/i2c_led_display_control/series/PCA9626.html * + * Next sample code shows operation based on low-level-API (operated by just device instane) + * * Example: * @code + * // PCA9626 operation sample using its device instance + * * #include "mbed.h" - * * #include "PCA9626.h" + * * PCA9626 led_cntlr( p28, p27, 0x3E ); // SDA, SCL, Slave_address(option) - * + * * int main() * { * while(1) { @@ -48,30 +52,127 @@ * } * } * @endcode + * + * The high-level-API:LedPwmOutCC is also available. + * It can be used like next sample code. + * + * @code + * // PCA9626 operation sample using high-level-API + * + * #include "mbed.h" + * #include "PCA9626.h" + * + * PCA9626 led_cntlr( p28, p27, 0x3E ); // SDA, SCL, Slave_address(option) + * LedPwmOut led0( led_cntlr, L0 ); // Instance for LED0 pin + * LedPwmOut led1( led_cntlr, L1 ); // Instance for LED1 pin + * LedPwmOut led2( led_cntlr, L2 ); // Instance for LED2 pin + * + * int main() + * { + * while(1) { + * + * for ( float p = 1.0; p >= 0.0; p -= 0.01 ) { + * led0 = p; // Set LED0 output PWM dutycycle as 'p' + * wait( 0.01 ); + * } + * + * for ( float p = 1.0; p >= 0.0; p -= 0.01 ) { + * led1 = p; // Set LED1 output PWM dutycycle as 'p' + * wait( 0.01 ); + * } + * + * for ( float p = 1.0; p >= 0.0; p -= 0.01 ) { + * led2 = p; // Set LED2 output PWM dutycycle as 'p' + * wait( 0.01 ); + * } + * } + * } + * @endcode */ class PCA9626 : public PCA962x { public: - /** Name of the PCA9626 registers */ + +#if DOXYGEN_ONLY + /** PCA9626 pin names high-level API i.e. LedPwmOut */ + typedef enum { + L0, /**< LED0 pin */ + L1, /**< LED2 pin */ + L2, /**< LED2 pin */ + L3, /**< LED2 pin */ + L4, /**< LED2 pin */ + L5, /**< LED2 pin */ + L6, /**< LED2 pin */ + L7, /**< LED2 pin */ + L8, /**< LED2 pin */ + L9, /**< LED2 pin */ + L10, /**< LED2 pin */ + L11, /**< LED2 pin */ + L12, /**< LED2 pin */ + L13, /**< LED2 pin */ + L14, /**< LED2 pin */ + L15, /**< LED2 pin */ + L16, /**< LED2 pin */ + L17, /**< LED2 pin */ + L18, /**< LED2 pin */ + L19, /**< LED2 pin */ + L20, /**< LED2 pin */ + L21, /**< LED2 pin */ + L22, /**< LED2 pin */ + L23, /**< LED23 pin */ + L_NC = ~0x0L /**< for when the pin is left no-connection */ + } LedPinName; +#endif // DOXYGEN_ONLY + + /** Name of the PCA9626 registers (for direct register access) */ enum command_reg { - MODE1, MODE2, - PWM0, PWM1, PWM2, PWM3, - PWM4, PWM5, PWM6, PWM7, - PWM8, PWM9, PWM10, PWM11, - PWM12, PWM13, PWM14, PWM15, - PWM16, PWM17, PWM18, PWM19, - PWM20, PWM21, PWM22, PWM23, - GRPPWM, GRPFREQ, CHASE, - LEDOUT0, LEDOUT1, LEDOUT2, LEDOUT3, LEDOUT4, LEDOUT5, - SUBADR1, SUBADR2, SUBADR3, ALLCALLADR, + MODE1, /**< MODE1 register */ + MODE2, /**< MODE2 register */ + PWM0, /**< PWM0 register */ + PWM1, /**< PWM1 register */ + PWM2, /**< PWM2 register */ + PWM3, /**< PWM3 register */ + PWM4, /**< PWM4 register */ + PWM5, /**< PWM5 register */ + PWM6, /**< PWM6 register */ + PWM7, /**< PWM7 register */ + PWM8, /**< PWM8 register */ + PWM9, /**< PWM9 register */ + PWM10, /**< PWM10 register */ + PWM11, /**< PWM11 register */ + PWM12, /**< PWM12 register */ + PWM13, /**< PWM13 register */ + PWM14, /**< PWM14 register */ + PWM15, /**< PWM15 register */ + PWM16, /**< PWM16 register */ + PWM17, /**< PWM17 register */ + PWM18, /**< PWM18 register */ + PWM19, /**< PWM19 register */ + PWM20, /**< PWM20 register */ + PWM21, /**< PWM21 register */ + PWM22, /**< PWM22 register */ + PWM23, /**< PWM23 register */ + GRPPWM, /**< GRPPWM register */ + GRPFREQ, /**< GRPFREQ register */ + CHASE, /**< CHASE register */ + LEDOUT0, /**< LEDOUT0 register */ + LEDOUT1, /**< LEDOUT1 register */ + LEDOUT2, /**< LEDOUT2 register */ + LEDOUT3, /**< LEDOUT3 register */ + LEDOUT4, /**< LEDOUT4 register */ + LEDOUT5, /**< LEDOUT5 register */ + SUBADR1, /**< SUBADR1 register */ + SUBADR2, /**< SUBADR2 register */ + SUBADR3, /**< SUBADR3 register */ + ALLCALLADR, /**< ALLCALLADR register */ REGISTER_START = MODE1, LEDOUT_REGISTER_START = LEDOUT0, PWM_REGISTER_START = PWM0, }; - /** Create a PCA9629A instance connected to specified I2C pins with specified address + /** Create a PCA9626 instance connected to specified I2C pins with specified address * * @param i2c_sda I2C-bus SDA pin * @param i2c_sda I2C-bus SCL pin @@ -79,7 +180,7 @@ */ PCA9626( PinName i2c_sda, PinName i2c_scl, char i2c_address = PCA962x::DEFAULT_I2C_ADDR ); - /** Create a PCA9629A instance connected to specified I2C pins with specified address + /** Create a PCA9626 instance connected to specified I2C pins with specified address * * @param i2c_obj I2C object (instance) * @param i2c_address I2C-bus address (default: 0xC0) @@ -90,13 +191,13 @@ * */ virtual ~PCA9626(); - + /** Returns the number of output ports * * @returns * The number of output ports */ - virtual int number_of_ports( void ); + virtual int number_of_ports( void ); #if DOXYGEN_ONLY /** Set the output duty-cycle, specified as a percentage (float) @@ -109,7 +210,7 @@ * Values outside this range will have undefined behavior. */ void pwm( int port, float v ); - + /** Set all output port duty-cycle, specified as a percentage (array of float) * * @param vp Aray to floating-point values representing the output duty-cycle, @@ -120,26 +221,26 @@ * The aray should have length of 24 */ void pwm( float *vp ); - + /** Register write (single byte) : Low level access to device register * * @param reg_addr Register address * @param data Value for setting into the register - */ + */ void write( char reg_addr, char data ); /** Register write (multiple bytes) : Low level access to device register * * @param data Pointer to an array. First 1 byte should be the writing start register address * @param length Length of data - */ + */ void write( char *data, int length ); /** Register read (single byte) : Low level access to device register * * @param reg_addr Register address * @return Read value from register - */ + */ char read( char reg_addr ); /** Register write (multiple bytes) : Low level access to device register @@ -147,7 +248,7 @@ * @param reg_addr Register address * @param data Pointer to an array. The values are stored in this array. * @param length Length of data - */ + */ void read( char reg_addr, char *data, int length ); #endif