Files
PumpenSteuerung/src/Heating.h

22 lines
329 B
C
Raw Normal View History

2020-11-10 17:38:33 +01:00
//
// Created by lukas on 10.11.20.
//
#pragma once
#include <Ticker.h>
#include "Temperature.h"
class Heating {
public:
void init(Temperature* tempsensor, unsigned mode);
enum MODES {TIME, HUMIDITY};
2020-11-10 17:38:33 +01:00
private:
Ticker mHeizungTicker;
Ticker mLuefterTicker;
Ticker mTurnOffTicker;
2020-11-10 17:38:33 +01:00
bool mFanWaiting;
};