Beacause of low brain activity I am unable to split the reading from a ds1820 temperature sensor into separate bytes in order to send by radio each byte together with its row and location bytes to serial lcd.
***********
OWIn DQ, 0, [temperature.LOWBYTE, temperature.HIGHBYTE, Skip 4, count_remain, count_per_c]

' 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), ".", DEC1 temperature
***********
Thank you very much for any help.