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.
Diff: LED/LED.cpp
- Revision:
- 29:44d5454ce8fa
- Parent:
- 0:669ef71cba68
- Child:
- 30:8f092276b2ba
--- a/LED/LED.cpp Thu Oct 03 05:33:48 2019 +0000 +++ b/LED/LED.cpp Fri Oct 18 22:33:25 2019 +0000 @@ -11,10 +11,21 @@ DigitalOut(LED_DEBUG2_PIN), DigitalOut(LED_MU_PIN), }; + + DigitalOut tapeLED[] = { + DigitalOut(LED_tape0_PIN), + DigitalOut(LED_tape1_PIN), + DigitalOut(LED_tape2_PIN), + DigitalOut(LED_tape3_PIN), + DigitalOut(LED_tape3_PIN), + }; void LED::Initialize() { for(uint8_t i=0; i < USE_LED_NUM; i++) { boardLED[i] = LED_OFF; } + for(uint8_t i=0; i < 5; i++) { + tapeLED[i] = LED_OFF; + } } }