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.
Dependencies: MMA8451Q TSI mbed
main.cpp@1:32eacc4f6beb, 2012-10-23 (annotated)
- Committer:
- emilmont
- Date:
- Tue Oct 23 09:35:31 2012 +0000
- Revision:
- 1:32eacc4f6beb
- Parent:
- 0:f59179afee57
- Child:
- 4:5a98b723b199
Update mbed library
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
emilmont | 0:f59179afee57 | 1 | #include "mbed.h" |
emilmont | 0:f59179afee57 | 2 | |
emilmont | 0:f59179afee57 | 3 | DigitalOut myled(LED_GREEN); |
emilmont | 0:f59179afee57 | 4 | Serial pc(USBTX,USBRX); |
emilmont | 0:f59179afee57 | 5 | |
emilmont | 0:f59179afee57 | 6 | int main() { |
emilmont | 0:f59179afee57 | 7 | int i=0; |
emilmont | 0:f59179afee57 | 8 | pc.printf("\nHello World!\n"); |
emilmont | 0:f59179afee57 | 9 | |
emilmont | 1:32eacc4f6beb | 10 | while (true) { |
emilmont | 0:f59179afee57 | 11 | wait(0.5); |
emilmont | 0:f59179afee57 | 12 | pc.printf("%d\n",i); |
emilmont | 0:f59179afee57 | 13 | i++; |
emilmont | 0:f59179afee57 | 14 | myled = !myled; |
emilmont | 0:f59179afee57 | 15 | } |
emilmont | 0:f59179afee57 | 16 | } |