The example program for mbed pin-compatible platforms

Dependencies:   mbed

Fork of mbed_blinky by Mbed

main.cpp

Committer:
mjohnm
Date:
2015-03-15
Revision:
7:67bf1a101660
Parent:
4:81cea7a352b0

File content as of revision 7:67bf1a101660:

#include "mbed.h"

DigitalOut myled(LED1);
int test[16000],test2[16000];

int main()
{
    while(1) {
        myled = 1;
        wait(0.2);
        myled = 0;
        wait(0.2);
        test[7] = 123456;
        test2[7] = 123456;
        test[3] = rnd();
    }
}