Skip to content

Commit

Permalink
Show temp in LCD Label
Browse files Browse the repository at this point in the history
  • Loading branch information
eloaders committed Feb 13, 2014
1 parent 709710a commit b50a7cc
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/i-nex/.settings
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ File[21]=".src/net.module:15.70"
File[22]="Data/report-ng.sh:5.3"
File[23]=".src/Distribution_Detect.module:15.70"
File[24]=".src/FFlags.module:70.19"
File[25]=".src/Finfosys.class:911.0"
File[25]=".src/Finfosys.class:719.0"
File[26]=".src/FDF.form"
File[27]=".src/FDF.class:15.70"
File[28]=".src/FNET_R_T.form"
Expand Down
6 changes: 4 additions & 2 deletions src/i-nex/.src/Finfosys.class
Original file line number Diff line number Diff line change
Expand Up @@ -701,9 +701,11 @@ Public Sub Timer1_Timer()
dospam_uptime()
thermal_zone._inits
If thermal_zone.supporttemp = True Then
Label93.Text = "Temp: " & (thermal_zone.calculate / 1000) & " °C"
'Label93.Text = "Temp: " & (thermal_zone.calculate / 1000) & " °C"
LCDLabel1.Text = "Temp: " & (thermal_zone.calculate / 1000) & " °C"
Else
Label93.Visible = False
'Label93.Visible = False
LCDLabel1.Visible = False
Endif

End
Expand Down
19 changes: 10 additions & 9 deletions src/i-nex/.src/Finfosys.form
Original file line number Diff line number Diff line change
Expand Up @@ -368,19 +368,11 @@
Text = "Label103"
Border = Border.Raised
}
{ Label93 Label
Move(7,91,91,28)
#Translate = False
Font = Font["Bold,8"]
Foreground = &H0000FF&
Padding = 3
Border = Border.Raised
}
{ Label13 Label
Move(7,7,91,56)
#Translate = False
Font = Font["Bold,16"]
Foreground = &H2C2C2C&
Foreground = &HFF7F00&
Padding = 3
Text = "Label13"
Alignment = Align.Center
Expand Down Expand Up @@ -413,6 +405,15 @@
Text = ("More...")
Picture = Picture["AppIcons/dialog-ok.png"]
}
{ LCDLabel1 LCDLabel
Move(14,91,322,28)
#Translate = False
Font = Font["Bold,8"]
Alignment = Align.Left
Sheared = True
Padding = 3
HighlightColor = &H9F5913&
}
Index = 1
Text = ("CPUID")
{ ScrollView1 ScrollView
Expand Down

0 comments on commit b50a7cc

Please sign in to comment.