Ivan Brajdic / Flasher
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Flasher.cpp Source File

Flasher.cpp

00001 #include "Flasher.h" 
00002 #include "mbed.h" 
00003  
00004 Flasher::Flasher(PinName pin) : _pin(pin) 
00005 { 
00006  _pin = 0; 
00007 } 
00008  
00009 void Flasher::flash(int n) { 
00010  for(int i=0; i<n*2; i++) { 
00011  _pin = !_pin; 
00012  wait(0.2); 
00013  } 
00014 }