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 #include "../System/Using.h" 00004 #include "mbed.h" 00005 #include <stdint.h> 00006 00007 namespace LED { 00008 DigitalOut boardLED[USE_LED_NUM] = { 00009 DigitalOut(LED_DEBUG0_PIN), 00010 DigitalOut(LED_DEBUG1_PIN), 00011 DigitalOut(LED_DEBUG2_PIN), 00012 DigitalOut(LED_MU_PIN), 00013 }; 00014 00015 void LED::Initialize() { 00016 for(uint8_t i=0; i < USE_LED_NUM; i++) { 00017 boardLED[i] = LED_OFF; 00018 } 00019 } 00020 }
Generated on Mon Jul 18 2022 14:24:17 by
