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: HC_SR04_Ultrasonic_Library mbed
main.cpp@0:63646f8d0c64, 2015-01-10 (annotated)
- Committer:
- Sandesh
- Date:
- Sat Jan 10 07:33:15 2015 +0000
- Revision:
- 0:63646f8d0c64
ultrasonic sensor
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| Sandesh | 0:63646f8d0c64 | 1 | #include "mbed.h" |
| Sandesh | 0:63646f8d0c64 | 2 | |
| Sandesh | 0:63646f8d0c64 | 3 | DigitalOut myled(LED1); |
| Sandesh | 0:63646f8d0c64 | 4 | |
| Sandesh | 0:63646f8d0c64 | 5 | int main() { |
| Sandesh | 0:63646f8d0c64 | 6 | while(1) { |
| Sandesh | 0:63646f8d0c64 | 7 | myled = 1; |
| Sandesh | 0:63646f8d0c64 | 8 | wait(0.2); |
| Sandesh | 0:63646f8d0c64 | 9 | myled = 0; |
| Sandesh | 0:63646f8d0c64 | 10 | wait(0.2); |
| Sandesh | 0:63646f8d0c64 | 11 | } |
| Sandesh | 0:63646f8d0c64 | 12 | } |