Prototyping the Adaptable Emergency System on an C027 board.

Dependencies:   C027_Support mbed

Fork of c027_prototyping by Philémon Favrod

main.cpp

Committer:
philemonf
Date:
2014-09-30
Revision:
0:164fb9518d1a
Child:
1:23ffa0e091bc

File content as of revision 0:164fb9518d1a:

#include "mbed.h"
#ifdef TARGET_UBLOX_C027
 #include "C027_api.h"
#else
 #error "This example is targeted for the C027 platform"
#endif

DigitalOut myled(LED); 

int main() {
    while(1) {
        myled = !myled;
        wait(0.2);
    }    
}