just the adc test please don't modify
Dependencies:
mbed
main.cpp
- Committer:
- raduschirila
- Date:
- 2018-01-26
- Revision:
- 0:80417bf1f7af
File content as of revision 0:80417bf1f7af:
#include "mbed.h"
DigitalOut myled(LED1);
int main() {
while(1) {
myled = 1;
wait(0.2);
myled = 0;
wait(0.2);
}
}