arduino-heatpumpir/HeatpumpIR.cpp

30 lines
504 B
C++
Raw Normal View History

#include <HeatpumpIR.h>
HeatpumpIR::HeatpumpIR()
{
}
2020-02-15 20:46:39 +08:00
HeatpumpIR::~HeatpumpIR()
{
}
// This is a virtual function, i.e. never called
void HeatpumpIR::send(IRSender&, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t, uint8_t)
{
}
// Send ambient temperature. This is a virtual function, i.e. never called
void HeatpumpIR::send(IRSender&, uint8_t)
{
}
// Heatpump model and info getters
2015-04-05 17:04:22 +08:00
const char PROGMEM* HeatpumpIR::model()
{
return _model;
}
2015-04-05 17:04:22 +08:00
const char PROGMEM* HeatpumpIR::info()
{
return _info;
}