nggawe library dewe iku apik

Fork of flash by Ahmad riski

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers flash.cpp Source File

flash.cpp

00001 #include "flash.h"
00002 #include "mbed.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 }