Class which provides functions to control a TAOS TCS3472 Color Light-to-Digital Converter with IR Filter via I2C. (Tidied up)

Dependents:   openwear-lifelogger-example

Fork of TCS3472_I2C by Karl Maxwell

Revision:
0:453a43c8bf2b
Child:
1:70d7d9f1af01
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/TCS3472_I2C.h	Tue Mar 18 09:45:04 2014 +0000
@@ -0,0 +1,22 @@
+#ifndef TCS3472_I2C_H
+#define TCS3472_I2C_H
+#include "mbed.h"
+
+class TCS3472_I2C {
+public:
+    TCS3472_I2C( PinName sda, PinName scl );
+
+
+
+
+
+private:
+    I2C i2c_;
+
+
+
+
+
+};
+
+#endif TCS3472_I2C_H
\ No newline at end of file