for our workshop this afternoon

Dependencies:   mbed

Fork of hackspace_awesomeness by Tony Abbey

main.cpp

Committer:
divyastra
Date:
2014-07-12
Revision:
5:80b4f48cd3db
Parent:
4:c4dbac2f3e48

File content as of revision 5:80b4f48cd3db:

#include "mbed.h"
// for kl25 external 3 colour LED
PwmOut redpwm(D5);
PwmOut greenpwm(D6);
PwmOut bluepwm(D7);
int main()
{
    int i;
    redpwm.period_ms(10);
    greenpwm.period_ms(10);
    bluepwm.period_ms(10);


 
    while(1) {
        for (i=0; i<11; i++) {
            redpwm.pulsewidth_ms(i);
            printf("redpwm set to %.2f %%\n", redpwm.read() * 100);

            wait(0.1);
        }
        for (i=0; i<11; i++) {
            greenpwm.pulsewidth_ms(i);
            printf("greenpwm set to %.2f %%\n", greenpwm.read() * 100);
            wait(0.1);
        }
        for (i=0; i<11; i++) {
            bluepwm.pulsewidth_ms(i);
            printf("bluepwm set to %.2f %%\n", bluepwm.read() * 100);
            wait(0.1);
        }
    }
 
}