RS485-LoRa Wireless Station

From MakerFabsWiki
Revision as of 00:44, 22 October 2021 by Hefang (talk | contribs) (Introduction)

Jump to: navigation, search

Introduction

With the development of agricultural modernization and the popularization of precision agriculture, the measurement of soil parameters such as temperature, moisture, PH and so on, becomes more and more important. How to measure or obtain this data has become a focus.

RS485-LoRa Wireless station is developed by Makerfabs, and intends for these applications of agriculture,it is mainly composed of 2 parts:

1. Remote monitor station with RS485: developed by Makerfabs, it converts the RS485 signal, which is usually used in agricultural field applications, to wireless connections WIFI (if there is) or Lora, or Bluetooth.
2. Industrial-grade Soil Sensor: unlike some other maker-level soil sensors that only output analog voltage that reflects the soil status/changes but not the absolute value, this sensor measures the soil parameters such Temperature/Moisture/PH/Nitrogen/ Phosphorus/Potassium.., with calculated true output, so users can get to know the real soil parameters.

This soil remote monitor(RS485-LoRa wireless station) has stable performance and high sensitivity, also is used to be a tool for observing and studying the occurrence, evolution, and improvement of saline soil and the dynamics of water and salt. The station is suitable for soil moisture monitoring, scientific experiments, water-saving irrigation, greenhouse, flowers and vegetables, grassland and pasture, plant cultivation, sewage treatment, fine agriculture, and other occasions.

Model: RS485-LoRa Wireless Station

RS485-LoRa Wireless station 001.jpg

Features

  • ESP32 WROOM module onboard with the WiFi and Bluetooth
  • Arduino Compatible: You can play it with Arduino IDE
  • Onboard LoRa module (433Mhz or 868Mhz or 915Mhz)
  • 0.91inch I2C OLED display
  • Sensor part is waterproof, completely sealed.
  • Measuring range: -40℃~80℃,0~100% moisture
  • Measuring accuracy: ±0.5℃,±3% moisture
  • Communication distance: 2km or more
  • Power by Micro USB, battery or DC 5V
  • 1000mAh battery, charger IC onboard

Hardware Overview

RS485-LoRa Wireless station 002.jpg

  • Interface

RS485-LoRa Wireless station 003.jpg

  • Wiring

RS485-LoRa Wireless station 004.jpg

Display value on screen

Let's start to get the temperature and moisture of the soil by using the RS485-LoRa wireless station and show them on the onboard screen.
1.Refer to the wiring details, connect the sensor to the board.
2.Connect the board to PC via Micro-USB cable, and open the code by Arduino IDE, the demo code (RS485_LoRa_default.ino) is available from Github.
3.Install the ESP32 board library (ESP32 V1.0.4) to support ESP32 working.

RS485-LoRa Wireless station 005.jpg

4.Install the Adafruit GFX library (V1.10.11) and Adafruit SSD1306 library (V2.4.6).

RS485-LoRa Wireless station 006.jpg
RS485-LoRa Wireless station 007.jpg

5.Verify the code and upload it to the board.
6.Reset it, and put the sensor probe into the measured soil, you will see the temperature and moisture on the screen.

RS485-LoRa Wireless station 008.jpg
RS485-LoRa Wireless station 009.jpg

Display value on webpage

According to the previous demo, this demo would show the value on the webpage by WiFi.
1.The same as the previous demo to connect, install the libraries, the demo code (RS485-display-webpage.ino) also is available on GitHub.
2.Open the code by Arduino IDE, it is required to modify the WiFi information for connecting your WiFi.

RS485-LoRa Wireless station 010.jpg

3.Verify the code and upload it to the board.
4.Reset the board and the screen would show the IP address. If no IP address shown on the screen, may the WiFi connection be failed, please reset the board.

RS485-LoRa Wireless station 011.jpg

5.Type the IP address to the browser on PC or phone, the measuring value would be shown on the webpage.

RS485-LoRa Wireless station 012.jpg

Transmission by LoRa

1.As the same previous demo to install libraries on Arduino IDE if you have not yet, besides, it is required to install the LoRa library (RadioLib.h) to drive the LoRa module.

RS485-LoRa Wireless station 013.jpg

2.Upload the code to the board that the code (RS485-LoRa-Transmit.ino) is available on GitHub, and it would obtain the sensor measuring and transmit the values by LoRa. Besides, it is required to prepare another LoRa device to receive the data. If you want any LoRa device, please check here for one.
3.The LoRa device I used in the demo is the ESP32 one, that the detail of this device is available on here.
4.Get the ESP32 board and upload the LoRa receiver code to it. The receiver code (RS485-LoRa-Receiver.ino) is available on GitHub.
5.Wait a moment, it will receive the measuring value through LoRa and display them on the screen.

RS485-LoRa Wireless station 014.jpg

FAQ

You can list your questions here or contact with support@makerfabs.com for technology support.

Resources