| 210 | } |
| 211 | |
| 212 | QVector<int> Operate::getFan2TempSettings() const { |
| 213 | QVector<int> a; |
| 214 | for (int i = 0; i < fanTempSettingsCount; i++) { |
| 215 | a.push_back(helper.getValue(fan2TempSettingStartAddress + i)); |
| 216 | } |
| 217 | return a; |
| 218 | } |
| 219 | |
| 220 | int Operate::getKeyboardBacklightMode() const { |
| 221 | if (helper.getValue(keyboardBacklightModeAddress) == keyboardBacklightAutoTurnOff) |
no test coverage detected