Andrija Ovas / 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 Flasher::Flasher(PinName pin) : _pin(pin) {
00004 _pin = 0;
00005 }
00006 void Flasher::flash(int n) {
00007 for(int i=0; i<n*2; i++) {
00008 _pin = !_pin;
00009 wait(0.2);
00010 }
00011 }