Skip to content

Commit

Permalink
t
Browse files Browse the repository at this point in the history
  • Loading branch information
AzonInc committed May 21, 2024
1 parent 20cc7e0 commit 7f538ab
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions components/tcs_intercom/tcs_intercom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,11 +37,11 @@ namespace esphome

if(ver[0] > 0)
{
const gpio_num_t scl_pin = static_cast<gpio_num_t>(22);
const gpio_num_t sda_pin = static_cast<gpio_num_t>(23);
const gpio_num_t rx_pin = static_cast<gpio_num_t>(22);
const gpio_num_t tx_pin = static_cast<gpio_num_t>(23);

this->rx_pin_->set_pin(scl_pin);
this->rx_pin_->set_pin(sda_pin);
this->rx_pin_ = rx_pin;
this->tx_pin_ = tx_pin;
}


Expand Down

0 comments on commit 7f538ab

Please sign in to comment.