Ax033/axe08m2temperature help

I've got the temp converted to Fahrenheit stored nicely in a variable called $temp. Any ideas how to display that on the lcd. Yes it's a noob problem. But I just can't figure out the syntax. Serout b.0,n2400,(?????)
 

Bill.b

Senior Member
you have to convert the temperature to ASCII before sending to the LCD. This is for a serial connection.

bintoascii temperature,b0,b1,b2,b3,b4
serout B.0,n2400,("Temperature ",b2,b3,".",b4," ",210,"F")

or
For I2C LCD -
hi2cout 0,(B2,AB3,".",B4,"F",255)

Bill
 

westaust55

Moderator
I have merged your two threads started within minutes if each other with different topic headings.

Please stick to a single thread on a given topic - multi posting is poor practice.
 
Top