2024-07-24 20:52:29 -04:00

27 lines
546 B
C++

#include "esphome/core/log.h"
#include "ratgdo_output.h"
namespace esphome {
namespace ratgdo {
static const char *TAG = "ratgdo.output";
void RATGDOFloatOutput::setup(){
ESP_LOGD("yyy","Output was setup");
//this->parent_->door_stop();
}
void RATGDOFloatOutput::write_state(float state){
}
void RATGDOFloatOutput::dump_config() {
ESP_LOGCONFIG(TAG, "Empty custom float output");
}
void RATGDOFloatOutput::set_output_type(OutputType output_type_) {
this->output_type_ = output_type_;
}
} //namespace ratgdo
} //namespace esphome