Francesco Bianchi / Flasher
Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Flasher.cpp Source File

Flasher.cpp

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