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.
Led.cpp
00001 #include "Led.h" 00002 00003 Led::Led(PinName pinName): 00004 pin(pinName) 00005 { 00006 } 00007 void Led::switchOn(){ 00008 this->pin = 1; 00009 } 00010 void Led::switchOff(){ 00011 this->pin = 0; 00012 } 00013 void Led::flash(float time){ 00014 this->pin = 1; 00015 wait(time); 00016 this->pin = 0; 00017 }
Generated on Wed Jul 13 2022 06:29:03 by
1.7.2