Initial version

Dependencies:   C12832_mod LM75B MMA7660 mbed-src

Fork of GR-PEACH_blinky by Toyomasa Watarai

main.cpp

Committer:
MACRUM
Date:
2014-11-14
Revision:
0:b2580afd6abb
Child:
1:46d9c55342aa

File content as of revision 0:b2580afd6abb:

#include "mbed.h"

DigitalOut myled(LED1);

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