https://github.com/electronicsstudio/lora_e5_hf-module-by-seeed-studio
Transmitter_Code_trial_1 In this code, I created a setup for the LoRa-E5 module, using the LoRa module and an RTC with an Arduino. I then send the current RTC time using the LoRa module over a command (CMD).
https://github.com/electronicsstudio/lora_e5_hf-module-by-seeed-studio
Last synced: 7 months ago
JSON representation
Transmitter_Code_trial_1 In this code, I created a setup for the LoRa-E5 module, using the LoRa module and an RTC with an Arduino. I then send the current RTC time using the LoRa module over a command (CMD).
- Host: GitHub
- URL: https://github.com/electronicsstudio/lora_e5_hf-module-by-seeed-studio
- Owner: electronicsstudio
- Created: 2024-11-13T17:48:22.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-13T18:41:37.000Z (about 1 year ago)
- Last Synced: 2025-05-16T14:50:59.560Z (9 months ago)
- Language: C++
- Homepage:
- Size: 9.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LoRa_E5_HF-module-by-Seeed-Studio.
In this repository, you will learn the complete details about the LoRa_E5_HF module by Seeed Studio.
/* So, guys, in this repository, I’ve provided all the reference material related to the LoRa_E5_HF module by Seeed Studio. You’ll find two
code files: “Receiver_Code_Trial_1” and “Transmitter_Code_Trial_1,” which you can use for reference. */
Transmitter_Code_Trial_1
In this code, I created a setup for the LoRa-E5 module using the LoRa module and the RTC DS3231 module with an Arduino UNO controller. First, I obtain the current time from the RTC, then transmit this time using the LoRa module over a command (CMD). The RTC module is connected via I2C, which is available on the UNO board, and the LoRa module uses pins 6 (TX) and 7 (RX).
To use this LoRa module, we must first send a CMD after powering up, then we can transmit data to the desired location.
Receiver_Code_Trial_1
In this code, I created a setup for the LoRa-E5 module using the LoRa module and an ESP32. First, I send a CMD to set it up as a receiver, after which it displays the data coming from the transmitter side.
To use this LoRa module, we must first send a CMD after powering up, and then we can receive data as needed.