Fork of the espurna firmware for `mhsw` switches
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
/*
|
|
|
|
THERMOSTAT MODULE
|
|
|
|
Copyright (C) 2017 by Dmitry Blinov <dblinov76 at gmail dot com>
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ArduinoJson.h>
|
|
#include <float.h>
|
|
|
|
#if THERMOSTAT_DISPLAY_SUPPORT
|
|
#include <SSD1306.h> // alias for `#include "SSD1306Wire.h"`
|
|
#endif
|
|
|
|
using thermostat_callback_f = std::function<void(bool state)>;
|
|
void thermostatRegister(thermostat_callback_f callback);
|