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:
- kaushalpkk
- Date:
- 2019-02-06
- Revision:
- 1:e5e994163bee
- Parent:
- 0:d1fc4eddceab
File content as of revision 1:e5e994163bee:
#include "mbed.h"
PwmOut s1(LED1);
PwmOut s2(LED2);
AnalogIn p1(p19);
AnalogIn p2(p20);
int main() {
while(1) {
s1=p1;
s2=p2;
wait(0.1);
}
}