Hello, I am using the one wire temperature probe sensor.
It does work , I do get the right temperature, but only for the first output on the lcd it is showing 85.00 for both celcius and farenheit. It does show the right temperatures in the second loop and on. But why does ti show this information on the first loop. Eventually this will not be good as I will be taking the first value to proceed.

Code:
GetTemperature_Inside:

owout DQ2,1,[$cc] : owout DQ2,0,[$44] : Pause 500 : owout DQ2,1,[$cc] : owout DQ2,0,[$be]
owin DQ2, 0, [temperature2.LOwBYTE, temperature2.Highbyte, Skip 4, count_remain2, count_per_c2]


temperature = ((( temperature2 >> 1) *100)- 25) + (((count_per_c2 - count_remain2) * 100) / count_per_c2)
tempF = (((temperature /5) *9 ) +3200)

lcdout $FE,1, "TempC: ", "+", dec (temperature / 100) , ".", dec2 temperature," ",$DF,"C"
lcdout $FE,$C0, "TempF: ", "+", dec2 (tempF / 100) , ".", dec2 (tempF // 100)," ",$DF,"F"
	pause 100
	

return