Become a leader in the IoT community!

New DevHeads get a 320-point leaderboard boost when joining the DevHeads IoT Integration Community. In addition to learning and advising, active community leaders are rewarded with community recognition and free tech stuff. Start your Legendary Collaboration now!

Step 1 of 5

CREATE YOUR PROFILE *Required

OR
Step 2 of 5

WHAT BRINGS YOU TO DEVHEADS? *Choose 1 or more

Collaboration & Work 🤝
Learn & Grow 📚
Contribute Experience & Expertise 🔧
Step 3 of 5

WHAT'S YOUR INTEREST OR EXPERTISE? *Choose 1 or more

Hardware & Design 💡
Embedded Software 💻
Edge Networking
Step 4 of 5

Personalize your profile

Step 5 of 5

Read & agree to our COMMUNITY RULES

  1. We want this server to be a welcoming space! Treat everyone with respect. Absolutely no harassment, witch hunting, sexism, racism, or hate speech will be tolerated.
  2. If you see something against the rules or something that makes you feel unsafe, let staff know by messaging @admin in the "support-tickets" tab in the Live DevChat menu.
  3. No age-restricted, obscene or NSFW content. This includes text, images, or links featuring nudity, sex, hard violence, or other graphically disturbing content.
  4. No spam. This includes DMing fellow members.
  5. You must be over the age of 18 years old to participate in our community.
  6. Our community uses Answer Overflow to index content on the web. By posting in this channel your messages will be indexed on the worldwide web to help others find answers.
  7. You agree to our Terms of Service (https://www.devheads.io/terms-of-service/) and Privacy Policy (https://www.devheads.io/privacy-policy)
By clicking "Finish", you have read and agreed to the our Terms of Service and Privacy Policy.

Learning LoRa ( using RYLR998 ) seeking for guidance

@umeshlokhande @techielew @all a few days back, I kick started working with LoRa from @umeshlokhande ‘s YouTube video on LoRa
👇 Here is the link

Key takeaways from video and web are:
Why LoRa, How LoRa works.
How to configure Module using AT command.
Usecase of LoRa.
and more…
After a fair understanding of RYLR998.
I started with RYLR998 LoRa modules
I’m able to configure 2 RYLR998’s using USB to UART TTL converter.

Your guidance is appreciated. Queries are asked in next post

  1. ajaykumar_v#0

    What I did till now with LoRa modules:
    1. Configured RYLR998 using USB to UART converter.
    2. Tried to send count value 0 to 3 digits ex: 500 using Arduino and LoRa(1) to other LoRa(2) module which is directly connected to USB to UART converter received and view values sent by LoRa(1).

    I’m not received any data from LoRa(1) at LoRa2). What could be the reason.

    Note:
    Both LoRa’s are in same NETWORKID,
    PARAMETERS,
    Baud Rate and rest are all same.

    But different:
    ADDRESS

    Q: How can we increase the operating range from a few meters to kilometres?

  2. ajaykumar_v#0

    “`c
    #include

    #define RX 0
    #define TX 1

    SoftwareSerial LoRaSerial(RX, TX); // Rx, Tx
    String lora_band =”865062500″;
    String lora_networkid=”10″;
    String lora_address =”5″;
    String lora_tx_address = “6”;
    int i=0;
    unsigned long lastTransmitTime = 0;
    void setup() {
    // put your setup code here, to run once:
    Serial.begin(115200); // Initialize USB Serial
    delay(1000);

    LoRaSerial.begin(115200); // Initialize Software Serial
    delay(1000);
    // Configure LoRa module at Startup
    LoRaSerial.println(“AT+BAND=” + lora_band);
    Serial.println(“AT+BAND=” + lora_band);
    delay(1000);
    LoRaSerial.println(“AT+ADDRESS=” + lora_address);
    Serial.println(“AT+ADDRESS=” + lora_address);
    delay(1000);
    LoRaSerial.println(“AT+NETWORKID=” + lora_networkid);
    Serial.println(“AT+NETWORKID=” + lora_networkid);

    }

    void loop() {
    if (millis() – lastTransmitTime >= 1000)
    {
    lastTransmitTime = millis();
    // put your main code here, to run repeatedly:
    send_data(String(i));
    i++;
    delay(2000);
    }
    }

    void send_data(String message)
    {
    String mymessage;
    mymessage = “AT+SEND=” + String(lora_tx_address)+”,” + message.length() + “,” + message + “\r\n”;
    LoRaSerial.println(mymessage);
    Serial.print(“Data Sent : “);
    Serial.print(mymessage);
    delay(250);
    }
    “`

  3. umeshlokhande#0

    Hi, @ajaykumar_v I’d suggest setting the same *Address* for both RYLR998 Lora radio modules. And test if both Lora modules communicate using AT commands *(as shown in the video)*. Please note that the default baud rate is 115200 (factory setting) whereas in my code and testing, I changed it to a 9600 baud rate. So if you’re following the instructions from my video then you’ve to modify your code `Serial.begin(9600);` I hope this will help. Let me know as you progress in your project. Best wishes!

  4. ajaykumar_v#0

    Thank you @umeshlokhande for your response .
    I tried with 9600 baud as well, 115200 is the default one so I left as it is. Definitely I’ll let you know the progress once I restart my hobby project.
    And again thank you for valuable information.

  5. ajaykumar_v#0

    Hi @umeshlokhande @techielew
    Happy Deewali. Thank you for all your support. A few days back I finished FreeRTOS based LoRa point to point communication using STM32 Dev board. I dropped the plan of doing LoRa project using Arduino I wanted to get exposure outside of Arduino so I took a step forward and went to the ST dev board.
    I’m happy to share a few seconds demo.
    This demo shows when the push button is pressed on the Development board (A) it will send ON command to Development board (B)
    Thank you again @all
    LoRa_STM32_demo.mp4

  6. techielew#0

    Any code you can share @ajaykumar_v ?

  7. techielew#0

    we can throw it into a repo

  8. techielew#0

    or fork if you already have one

  9. ajaykumar_v#0

    I think I need to restructure the design to fix the issues currently has. I’ll let you know the update of code sharing after uploading to git

  10. ajaykumar_v#0

    Thank you for your support @techielew

CONTRIBUTE TO THIS THREAD

Browse other Product Reviews tagged

Leaderboard

RANKED BY XP

All time
  • 1.
    Avatar
    @Nayel115
    1620 XP
  • 2.
    Avatar
    @UcGee
    650 XP
  • 3.
    Avatar
    @melta101
    600 XP
  • 4.
    Avatar
    @lifegochi
    250 XP
  • 5.
    Avatar
    @Youuce
    180 XP
  • 6.
    Avatar
    @hemalchevli
    170 XP