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.
RGBLed.h
00001 #ifndef RGB_LED_H 00002 #define RGB_LED_H 00003 00004 #include "mbed.h" 00005 00006 class RGBLed { 00007 public: 00008 RGBLed(); 00009 00010 void setRgb(char *rgb); 00011 void setRgb(float r, float g, float b); 00012 private: 00013 int parseHex(int value, char hex); 00014 00015 PwmOut red; 00016 PwmOut green; 00017 PwmOut blue; 00018 }; 00019 00020 #endif
Generated on Wed Jul 13 2022 23:42:34 by
1.7.2