DS18B20 - Round Temperature

round the number e.g. by moving to integer domain.

pseudo code

float temp =12.34
int t = temp * 10 + 0.5;  // t = 123   (.9)  t is temp in tenths
print t/10;  // integer part
print .
print t%10;  //decimal part
print 0;

(if temp < 0 code might differ slightly)