Example greentea tests with Blinky library

Dependencies:   Blinky

main.cpp

Committer:
sarahmarshy
Date:
2016-09-27
Revision:
1:b0034f8b2c42
Parent:
0:0d5d376157a0

File content as of revision 1:b0034f8b2c42:

#include "Blinky.h"

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