Simple Blinky library.

Dependents:   Blinky_Tests

Fork of Blinky by Sarah Marsh

Revision:
1:5b51a271d47e
Parent:
0:8fe86312b714
Child:
2:256c8d48f5e7
--- a/Blinky.cpp	Mon Sep 19 16:21:27 2016 +0000
+++ b/Blinky.cpp	Mon Sep 19 19:52:49 2016 +0000
@@ -3,6 +3,7 @@
 Blinky::Blinky(PinName led, int interval):
         _led(led), _interval(interval){
     stop_blink=false;
+    _led=1;
 }
 void Blinky::start(){
     _blinker.start(this, &Blinky::blink_led);