Rainmeter & AIDA64 - keine GPU-Temp

greate5t

Lt. Junior Grade
Registriert
Sep. 2005
Beiträge
310
Hallo zusammen. Ich habe ein kleines Problem.

Die Grundlage ist:
http://browse.deviantart.com/customization/skins/sysmonitor/rainmeter/#/d5kkt4x

nun habe ich den Code ein bissl angepasst und der Skin zeigt nun die Temperatur.
Das klappt bei der CPU
Das klappt bei den HDD
Das klappt NICHT bei den 2 GPU!!!

In der Reg kann ich sehen, daß die GPU-Temp ausgelesen und gespeichert wird. Warum der Skin bei der GPU nicht funktioniert kann ich irgendwie nicht herausfinden. Kann bitte jemand helfen?
 
gern!

PHP:
;##############################################################################
; GRAYHOUND GPU
;##############################################################################
   
;------------------------------------------------------------------------------
; METADATA

[Metadata]
Name=Grayhound
Author=Sundance
Version=1.1.0
License=Free
Information=Displays GPU 2 cores usage.
   
;------------------------------------------------------------------------------
; RAINMETER

[Rainmeter]
  
;------------------------------------------------------------------------------
; VARIABLES

[Variables]
; Colors
Blue=83,124,164
Green=180,255,180
Pink=255,200,200
Red=255,124,124
White=255,255,255
Yellow=255,200,100

; Set the base color for this skin
Color=#Green#

; Set the caption for this skin
Gpu1Caption="Core 1"
Gpu2Caption="Core 2"

; Font settings
FontColor=#White#, 255
FontFace=Tahoma
FontSize=8                                                                                

; Histogram settings
HistoLineColor=#Color#, 180
HistoFillColor=#Color#, 60

; Set to 1 to show a top line. 0 for none.
ShowTopLine=1

; Bar settings
BarColor=#Color#, 200
BarColorBgFrom=#White#, 60
BarColorBgTo=#White#, 40

;------------------------------------------------------------------------------
; MEASURES


[getGPU1] ; Get GPU1 Usage
Measure=Registry
RegHKey=HKEY_CURRENT_USER
RegKey=Software\FinalWire\AIDA64\SensorValues
RegValue=Value.SGPU1UTI

[getGPU2] ; Get GPU2 Usage
Measure=Registry
RegHKey=HKEY_CURRENT_USER
RegKey=Software\FinalWire\AIDA64\SensorValues
RegValue=Value.SGPU2UTI

[getGPU1temp] ; Get GPU Temp
Measure=Registry
RegHKey=HKEY_CURRENT_USER
RegKey=Software\FinalWire\AIDA64\SensorValues
RegValue=Value.TGPU1DIOD

[getGPU2temp] ; Get GPU Temp
Measure=Registry
RegHKey=HKEY_CURRENT_USER
RegKey=Software\FinalWire\AIDA64\SensorValues
RegValue=Value.TGPU2DIOD





;------------------------------------------------------------------------------
; METERS 

[showTopLine]
Meter=Image
X=0
Y=0
W=325
H=#showTopLine#
SolidColor=255, 255, 255, 60

[showIcon]
Meter=Image
X=12
Y=8
ImageName=geforce.png

;==================
;/// Core 1 Info ///
;==================

[showGPU1Caption]
Meter=String
X=75
Y=10
AntiAlias=1
FontColor=#FontColor#
FontFace=#FontFace#
FontSize=#FontSize#
StringAlign=Left
StringStyle=Bold
Text=#GPU1Caption#

[showGPU1LeftText]
MeasureName=getGPU1
Meter=String
X=r
Y=15r
AntiAlias=1
AutoScale=1
FontColor=#FontColor#
FontFace=#FontFace#
FontSize=#FontSize#
StringAlign=Left
Text="%1 %"

[Core1Temp]
Meter=String
MeasureName=getGPU1temp
X=325
Y=r
AntiAlias=1
AutoScale=1
FontColor=#FontColor#
FontFace=#FontFace#
FontSize=#FontSize#
StringAlign=Right
Text="%1°C"

[showGPU1Bar]
MeasureName=getGPU1
Meter=Bar
X=130
Y=60
W=150
H=5
BarColor=#BarColor#
SolidColor=#BarColorBgFrom#
SolidColor2=#BarColorBgTo#
BarOrientation=Horizontal

[showGPU1Line]
MeasureName=getGPU1
Meter=Line
X=r
Y=10
H=50
W=150
AntiAlias=1
AutoScale=0
Flip=0
LineCount=1
LineColor=#HistoLineColor#

[showGPU1Histogram]
MeasureName=getGPU1
Meter=Histogram
X=r
Y=r
H=50
W=150
AntiAlias=1
AutoScale=0
Flip=0
PrimaryColor=#HistoFillColor#


;==================
;/// Core 2 Info ///
;==================

[showGPU2Caption]
Meter=String
X=75
Y=75
AntiAlias=1
FontColor=#FontColor#
FontFace=#FontFace#
FontSize=#FontSize#
StringAlign=Left
StringStyle=Bold
Text=#GPU2Caption#

[showGPU2LeftText]
MeasureName=getGPU2
Meter=String
X=r
Y=15r
AntiAlias=1
AutoScale=1
FontColor=#FontColor#
FontFace=#FontFace#
FontSize=#FontSize#
StringAlign=Left
Text="%1 %"

[Core2Temp]
Meter=String
MeasureName=getGPU2temp
X=325
Y=r
AntiAlias=1
AutoScale=1
FontColor=#FontColor#
FontFace=#FontFace#
FontSize=#FontSize#
StringAlign=Right
Text="%1°C"

[showGPU2Bar]
MeasureName=getGPU2
Meter=Bar
X=130
Y=35r
W=150
H=5
BarColor=#BarColor#
SolidColor=#BarColorBgFrom#
SolidColor2=#BarColorBgTo#
BarOrientation=Horizontal

[showGPU2Line]
MeasureName=getGPU2
Meter=Line
X=r
Y=-50r
H=50
W=150
AntiAlias=1
AutoScale=0
Flip=0
LineCount=1
LineColor=#HistoLineColor#

[showGPU2Histogram]
MeasureName=getGPU2
Meter=Histogram
X=r
Y=r
H=50
W=150
AntiAlias=1
AutoScale=0
Flip=0
PrimaryColor=#HistoFillColor#
 
Zurück
Oben