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.
toggle.cpp
00001 #include "toggle.h" 00002 #include "mbed.h" 00003 00004 00005 Toggle::Toggle(PinName pin) : _p(pin) 00006 { 00007 _p = 0; 00008 } 00009 00010 void Toggle::toggle(int n) 00011 { 00012 for(int i=0; i<n*2; i++) { 00013 _p = !_p; 00014 wait(0.2); 00015 } 00016 }
Generated on Fri Aug 5 2022 21:23:55 by
1.7.2