diff --git a/esphome/components/ebyte_lora_e220/lora_e220.cpp b/esphome/components/ebyte_lora_e220/lora_e220.cpp index 0c3483e760..412fb2d50c 100644 --- a/esphome/components/ebyte_lora_e220/lora_e220.cpp +++ b/esphome/components/ebyte_lora_e220/lora_e220.cpp @@ -1,4 +1,5 @@ #include "lora_e220.h" +#define bitRead(value, bit) (((value) >> (bit)) & 0x01) namespace esphome { namespace lora_e220 { LoRa_E220::LoRa_E220(esphome::uart::UARTDevice *serial, GPIOPin *auxPin, GPIOPin *m0Pin,