19 lines
253 B
C
19 lines
253 B
C
|
|
//
|
||
|
|
// Created by lukas on 10.11.20.
|
||
|
|
//
|
||
|
|
|
||
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <Ticker.h>
|
||
|
|
#include "Temperature.h"
|
||
|
|
|
||
|
|
class Heating {
|
||
|
|
public:
|
||
|
|
void init(Temperature* tempsensor);
|
||
|
|
private:
|
||
|
|
Ticker mHeizungTicker;
|
||
|
|
Ticker mLuefterTicker;
|
||
|
|
|
||
|
|
bool mFanWaiting;
|
||
|
|
};
|