show mV without decimal places
This commit is contained in:
parent
8efa73b1ca
commit
745a971684
@ -250,7 +250,7 @@ String getCurrentTemperature() {
|
||||
}
|
||||
|
||||
String getCurrentVCore() {
|
||||
return String(nerdnos_get_vcore(), 2);
|
||||
return String(nerdnos_get_vcore(), 0);
|
||||
}
|
||||
#else
|
||||
String getCurrentHashRate(unsigned long mElapsed)
|
||||
@ -263,7 +263,7 @@ String getCurrentTemperature() {
|
||||
}
|
||||
|
||||
String getCurrentVCore() {
|
||||
return String(0.0, 2);
|
||||
return String(0.0, 0);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user