Quote Originally Posted by Frozen001 View Post
I2CREAD PORTC.4, PORTC.3,%10010001 ,$0, [temph,templ]
temph is the first 8 bits, and templ is the next 8 bits.
temph is difined earlier as the first byte in the word temp, while templ is defined at the second byte in the word temp.
Now that I have the temperature reading, is thre a way to convert it to ascii characters so I can send them to my display?
tempw var word
tempw.highbyte = temph
templw.lowbyte = templ
lcdout $fe,1,DEC5 tempw

Just like it shows in the LCDOUT section of the PBP manual.