PCA9635 16-bit I2C-bus LED driver

Dependents:   digitalThermometer Counter SimpleClock printNumber ... more

Revision:
11:50d396bf0207
Parent:
10:b807470a8b09
Child:
13:090e15dd2553
--- a/PCA9635.h	Wed Jun 29 13:42:04 2011 +0000
+++ b/PCA9635.h	Wed Jun 29 13:45:40 2011 +0000
@@ -87,34 +87,25 @@
         * @param leds Set output according to parameter value - e.g. 0x0003 >> p0 & p1 high, rest low
         * @param address Display address
         */
-        void bus(short leds, int address);
-        /** Define LED brightness
-        *
-        * @param led LED pin coordinates
-        * @param value Brightness of LED, 0x00 < value < 0xFF
-        */
         void brightness(char led, char value);
-        /** Define LED brightness
-        *
-        * @param led LED pin coordinates
-        * @param value Brightness of LED, 0x00 < value < 0xFF
-        * @param address Display address
-        */
-        void brightness(char led, char value, int address);
-        /** Reset chip 
-        *
-        */
-        void reset(void);
         /** Set write address
         *
         * &param address write address
         */
         void setAddress(int address);
+        
+        
+        /** Reset chip 
+        *
+        */
+        void reset(void);
         /** Initialise chip - MUST call this before calling any other functions
         *
         * @param address hardware address
         */
         void init(int address);
+
+
         
               
     private: