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 "mbed.h" 00002 #include "led.h" 00003 led::led(PinName name) : myled(name){ 00004 } 00005 00006 void led::on(){ 00007 myled = 1; 00008 } 00009 00010 void led::off(){ 00011 myled = 0; 00012 } 00013 00014 void led::toggle(){ 00015 myled = !myled; 00016 } 00017 00018 void led::blink(int time){ 00019 myled = !myled; 00020 wait(time); 00021 myled = !myled; 00022 } 00023
Generated on Sun Sep 11 2022 14:00:03 by
1.7.2