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.
Fork of mbed-os-example-mbed5-blinky by

Pinout

led blink example
#include "mbed.h"
DigitalOut einkshield_led1(D7);
// main() runs in its own thread in the OS
int main() {
while (true) {
einkshield_led1 = !einkshield_led1;
wait(0.5);
}
}
Revision 18:50b62d440e88, committed 2016-12-09
- Comitter:
- mbed_official
- Date:
- Fri Dec 09 13:00:04 2016 +0000
- Parent:
- 17:70f39bf6d39a
- Child:
- 19:c3f08ad7c776
- Commit message:
- Merge pull request #35 from adbridge/master
Update mbed-os to mbed-os-5.2.3
.
Commit copied from https://github.com/ARMmbed/mbed-os-example-blinky
Changed in this revision
| mbed-os.lib | Show annotated file Show diff for this revision Revisions of this file |
--- a/mbed-os.lib Mon Nov 14 20:30:04 2016 +0000 +++ b/mbed-os.lib Fri Dec 09 13:00:04 2016 +0000 @@ -1,1 +1,1 @@ -https://github.com/ARMmbed/mbed-os/#a1c0840b3d69060e5eb708edb18358e424a40f51 +https://github.com/ARMmbed/mbed-os/#d5de476f74dd4de27012eb74ede078f6330dfc3f
