Amin Husni / Mbed 2 deprecated KL25Z_LED_Testing

Dependencies:   mbed

main.cpp

Committer:
Aminpro
Date:
2013-09-14
Revision:
0:57326fa2810a

File content as of revision 0:57326fa2810a:

#include "mbed.h"

DigitalOut r(LED_RED);
DigitalOut g(LED_GREEN);
DigitalOut b(LED_BLUE);


int main() {
    
    while(1){
    g= 1;
    b = 1;
    r = 0;
    wait(1);
    b = 1;
    r = 1;
    g = 0;
    wait(1);
    r = 1;
    g = 1;
    b = 0;
    wait(1);  
    
    
    }


 }