mirror of
https://github.com/esphome/esphome.git
synced 2025-04-13 14:20:29 +01:00
10 lines
206 B
C++
10 lines
206 B
C++
#include "emc2101_output.h"
|
|
|
|
namespace esphome {
|
|
namespace emc2101 {
|
|
|
|
void EMC2101Output::write_state(float state) { this->parent_->set_duty_cycle(state); }
|
|
|
|
} // namespace emc2101
|
|
} // namespace esphome
|