Change some variable names, add stubs for sensor interface and an implementation

This commit is contained in:
2022-09-07 22:12:55 +02:00
parent 39310ad4d2
commit f152f1471d
4 changed files with 31 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
#ifndef HWMONTEMPERATURESENSOR_H_
#define HWMONTEMPERATURESENSOR_H_
#include <TemperatureSensor.h>
class HwmonTemperatureSensor : public TemperatureSensor {
public:
int getTemperature() override;
};
#endif // HWMONTEMPERATURESENSOR_H_