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: mbed ultrasonic
main.cpp
- Committer:
- hebryn
- Date:
- 2015-03-10
- Revision:
- 1:21587a66f911
- Parent:
- 0:017111c9207d
- Child:
- 2:8938c73c2aa8
File content as of revision 1:21587a66f911:
#include "mbed.h"
#include "ultrasonic.h"
PwmOut TX(D9);
DigitalOut myled(LED1);
int main() {
TX.period_us(25);
TX.write(50);
while(1) {
}
}