Hi, friends ! iam going to show you how to make LoRa (rfm95) Weather Station With Arduino & Sensors this is a simple project does not require high knowledge about arduino and electronics this is an intermediate level project, so its kind of okay to you. I tried my best to document this project to you, to look simple. so you can also make this project as I do.
There are various sensor monitoring methods are available some of them using IoT and others using offline protocols like Bluetooth and BLE. But the offline method doesn’t offer a good range and online methods are expensive and very compilated. Today, we are going to make a simple sensor monitoring system using LoRa (long range radio). LoRa supports a very long range of 7-10 miles and data can be transferred without internet. It is quite similar to walkie talkie.
LoRa:LoRa is a radio modulation technique that is essentially a way of manipulating radio waves to encode information using a chirped (chirp spread spectrum technology), multi-symbol format. LoRa as a term can also refer to the systems that support this modulation technique or the communication network that IoT applications use.
he main advantages of LoRa are its long-range capability and its affordability. A typical use case for LoRa is in smart cities, where low-powered and inexpensive internet of things devices (typically sensors or monitors) spread across a large area send small packets of data sporadically to a central administrator.
LoRa work on different frequencies and different modules are available for different country. You can see the Wikipedia article to know more about more advance protocols over LoRa like LORAWAN and alliance. I am using LoRa RF95W module from Ai thinker on 915MHz frequency.
433E6 for Asia
868E6 for Europe/Africa
915E6 for North America
LoRa RF95W Module is available in two forms - SMD Form and Breakout Board Form. I would recommend ( and use ) the breakout board type as it is easy to use and breadboard friendly. Before starting the project, we have to solder the header pins on the LoRa Breakout board. Be careful not to overheat the board.
How to Program LoRa RF95W Using Arduino IDE :
1. Go to Files -> Preferences and paste the given link in Additional Boards Manager and select OK.
http://www.arduino.org/learning/reference/LoRaNode
2. Go to Tools -> Board and select Board Manager.
3. Search for LoRa by sandeep mistry An Arduino Library for sending and receiving data using LoRa radios.0.8.0 version
4. Go to Tools -> Boards, navigate and select Arduino uno. Now, your Arduino IDE is ready to program on LoRa RF95W.
Here I am using LoRa library by Sandeep Mistry, it is very well optimized library for SPI protocol LoRa modules. You can also see more examples and go through each of them in order to make some new projects.
Importing Libraries :We will use two new libraries. So we need to import it from its source. This can be done from the Arduino IDE.
1. Go to Sketch -> Include Library -> Manage Libaraies
2. Search for LoRa by Sandeep Mistry, select latest version and install.
You can also use an Arduino Uno, if you don't have an Arduino Nano.
Transmitter
Receiver
Comments