Instructions

IDUINO for maker’s life
88 www.openplatform.cc
* 0.0625) or 6.25
Whole = Tc_100 / 100; // separate off the whole and fractional
portions
Fract = Tc_100 % 100;
if (SignBit) // If its negative
{
Serial.print("-");
}
Serial.print(Whole);
Serial.print(".");
if (Fract < 10)
{
Serial.print("0");
}
Serial.print(Fract);
Serial.print("\n");
//End conversion to C
}
******Code End******
Module33: Analog Temperature Sensor(ST1147)