Results 10 comments of Jaishankar

Thanks for sharing the details I am using the NodeMCU(ESP8266) on one side and Raspberry pi Pico W on another side with SX1262 lora module Currently I am facing lot...

1. Is there any way to conform the connection between the ESP32 and SX1262 module working? [In RadioLib check function is available] 2. If there is problem in latest version,...

@beegee-tokyo 1. Now I tested the SPI is connection is fine ************************************************************************************************************************* **Manually I added the Code:** // Initialize the LoRa chip Serial.println("Starting lora_hardware_init"); uint32_t err_code = lora_hardware_init(hwConfig); if (err_code...

My Final Idea is to build the home automation product as Single Channel LoRaWAN Gateway (https://github.com/beegee-tokyo/SX1262-SC-GW) or Add with ESPhome (https://github.com/PaulSchulz/esphome-lora-sx126x) So your support will greatly helps me!!!

Thanks for your suggestion I will go with ESPhome Integration (https://github.com/PaulSchulz/esphome-lora-sx126x) To move forward, I want understand the send & receiving data with this library to use this [esphome-lora-sx126x] Library...

Yes I have the schematics **ESP32 and Lora Module schematics** ![image](https://github.com/beegee-tokyo/SX126x-Arduino/assets/45547294/4f6cb611-4392-4bf0-b6a4-9387564a30ad) | ![image](https://github.com/beegee-tokyo/SX126x-Arduino/assets/45547294/0a9265f5-e120-4cc3-8c52-c88229bd72f4) **Lora Module SX1262(Waveshare) Schematics** ![image](https://github.com/beegee-tokyo/SX126x-Arduino/assets/45547294/1f35f414-1d55-4cb2-a420-f9f045721d08)

Connect RX_EN to GPIO18 & TX_EN to DIO2. ![image](https://github.com/beegee-tokyo/SX126x-Arduino/assets/45547294/17494b8d-ed30-41ab-876a-351c743f1160) I done this hardware change and in code added below line pinMode(18, OUTPUT); digitalWrite(18, HIGH); hwConfig.USE_DIO2_ANT_SWITCH = hwConfig.USE_DIO2_ANT_SWITCH; // LORA DIO2...

Atleast if you provide some idea on problem coming in system my from the above log, helps me to move on step on debug. Is it possible you share to...

@OtarieSupreme As of now, I didn't any solution in ESPHome side. But as a work around, I am using the tasmota with same Hardware. Refer [link](https://tasmota.github.io/docs/LoRa-and-LoRaWan-Bridge/)

@olikraus When I tried the ACROBOTIC_SSD1306 library display working fine. Only issue is rising while using this U8g2 library. Refer to the post for more details & code Used. https://community.platformio.org/t/ssd1306-display-is-not-working-on-bluepill-board-stm32f103/43752/6?u=jaishankar...