mirror of
https://github.com/esphome/esphome.git
synced 2024-11-24 07:58:09 +01:00
Update ebyte_lora_component.cpp
This commit is contained in:
parent
679676543d
commit
17e56598c7
1 changed files with 2 additions and 1 deletions
|
@ -418,7 +418,8 @@ void EbyteLoraComponent::loop() {
|
|||
ESP_LOGD(TAG, "Got switch info, making sure it is itself");
|
||||
// Make sure it is not itself
|
||||
if (network_id != data[1]) {
|
||||
for (int i = 2; i < data.size(); i = i + 2) {
|
||||
// last data bit is rssi
|
||||
for (int i = 2; i < data.size() - 1; i = i + 2) {
|
||||
uint8_t pin = data[i];
|
||||
bool value = data[i + 1];
|
||||
for (auto *sensor : this->sensors_) {
|
||||
|
|
Loading…
Reference in a new issue