Merge pull request #3674 from PassiHD2004/master

Add warning threshold to temperature module
This commit is contained in:
Alexis Rouillard
2024-10-25 08:52:44 +02:00
committed by GitHub
3 changed files with 21 additions and 2 deletions

View File

@ -18,6 +18,7 @@ class Temperature : public ALabel {
private:
float getTemperature();
bool isCritical(uint16_t);
bool isWarning(uint16_t);
std::string file_path_;
util::SleeperThread thread_;