It is currently March 28th, 2024, 11:43 am

HWiNFO - first-timer

Get help with creating, editing & fixing problems with skins
Post Reply
miniexpresso
Posts: 2
Joined: June 26th, 2017, 9:56 am

HWiNFO - first-timer

Post by miniexpresso »

Hi all,

I have been reading about and was going to try my hand at tinkering a new skin for myself that suited what I wanted and based it off "Flat Blue Theme" .

I have already installed the HWiNFO plug-in and got the proper Sensor ID's required for the measure but the text reflecting the temperature is perpetually stuck at "1C". It does not properly reflect the measure that I have wrote. Only the bar below the text is moving accordingly to the reflected temperature but not the numeric text!

Could someone spot a mistake with the code or guide me in the right direction? Much appreciated!
Thanks in advance.

P.S. I was working of this guide https://forum.rainmeter.net/viewtopic.php?t=21939

This are the values for the sensors I'm looking to create.
http://imgur.com/a/eTko6

Code: Select all

[Rainmeter]
Update=1000

[Metadata]
Author=DD.921 (Rasylver)
Version=
Description=

////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
CPU MEASURE

[MeasureCPUTemp]
Measure=Plugin
Plugin=HWiNFO
HWiNFOSensorId=0xf0002a00
HWiNFOSensorInstance=0x0
HWiNFOEntryId=0x1000004
HWiNFOType=CurrentValue
MinValue=0
MaxValue=100
----------------------------------
CPU METER

[MeterTemperature]
Meter=STRING
MeasureName=MeasureCPUTemp
X=193
Y=6
StringAlign=RIGHT
FontColor=255,255,255,255
FontSize=12
FontFace=Roboto-Bold
AntiAlias=1
Text="1°C"
Percentual=1
AutoScale=1

[MeterCPULabel]
Meter=STRING
Text="CPUTemp"
X=7
Y=6
FontColor=255,255,255,255
FontSize=12
FontFace=Roboto-Bold
AntiAlias=1

[MeterBar]
MeasureName=MeasureCPUTemp
Meter=BAR
X=10
Y=25
W=180
H=5
BarOrientation=HORIZONTAL
BarColor=255,255,255,255

[BarLine]
Meter=IMAGE
X=10
Y=30
W=180
H=5
SolidColor=255,255,255,50
mak_kawa
Posts: 908
Joined: December 30th, 2015, 9:47 am

Re: HWiNFO - first-timer

Post by mak_kawa »

Text="%1°C" in [MeterTemperature], maybe.
miniexpresso
Posts: 2
Joined: June 26th, 2017, 9:56 am

Re: HWiNFO - first-timer

Post by miniexpresso »

mak_kawa wrote:Text="%1°C" in [MeterTemperature], maybe.
Wow, that worked! Thanks, curious...
User avatar
jsmorley
Developer
Posts: 22628
Joined: April 19th, 2009, 11:02 pm
Location: Fort Hunt, Virginia, USA

Re: HWiNFO - first-timer

Post by jsmorley »

miniexpresso wrote:Wow, that worked! Thanks, curious...
Not really curious, just how binding measures to meters works in the Text option.

https://docs.rainmeter.net/manual/meters/string/#Text
Post Reply