From 844e78f3ccfdea769303bbe9387216ffa23c5553 Mon Sep 17 00:00:00 2001 From: timmbogner <64260873+timmbogner@users.noreply.github.com> Date: Fri, 18 Dec 2020 07:56:29 -0600 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 22e6bd8..7d73a79 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,5 @@ # Farm-Data-Relay-System -A system that uses a series of ESP-NOW repeaters to transmit data to and from buildings and sensors without WiFi access. + +I designed this system for the purpose of retrieving sensor data from my community farm, which is out of range of any WiFi access point. + +Each sensor is connected to an ESP8266, which sends its data reading, along with a unique identifier to another ESP8266 known as the terminal via ESP-NOW. The terminal collects each reading in an array, and periodically submits them to a data relay. Each data relay is programmed with the address of a device both upsteam and downstream, and will simply send every ESP-NOW packet it recieves to the opposite of where it came. The final relay should be within distance of the gateway, which accesses the cloud and does something with the data.