Tests the mbed Weapons and Systems Engineering Single Board Computer 12-bit ADC (MAX1270) by reading channel 0

Dependencies:   mbed mbedWSEsbc

main.cpp

Committer:
jebradshaw
Date:
2014-09-25
Revision:
0:5134e66ab306

File content as of revision 0:5134e66ab306:

#include "mbed.h"
#include "mbedWSEsbc.h"

DigitalOut myled(LED1);

int main() {    
    mbedWSEsbcInit(9600);   //Initialize the SBC
    
    while(1) {        
        float ch0_volts = read_max1270_volts(0, 0, 0);
        
        pc.printf("t=%.2f  CH0=%.3fV    \r", t.read(), ch0_volts);        
        led1 != led1;
        wait(0.02);
    }//while(1)
}//main