Basic RGB library for non-PWM LEDs
Dependents: MenuExample exosite_http_example exosite_http_example FastPWM
Warning : Works with non-PWM LED (0 or 1).
A quick example on how to use it.
#include "mbed.h"
#include "RGBLed.h"
RGBLed led(LED_RED, LED_GREEN, LED_BLUE);
int main() {
RGBLed::Color list[8] = {RGBLed::BLACK, RGBLed::RED, RGBLed::GREEN, RGBLed::BLUE, RGBLed::MAGENTA, RGBLed::CYAN, RGBLed::YELLOW, RGBLed::WHITE};
int i = 0;
while (true) {
i = (i+1)%8;
led.setColor(list[i]);
wait_ms(100);
}
}
Revisions of RGBLed.h
| Revision | Date | Message | Actions |
|---|---|---|---|
| 6:9b7ee7ba4109 | 2015-06-12 | Fixed the documentation in RGBLed.h | File Diff Annotate |
| 5:b125e5a28295 | 2014-09-03 | Add #ifndef on headers | File Diff Annotate |
| 4:176363412797 | 2014-09-03 | Added License headers. | File Diff Annotate |
| 3:be0a3c2ec426 | 2014-09-03 | Change the Library name for better understanding.; Change some data type for optimization. | File Diff Annotate |