Example PWM control of RGB LEDs

Dependencies:   mbed

Fork of frdm_rgbled by Freescale

Using three PWM channels to mix the onboard RGB (Red, Green, Blue) LED to make a variety of colors.

NOTE: This example code does not work with FRDM-K64F.

main.cpp

Committer:
chris
Date:
2012-10-11
Revision:
0:cf8a48b1fb23
Child:
1:eabc6f5b51d6

File content as of revision 0:cf8a48b1fb23:

#include "mbed.h"

BusOut rgb(LED_RED,LED_GREEN,LED_BLUE);

int main() {
    int i=0;   
    while(1) {
        rgb=i;
        wait (0.25);
        i++;            
     }
}