Example program to sweep the RGB LED through various colours using PWM
Fork of app-board-RGB by
main.cpp
- Committer:
- chris
- Date:
- 2014-08-01
- Revision:
- 2:78710087f088
- Parent:
- 1:5ac8fa71dfb4
File content as of revision 2:78710087f088:
#include "mbed.h" PwmOut r (D5); PwmOut g (D8); PwmOut b (D9); int main() { r.period(0.001); while(1) { for(float i = 0.0; i < 1.0 ; i += 0.001) { float p = 3 * i; r = 1.0 - ((p < 1.0) ? 1.0 - p : (p > 2.0) ? p - 2.0 : 0.0); g = 1.0 - ((p < 1.0) ? p : (p > 2.0) ? 0.0 : 2.0 - p); b = 1.0 - ((p < 1.0) ? 0.0 : (p > 2.0) ? 3.0 - p : p - 1.0); ; wait (0.01); } } }