-
-
Save Danysan1/a84b1404d7a43b830f3a8bb82934e254 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Header - Clocks | |
if(validCoreClock) | |
ui->l_cClk->setText(format_GPUClock); | |
else | |
ui->l_cClk->clear(); | |
if(validMemoryClock) | |
ui->l_mClk->setText(format_memoryClock); | |
else | |
ui->l_mClk->clear(); | |
// Header - Volts | |
if(validMemoryVolt) | |
ui->l_mVolt->setText(format_memoryVoltage); | |
else | |
ui->l_mVolt->clear(); | |
if(validCoreVolt) | |
ui->l_cVolt->setText(format_GPUVoltage); | |
else | |
ui->l_cVolt->clear(); | |
// Header - Temperature | |
ui->l_temp->setText(format_currentTemp); | |
// Header - Fan speed | |
if(validPwmSpeed) | |
ui->l_fanSpeed->setText(format_fanSpeed); | |
else | |
ui->l_fanSpeed->clear(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment