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
- Committer:
- Pichoman
- Date:
- 2018-11-22
- Revision:
- 0:c17ba8658b70
- Child:
- 1:e69573a4c0d3
File content as of revision 0:c17ba8658b70:
#include "mbed.h" PwmOut PWM1(PTB0); PwmOut led(LED1); int main() { PWM1.period(0.03); PWM1.write(0.60); led.period(0.03); led.write(0.90); while(1); }