1

Dependencies:   mbed

main.cpp

Committer:
yu10078999
Date:
2016-09-04
Revision:
0:49554dcad20d

File content as of revision 0:49554dcad20d:

#include "mbed.h"

AnalogIn lm35(A0);
Serial pc(USBTX, USBRX);

int main() {
    float val,tempC,tempF;
    while(1) 
    {
        val=lm35.read();
        tempC=(val*2.8f*100);
        tempF=(9.0f*tempC)/5.0f + 32.0f;
        printf("%.2f\n%.2f\n",tempC,tempF);
        wait(2);
    }
}