mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-05 20:40:25 -08:00
23 lines
353 B
C++
23 lines
353 B
C++
#ifndef TemperatureInterface_h
|
|
#define TemperatureInterface_h
|
|
|
|
#include <Arduino.h>
|
|
|
|
class TemperatureInterface {
|
|
|
|
private:
|
|
uint32_t initTime = 0;
|
|
|
|
public:
|
|
TemperatureInterface();
|
|
|
|
uint8_t current_temp = 0;
|
|
uint8_t old_temp = 0;
|
|
|
|
uint8_t getCurrentTemp();
|
|
void RunSetup();
|
|
void main(uint32_t currentTime);
|
|
};
|
|
|
|
#endif
|