dbg_irremote
This commit is contained in:
parent
b633b6cbb7
commit
8bc22e33f6
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
#include <ExpansionCard.hpp>
|
#include <ExpansionCard.hpp>
|
||||||
#include <IRremote.hpp>
|
#include <IRremote.h>
|
||||||
#include <FRAM.h>
|
#include <FRAM.h>
|
||||||
#include <OneWire.h>
|
#include <OneWire.h>
|
||||||
#include <DS18B20.h>
|
#include <DS18B20.h>
|
|
@ -38,5 +38,4 @@ class ClimateIoT : public IoTComponent {
|
||||||
bool processSetModeMessage(char *topic, char *payload, uint8_t topic_length);
|
bool processSetModeMessage(char *topic, char *payload, uint8_t topic_length);
|
||||||
bool processSetFanSpeedMessage(char *topic, char *payload, uint8_t topic_length);
|
bool processSetFanSpeedMessage(char *topic, char *payload, uint8_t topic_length);
|
||||||
bool processRequestStateMessage(char *topic, char *payload, uint8_t topic_length);
|
bool processRequestStateMessage(char *topic, char *payload, uint8_t topic_length);
|
||||||
ClimateCard *card;
|
|
||||||
};
|
};
|
|
@ -2,6 +2,8 @@
|
||||||
#include <ExpansionCard.hpp>
|
#include <ExpansionCard.hpp>
|
||||||
#include <DigitalInputCard.hpp>
|
#include <DigitalInputCard.hpp>
|
||||||
#include <DigitalOutputCard.hpp>
|
#include <DigitalOutputCard.hpp>
|
||||||
|
#include <ClimateCard.hpp>
|
||||||
|
#include <AnalogCard.hpp>
|
||||||
#include <ESPMegaIoT.hpp>
|
#include <ESPMegaIoT.hpp>
|
||||||
#include <Arduino.h>
|
#include <Arduino.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
Loading…
Reference in New Issue