Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
rgb.h
00001 #ifndef RGB_H 00002 #define RGB_H 00003 #include "mbed.h" 00004 #include "color.h" 00005 #include "LM75B.h" 00006 00007 class RGB{ 00008 00009 00010 public: 00011 00012 RGB(PinName r_pin, PinName g_pin, PinName b_pin); 00013 void setColor(Color color); 00014 void setColor(int red, int green, int blue); 00015 void setColor(int color); 00016 void off(); 00017 00018 private: 00019 PwmOut* r_out; 00020 PwmOut* g_out; 00021 PwmOut* b_out; 00022 float toFloat(int floater); 00023 }; 00024 00025 #endif
Generated on Sat Jul 16 2022 20:39:52 by
1.7.2