IGGE Power board

Dependencies:   mbed ADS1015 USBDevice MCP4725

main.cpp

Committer:
jamesdem1123
Date:
2014-03-24
Revision:
0:54d5ccfcb14c
Child:
1:dd6f8dc1e54e

File content as of revision 0:54d5ccfcb14c:

#include "mbed.h"

DigitalOut myled(LED1);

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