-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
temps on Ryzen using zenpower module #8
Comments
This could be done, but I have no way to test it. Would you like to cooperate? |
I found this issue for the same reason. I am happy to help test it, @nwg-piotr |
All right. I think adding and reordering sensors on each feature request makes no sense. Someone will always remain unhappy. What we need is a flag to make the program use a certain sensor. If given, the To test, you'll need
We will use
It should display something like this:
Tell me what you think, and whether it works for you at all. |
Here you go:
And:
Looks good to me. Thank you @nwg-piotr FYI - If I run without specifying the temp input, I get the same as before:
And, to show you I'm not running k10 and only zenpower:
|
Yes, if you don't provide a sensor name, the old code will be executed. I tested at the office, and all looked good. I'll PR & merge later tonight. |
It seems if you use the dkms zenpower you need to add the line below and add it to the print out.
if temp.SensorKey == "zenpower_tctl_input" || temp.SensorKey == "zenpower_tdie_input" {
vals["zenpower"] = int(temp.Temperature)
}
It is possible to add temp on tctl,tdie,tccd1and tccd2 .
i am not well versed in go but maybe it would be possible to do a CPU temp with "tctl Xc|tdie Xc| tccd1 Xc| tccd2 Xc" so it shows all the temps ?? as a tctl often are higher than the ccd's as the often rise on work load.
the temp.SensorKey values are
zenpower_tctl_input
zenpower_tdie_input
zenpower_tccdX_input ( X depends on the amount of ccd's you have like Ryzen 9 series and EPIC and Threadripper has 2+ CCD's ).
The text was updated successfully, but these errors were encountered: