mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02:00
28aedae8d7
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
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
|