mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-24 06:38:29 +02:00
21 lines
677 B
C++
21 lines
677 B
C++
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/log.h"
|
|
#include "sx1509_gpio_pin.h"
|
|
|
|
namespace esphome {
|
|
namespace sx1509 {
|
|
|
|
static const char *const TAG = "sx1509_gpio_pin";
|
|
|
|
void SX1509GPIOPin::setup() {
|
|
ESP_LOGD(TAG, "setup pin %d", this->pin_);
|
|
this->parent_->pin_mode(this->pin_, this->mode_);
|
|
}
|
|
|
|
void SX1509GPIOPin::pin_mode(uint8_t mode) { this->parent_->pin_mode(this->pin_, mode); }
|
|
bool SX1509GPIOPin::digital_read() { return this->parent_->digital_read(this->pin_) != this->inverted_; }
|
|
void SX1509GPIOPin::digital_write(bool value) { this->parent_->digital_write(this->pin_, value != this->inverted_); }
|
|
|
|
} // namespace sx1509
|
|
} // namespace esphome
|