Gerardo Espinoza / Flasher
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

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