John Lowe / Mbed 2 deprecated WebSockets2

Dependencies:   mbed MD5

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers RGBLed.h Source File

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