mirror of
https://github.com/esphome/esphome.git
synced 2025-03-26 20:48:19 +00:00
17 lines
341 B
C++
17 lines
341 B
C++
#include "gpio_binary_output.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace gpio {
|
|
|
|
static const char *const TAG = "gpio.output";
|
|
|
|
void GPIOBinaryOutput::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "GPIO Binary Output:");
|
|
LOG_PIN(" Pin: ", this->pin_);
|
|
LOG_BINARY_OUTPUT(this);
|
|
}
|
|
|
|
} // namespace gpio
|
|
} // namespace esphome
|