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.
main.cpp@0:48b3efc9aa09, 2020-10-25 (annotated)
- Committer:
- yabool2001
- Date:
- Sun Oct 25 18:27:25 2020 +0000
- Revision:
- 0:48b3efc9aa09
Murata Type ABZ simple test
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| yabool2001 | 0:48b3efc9aa09 | 1 | #include "mbed.h" |
| yabool2001 | 0:48b3efc9aa09 | 2 | |
| yabool2001 | 0:48b3efc9aa09 | 3 | DigitalOut led2 ( PB_2 ) ; |
| yabool2001 | 0:48b3efc9aa09 | 4 | |
| yabool2001 | 0:48b3efc9aa09 | 5 | int main() { |
| yabool2001 | 0:48b3efc9aa09 | 6 | while ( 1 ) { |
| yabool2001 | 0:48b3efc9aa09 | 7 | led2 = !led2 ; |
| yabool2001 | 0:48b3efc9aa09 | 8 | wait ( 1 ); |
| yabool2001 | 0:48b3efc9aa09 | 9 | } |
| yabool2001 | 0:48b3efc9aa09 | 10 | } |