Well no luck finding my notes but I got an interesting sensor in the mail the other day. I ordered an analog wall sensor that outputs a direct proportional reading in Deg F to voltage......So 75 'F = .75 volts. This sensor outputs .010v/'F ...........Hmmmm sounds like an LM34 sensor. The sensor and spec's can be viewed here. ATP1000
www.automated1.com This sensor has an output of 32Deg F to 200DegF. I hooked it up to my T100MD 888 and found it to work flawless. The exact formula I am using is .
T=168*(ADC(n)-261)/1376+32
or to display it on the LCD use:
setlcd 0,1, "Temp. =" + str$(168*(ADC(n)-261)/1376+32 )
of course keep in mind that the "n" in ADC(n) must be replaced with the correct Analog Input 1 to 8.