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.
Dependents: Nucleo_F411RE_OS_Robot_Tank
LED.cpp
00001 #include "mbed.h" 00002 #include "LED.h" 00003 00004 LED::LED(PinName ledpin) : led(ledpin) { 00005 init(); 00006 } 00007 00008 void LED::init(){ 00009 led = 0; 00010 } 00011 00012 void LED::LED_On(){ 00013 led = 1; 00014 } 00015 00016 void LED::LED_Off(){ 00017 led = 0; 00018 } 00019 00020 void LED::LED_Troggle(){ 00021 led = !led; 00022 } 00023 00024
Generated on Tue Jul 12 2022 20:45:21 by
1.7.2