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: bertl_led bertl_led bertl_led bertl_led ... more
Fork of Bertl by
You are viewing an older revision! See the latest version
Leds
Methoden:
- TurnLedOn(LED_BL1) und TurnLedOff(LED_BL1)
- NibbleLeds(0x0F)
- BlueLedsON() und BlueLedsOFF()
- RGBLed(1,1,1) mit (red, green, blue)
const int LED_FL1 = 0x01; /**< front LED white */ const int LED_FL2 = 0x02; /**< front LED yellow */ const int LED_FR1 = 0x04; /**< front LED white */ const int LED_FR2 = 0x08; /**< front LED yellow */ const int LED_ALL_FRONT = 0x0F; const int LED_BL1 = 0x20; /**< yellow LED back left outer */ const int LED_BL2 = 0x10; /**< red LED back left inner */ const int LED_BR1 = 0x80; /**< yellow LED back right outer*/ const int LED_BR2 = 0x40; /**< red LED back right inner */ const int LED_ALL_BACK = 0xF0; const int LED_ALL = 0xFF; const int LED_BLUE = 0xBB;