vježba 3a

Dependencies:   mbed

main.cpp

Committer:
cvitas
Date:
2013-11-26
Revision:
0:1d1430d5fd6b

File content as of revision 0:1d1430d5fd6b:

/*Program Example 5.4: Reads input voltage through the ADC, and transfers to PC terminal
                                                            */
#include "mbed.h"
Serial pc(USBTX, USBRX);               //enable serial port which links to USB
AnalogIn Ain(p20);

float ADCdata;

int main() {
  pc.printf("ADC Data Values...\n\r"); //send an opening text message
  while(1){
    ADCdata=Ain;  
    wait(0.5);  
    pc.printf("%1.3f \n\r",ADCdata);  //send the data to the terminal
  }      
}