mirror of
https://github.com/esphome/esphome.git
synced 2024-11-23 07:28:10 +01:00
fix(remote_receiver): Add missing pin setup for ESP32 (#1252)
This commit is contained in:
parent
f7e6195466
commit
704470d606
1 changed files with 1 additions and 0 deletions
|
@ -11,6 +11,7 @@ static const char *TAG = "remote_receiver.esp32";
|
||||||
|
|
||||||
void RemoteReceiverComponent::setup() {
|
void RemoteReceiverComponent::setup() {
|
||||||
ESP_LOGCONFIG(TAG, "Setting up Remote Receiver...");
|
ESP_LOGCONFIG(TAG, "Setting up Remote Receiver...");
|
||||||
|
this->pin_->setup();
|
||||||
rmt_config_t rmt{};
|
rmt_config_t rmt{};
|
||||||
this->config_rmt(rmt);
|
this->config_rmt(rmt);
|
||||||
rmt.gpio_num = gpio_num_t(this->pin_->get_pin());
|
rmt.gpio_num = gpio_num_t(this->pin_->get_pin());
|
||||||
|
|
Loading…
Reference in a new issue