mirror of
https://github.com/ratgdo/esphome-ratgdo.git
synced 2025-02-09 01:04:30 +00:00
27 lines
546 B
C++
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
|