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:
- jan_kornberger
- Date:
- 2015-12-17
- Revision:
- 0:a3cd7b0ad851
File content as of revision 0:a3cd7b0ad851:
#include "mbed.h" PwmOut g(p5); PwmOut b(p34); PwmOut r(p36); AnalogIn poti(p15); int main() { r.period(0.001); while(1) { g=poti.read(); b=1; r=1; wait (0.01); } }