Temperatures in Fahrenheit?

starlon

New member
I don't see a way to display temperatures in fahrenheit, so I'm assuming there isn't a way. It would be nice if both scales were available.
Looking for additional LCD resources? Check out our LCD blog for the latest developments in LCD technology.
 

starlon

New member
Well, that's close. I see it's possible then. I have 4 sensors though, so I need to make some changes. There's no way to do this from the GUI?

Edit: Actually these temperatures seem off. Ambient is 24.25c, yet this screen says it's 56.2f.
 
Last edited:

starlon

New member
Well I thought I was on the right track. The Fahrenheit column displays [E01]. I'm guessing that's an error code? Am I heading in the right direction?

Code:
[pre]
rows=4
cols=20

[mod00]
name="temp01_id_name"
id=@05
[mod01]
name="temp01_id_temp"
id=@06

[mod02]
name="temp02_id_name"
id=@07
[mod03]
name="temp02_id_temp"
id=@08

[mod04]
name="temp03_id_name"
id=@09
[mod05]
name="temp03_id_temp"
id=@10

[mod06]
name="temp04_id_name"
id=@11
[mod07]
name="temp04_id_temp"
id=@12

[from04]
from="cc2_calc.ini"
sec="calc#"
opt01="id=@45"
opt02="a_type=1"
opt03="a_val=@06"
opt04="b_type=2"
opt05="b_val=1.8"
opt06="operation=*"
opt07="precision=1"

[from05]
from="cc2_calc.ini"
sec="calc#"
opt01="id=@46"
opt02="a_type=1"
opt03="a_val=@45"
opt04="b_type=2"
opt05="b_val=32"
opt06="operation=+"
opt07="precision=1"


[screen]
screen_name="SCAB_Temps"
options=0
alt_delay=5000


[r00]
options=0

[r00-i00]
length=5
id=@05

[r00-i01]
string=" "

[r00-i02]
length=4
id=@06

[r00-i03]
string="\128C "

[r00-i04]
length=4
id=@46

[r00-i05]
string="\128F "
 
Last edited:

jc634

Administrator
The code appears to be correct, at least nothing obvious.

What I would suggest is to renumber the mods and froms sequencilly (sp?) starting at 00 to xx.

I'm not sure that this would make a differance, but it would not hurt to try this just to eliminate a possible problem.
 
Top