├── .gitignore ├── Controllers ├── FastLED │ ├── DataReading.h │ └── FastLED.ino ├── Irrigation │ └── Irrigation.ino ├── Lantern_8266 │ └── Lantern_8266.ino └── README.md ├── Examples ├── 1_LoRa_Sensor │ ├── 1_LoRa_Sensor.ino │ ├── fdrs_sensor.h │ └── sensor_config.h ├── 2_ESPNOW_Sensor │ ├── 2_ESPNOW_Sensor.ino │ ├── Sensor_setup.h │ └── fdrs_sensor.h ├── 3_ESPNOW_Gateway │ ├── 3_ESPNOW_Gateway.ino │ ├── fdrs_config.h │ └── fdrs_functions.h ├── 4_UART_Gateway │ ├── 4_UART_Gateway.ino │ ├── fdrs_config.h │ └── fdrs_functions.h ├── 5_MQTT_Gateway │ ├── 5_MQTT_Gateway.ino │ ├── fdrs_config.h │ └── fdrs_functions.h └── FDRS_Install │ ├── Instructions.txt │ └── fdrs_globals.h ├── FDRS_Gateway2000 ├── Advanced_Setup.png ├── Advanced_Setup_LoRa.png ├── Basic_LoRa_Setup.png ├── Basic_Setup.png ├── DataReading.h ├── FDRS_Gateway2000.ino ├── README.md ├── defaults.h ├── fdrs_config.h └── fdrs_functions.h ├── FDRS_Sensor2000 ├── FDRS_Sensor2000.ino └── fdrs_sensor.h ├── LICENSE ├── Original_FDRS ├── FDRS_Gateway │ ├── DataReading.h │ ├── FDRS_Gateway.ino │ └── fdrs_config.h ├── FDRS_Relay │ ├── FDRS_Relay.ino │ └── fdrs_config.h ├── FDRS_Terminal │ ├── DataReading.h │ ├── FDRS_Terminal.ino │ └── fdrs_config.h ├── Front-End_Modules │ └── FDRS_Blynk │ │ ├── DataReading.h │ │ └── FDRS_Blynk.ino └── README.md ├── README.md └── Sensors ├── AHT20_fdrs ├── AHT20_fdrs.ino └── fdrs_sensor.h ├── BME280_fdrs ├── BME280_fdrs.ino └── fdrs_sensor.h ├── BMP280_fdrs ├── BMP280_fdrs.ino └── fdrs_sensor.h ├── DHT22_8266 ├── DHT22_8266.ino └── DataReading.h ├── DS18B20_8266 ├── DS18B20_8266.ino └── DataReading.h ├── LilyGo_HiGrow_32 ├── DataReading.h └── LilyGo_HiGrow_32.ino ├── MESB_fdrs ├── MESB_fdrs.ino └── fdrs_sensor.h ├── MotionDetector ├── DataReading.h └── MotionDetector.ino ├── README.md └── TippingBucket ├── DataReading.h └── TippingBucket.ino /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/.gitignore -------------------------------------------------------------------------------- /Controllers/FastLED/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Controllers/FastLED/DataReading.h -------------------------------------------------------------------------------- /Controllers/FastLED/FastLED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Controllers/FastLED/FastLED.ino -------------------------------------------------------------------------------- /Controllers/Irrigation/Irrigation.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Controllers/Irrigation/Irrigation.ino -------------------------------------------------------------------------------- /Controllers/Lantern_8266/Lantern_8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Controllers/Lantern_8266/Lantern_8266.ino -------------------------------------------------------------------------------- /Controllers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Controllers/README.md -------------------------------------------------------------------------------- /Examples/1_LoRa_Sensor/1_LoRa_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/1_LoRa_Sensor/1_LoRa_Sensor.ino -------------------------------------------------------------------------------- /Examples/1_LoRa_Sensor/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/1_LoRa_Sensor/fdrs_sensor.h -------------------------------------------------------------------------------- /Examples/1_LoRa_Sensor/sensor_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/1_LoRa_Sensor/sensor_config.h -------------------------------------------------------------------------------- /Examples/2_ESPNOW_Sensor/2_ESPNOW_Sensor.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/2_ESPNOW_Sensor/2_ESPNOW_Sensor.ino -------------------------------------------------------------------------------- /Examples/2_ESPNOW_Sensor/Sensor_setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/2_ESPNOW_Sensor/Sensor_setup.h -------------------------------------------------------------------------------- /Examples/2_ESPNOW_Sensor/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/2_ESPNOW_Sensor/fdrs_sensor.h -------------------------------------------------------------------------------- /Examples/3_ESPNOW_Gateway/3_ESPNOW_Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/3_ESPNOW_Gateway/3_ESPNOW_Gateway.ino -------------------------------------------------------------------------------- /Examples/3_ESPNOW_Gateway/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/3_ESPNOW_Gateway/fdrs_config.h -------------------------------------------------------------------------------- /Examples/3_ESPNOW_Gateway/fdrs_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/3_ESPNOW_Gateway/fdrs_functions.h -------------------------------------------------------------------------------- /Examples/4_UART_Gateway/4_UART_Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/4_UART_Gateway/4_UART_Gateway.ino -------------------------------------------------------------------------------- /Examples/4_UART_Gateway/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/4_UART_Gateway/fdrs_config.h -------------------------------------------------------------------------------- /Examples/4_UART_Gateway/fdrs_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/4_UART_Gateway/fdrs_functions.h -------------------------------------------------------------------------------- /Examples/5_MQTT_Gateway/5_MQTT_Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/5_MQTT_Gateway/5_MQTT_Gateway.ino -------------------------------------------------------------------------------- /Examples/5_MQTT_Gateway/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/5_MQTT_Gateway/fdrs_config.h -------------------------------------------------------------------------------- /Examples/5_MQTT_Gateway/fdrs_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/5_MQTT_Gateway/fdrs_functions.h -------------------------------------------------------------------------------- /Examples/FDRS_Install/Instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/FDRS_Install/Instructions.txt -------------------------------------------------------------------------------- /Examples/FDRS_Install/fdrs_globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Examples/FDRS_Install/fdrs_globals.h -------------------------------------------------------------------------------- /FDRS_Gateway2000/Advanced_Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/Advanced_Setup.png -------------------------------------------------------------------------------- /FDRS_Gateway2000/Advanced_Setup_LoRa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/Advanced_Setup_LoRa.png -------------------------------------------------------------------------------- /FDRS_Gateway2000/Basic_LoRa_Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/Basic_LoRa_Setup.png -------------------------------------------------------------------------------- /FDRS_Gateway2000/Basic_Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/Basic_Setup.png -------------------------------------------------------------------------------- /FDRS_Gateway2000/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/DataReading.h -------------------------------------------------------------------------------- /FDRS_Gateway2000/FDRS_Gateway2000.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/FDRS_Gateway2000.ino -------------------------------------------------------------------------------- /FDRS_Gateway2000/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/README.md -------------------------------------------------------------------------------- /FDRS_Gateway2000/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/defaults.h -------------------------------------------------------------------------------- /FDRS_Gateway2000/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/fdrs_config.h -------------------------------------------------------------------------------- /FDRS_Gateway2000/fdrs_functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Gateway2000/fdrs_functions.h -------------------------------------------------------------------------------- /FDRS_Sensor2000/FDRS_Sensor2000.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Sensor2000/FDRS_Sensor2000.ino -------------------------------------------------------------------------------- /FDRS_Sensor2000/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/FDRS_Sensor2000/fdrs_sensor.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/LICENSE -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Gateway/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Gateway/DataReading.h -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Gateway/FDRS_Gateway.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Gateway/FDRS_Gateway.ino -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Gateway/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Gateway/fdrs_config.h -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Relay/FDRS_Relay.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Relay/FDRS_Relay.ino -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Relay/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Relay/fdrs_config.h -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Terminal/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Terminal/DataReading.h -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Terminal/FDRS_Terminal.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Terminal/FDRS_Terminal.ino -------------------------------------------------------------------------------- /Original_FDRS/FDRS_Terminal/fdrs_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/FDRS_Terminal/fdrs_config.h -------------------------------------------------------------------------------- /Original_FDRS/Front-End_Modules/FDRS_Blynk/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/Front-End_Modules/FDRS_Blynk/DataReading.h -------------------------------------------------------------------------------- /Original_FDRS/Front-End_Modules/FDRS_Blynk/FDRS_Blynk.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/Front-End_Modules/FDRS_Blynk/FDRS_Blynk.ino -------------------------------------------------------------------------------- /Original_FDRS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Original_FDRS/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/README.md -------------------------------------------------------------------------------- /Sensors/AHT20_fdrs/AHT20_fdrs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/AHT20_fdrs/AHT20_fdrs.ino -------------------------------------------------------------------------------- /Sensors/AHT20_fdrs/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/AHT20_fdrs/fdrs_sensor.h -------------------------------------------------------------------------------- /Sensors/BME280_fdrs/BME280_fdrs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/BME280_fdrs/BME280_fdrs.ino -------------------------------------------------------------------------------- /Sensors/BME280_fdrs/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/BME280_fdrs/fdrs_sensor.h -------------------------------------------------------------------------------- /Sensors/BMP280_fdrs/BMP280_fdrs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/BMP280_fdrs/BMP280_fdrs.ino -------------------------------------------------------------------------------- /Sensors/BMP280_fdrs/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/BMP280_fdrs/fdrs_sensor.h -------------------------------------------------------------------------------- /Sensors/DHT22_8266/DHT22_8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/DHT22_8266/DHT22_8266.ino -------------------------------------------------------------------------------- /Sensors/DHT22_8266/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/DHT22_8266/DataReading.h -------------------------------------------------------------------------------- /Sensors/DS18B20_8266/DS18B20_8266.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/DS18B20_8266/DS18B20_8266.ino -------------------------------------------------------------------------------- /Sensors/DS18B20_8266/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/DS18B20_8266/DataReading.h -------------------------------------------------------------------------------- /Sensors/LilyGo_HiGrow_32/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/LilyGo_HiGrow_32/DataReading.h -------------------------------------------------------------------------------- /Sensors/LilyGo_HiGrow_32/LilyGo_HiGrow_32.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/LilyGo_HiGrow_32/LilyGo_HiGrow_32.ino -------------------------------------------------------------------------------- /Sensors/MESB_fdrs/MESB_fdrs.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/MESB_fdrs/MESB_fdrs.ino -------------------------------------------------------------------------------- /Sensors/MESB_fdrs/fdrs_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/MESB_fdrs/fdrs_sensor.h -------------------------------------------------------------------------------- /Sensors/MotionDetector/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/MotionDetector/DataReading.h -------------------------------------------------------------------------------- /Sensors/MotionDetector/MotionDetector.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/MotionDetector/MotionDetector.ino -------------------------------------------------------------------------------- /Sensors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/README.md -------------------------------------------------------------------------------- /Sensors/TippingBucket/DataReading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/TippingBucket/DataReading.h -------------------------------------------------------------------------------- /Sensors/TippingBucket/TippingBucket.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SensorsIot/Farm-Data-Relay-System/HEAD/Sensors/TippingBucket/TippingBucket.ino --------------------------------------------------------------------------------