mirror of
https://github.com/justcallmekoko/ESP32Marauder.git
synced 2025-12-23 07:29:14 -08:00
* Adding new library, changing way of displaying texts (#118) * Adding custom icon for language button * Adding new library, changing way of displaying texts Added new library to make incoming translation possible to exists at the same time. * Prepare for flipper integration * More flipper wifi dev board work * Add command parse * Add set channel * Create bins for release v0.9.6 Co-authored-by: mlodawy <105587112+mlodawy@users.noreply.github.com>
25 lines
375 B
C++
25 lines
375 B
C++
#ifndef TemperatureInterface_h
|
|
#define TemperatureInterface_h
|
|
|
|
#include "configs.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
|