Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
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 }
Generated on Tue Jul 12 2022 18:53:38 by
1.7.2