Start implementation of sensors wrapper, rename files and classes, sort usings

This commit is contained in:
2022-08-02 23:11:01 +02:00
parent 1da0844ae8
commit f7bd651121
8 changed files with 63 additions and 8 deletions

11
app/include/Nvidia.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef NVIDIA_H_
#define NVIDIA_H_
class Nvidia {
public:
Nvidia();
~Nvidia();
double get_gpu_temperature();
};
#endif // NVIDIA_H_