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
main.cpp
- Committer:
- aoikoizumi
- Date:
- 2020-11-05
- Revision:
- 1:5973b7a1f0dc
- Parent:
- 0:ba720281b818
File content as of revision 1:5973b7a1f0dc:
#include "mbed.h"
PwmOut LED_f(D9);
Serial pc(USBTX,USBRX);
int main() {
while(1){
LED_f = 1; // LED is ON
pc.printf("1");
wait(1); // 200 ms
LED_f = 0.2; // LED is ON
pc.printf("2");
wait(0.5); // 1 se
}
}