I have succesfully tried the "one wire.bas" of the samples area with one ds1820 and a 16f876.
Now I'd like to transmit the temperature to a pc but I have been able to receive just the label (C) and the dot and not the numerical value.
Can anybody tell me how to write the serout command in order to read the temperature on the pc?
Thanks a lot.


' Calculate temperature in degrees C to 2 decimal places (not valid for negative temperature)
temperature = (((temperature >> 1) * 100) - 25) + (((count_per_c - count_remain) * 100) / count_per_c)
LCDOut $fe, 1, DEC (temperature / 100), ".", DEC2 temperature, " C"