Lab 6 Oppgave 1 Template
Dependencies: mbed
Diff: main.cpp
- Revision:
- 0:0ad4018e5968
diff -r 000000000000 -r 0ad4018e5968 main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Thu Oct 08 10:22:05 2015 +0000 @@ -0,0 +1,18 @@ +#include "mbed.h" + +DigitalOut Vcc(PA_0); +AnalogIn aInn(PA_1); +DigitalOut Gnd(PA_4); + +int main() +{ + Vcc = 1; + Gnd = 0; + + + while(1) { + float voltage = aInn.read()*3.3f; + printf("Voltage:%.3f \r\n", voltage); + wait_ms(135); + } +} \ No newline at end of file