Show VCore as Float Value not Int?
ralleh opened this issue · 4 comments
Hey,
I wanna display the VCore Reading on my Stream Deck via ur plugin, but somehow I cannot get the right settings for the actual VCore to be displayed (always showing an Int, not the Float):
Is there a way to get the real VCore Reading (1.421V instead of just 1V)?
Thanks a lot in advance, also for your great work with this plugin!
Kind regards,
Ralf
In Advanced if you change the format to %f
does it show the proper float value?
In Advanced if you change the format to
%f
does it show the proper float value?
Thanks a lot, that worked!
It shows the full VCore value (as in 1,34093) now, though. Is there a syntax/way to cut it after the first 2 digits, to get the "normal" 1,34V reading, by any chance?
%.2f
should do it
Thanks a lot, really appreciated!