https://github.com/simmsb/garden
A rust powered smart greenhouse thing
https://github.com/simmsb/garden
Last synced: 3 months ago
JSON representation
A rust powered smart greenhouse thing
- Host: GitHub
- URL: https://github.com/simmsb/garden
- Owner: simmsb
- License: mit
- Created: 2022-06-22T17:57:56.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-09-05T11:47:32.000Z (almost 4 years ago)
- Last Synced: 2025-04-21T02:15:51.811Z (about 1 year ago)
- Language: Rust
- Homepage:
- Size: 218 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rust powered smart greenhouse
Welcome to my garden

## Project structure
This project is split into two pieces as our greenhouse is a good distance
from our house:
- Transmitter: This is an Adafruit radiofeather (LoRa) microcontroller.
Connected to it are moisture sensors, a temperature/ humidity/ pressure sensor,
and a relay which turns on and off a pump.
Sensor readings are taken periodically and transmitted over LoRa to the
base station (RPI). Immediately after transmitting a message the LoRa
radio will enter RX mode and listen for a message from the base station.
- Receiver/ Base Station: This is a Raspberry Pi with a LoRa hat.
It continuously listens for messages from the transmitter and
stores sensor readings in a influxdb database.
It also hosts a control panel for turning on and off the pump.
Messages to send to the greenhouse device are queued and transmitted after
a message is received.