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.
tikatika.cpp@0:7d8a77af75f6, 2020-07-10 (annotated)
- Committer:
- jfryo
- Date:
- Fri Jul 10 23:44:34 2020 +0000
- Revision:
- 0:7d8a77af75f6
LED
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jfryo | 0:7d8a77af75f6 | 1 | #include "mbed.h" |
jfryo | 0:7d8a77af75f6 | 2 | void toggle(DigitalOut x) |
jfryo | 0:7d8a77af75f6 | 3 | { |
jfryo | 0:7d8a77af75f6 | 4 | x=!x; |
jfryo | 0:7d8a77af75f6 | 5 | } |