General IMU Library

Dependencies:   mbed LSM9DS1_Library

main.cpp

Committer:
simplyellow
Date:
2017-02-16
Revision:
4:ab08a70e0d7d
Parent:
0:0a3c6797d2ed

File content as of revision 4:ab08a70e0d7d:

#include "mbed.h"

DigitalOut myled(LED1);

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