Search found 1 match
- Mon May 29, 2023 7:50 pm
- Forum: ESP IoT Solution
- Topic: How to pass AT commands to Lora from ESP32 UART?
- Replies: 0
- Views: 33475
How to pass AT commands to Lora from ESP32 UART?
Hello, I have connected "Reyax RYLR998" Lora module to ESP32 UART2, but AT commands passed through Hardware serial not working. #define RXD2 16 #define TXD2 17 void setup() { Serial.begin(115200); Serial2.begin(115200, SERIAL_8N1, RXD2, TXD2); Serial.print("\nSetting Lora Module \n"); Serial2.print(...