test
Dependencies: LM75B Color mbed yeswecancoap Rgb
Diff: lib/rgb.h
- Revision:
- 0:06473a4ace3b
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/lib/rgb.h Fri Oct 23 13:37:50 2015 +0000 @@ -0,0 +1,25 @@ +#ifndef RGB_H +#define RGB_H +#include "mbed.h" +#include "color.h" +#include "LM75B.h" + +class RGB{ + + + public: + + RGB(PinName r_pin, PinName g_pin, PinName b_pin); + void setColor(Color color); + void setColor(int red, int green, int blue); + void setColor(int color); + void off(); + + private: + PwmOut* r_out; + PwmOut* g_out; + PwmOut* b_out; + float toFloat(int floater); + }; + +#endif \ No newline at end of file