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: LedControllerTests NerfUSTarget
Fork of Servomotor by
LedController.cpp
00001 #include "LedController.hpp" 00002 00003 LedController::LedController(DigitalOutInterface &digital_out) : 00004 digital_out(digital_out) 00005 { 00006 00007 } 00008 00009 void LedController::turn_on() 00010 { 00011 digital_out.write(1); 00012 } 00013 00014 void LedController::turn_off() 00015 { 00016 digital_out.write(0); 00017 }
Generated on Wed Jul 13 2022 19:08:56 by
1.7.2
