Example greentea tests with Blinky library

Dependencies:   Blinky

main.cpp

Committer:
sarahmarshy
Date:
2016-09-19
Revision:
0:0d5d376157a0

File content as of revision 0:0d5d376157a0:

#include "Blinky.h"

int main(void){
    Blinky blinker(LED1, 500);
    blinker.start();
    Thread::wait(5000);
    blinker.stop();
}