Files
PumpenSteuerung/src/Heating.h

19 lines
253 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);
private:
Ticker mHeizungTicker;
Ticker mLuefterTicker;
bool mFanWaiting;
};