A feature complete driver for the PCA9952/55 LED driver from NXP.

Dependents:   PCA9955_HelloWorld

Files at this revision

API Documentation at this revision

Comitter:
neilt6
Date:
Fri May 30 19:00:08 2014 +0000
Parent:
12:2b8adb10c605
Commit message:
Added MBED_OPERATORS check to implementation

Changed in this revision

PCA9955.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/PCA9955.cpp	Mon May 12 14:58:54 2014 +0000
+++ b/PCA9955.cpp	Fri May 30 19:00:08 2014 +0000
@@ -709,12 +709,14 @@
     return flags;
 }
 
+#ifdef MBED_OPERATORS
 PCA9955& PCA9955::operator=(float value)
 {
     //Set all of the output duties
     allOutputDuties(value);
     return *this;
 }
+#endif
 
 char PCA9955::read(char reg)
 {