A dashboard that displays real-time statistics about my plants and their environment.
Sprout offers:
- Soil moisture charts for each plant connected to Sprout
- Environmental statistics about the plants' environment, including temperature, pressure, and light levels.
- A cute design :)
Sprout's frontend was written using Vue.js. The charts were made using vue-echarts. The icons and overall design are original.
Sprout's business logic consists of an API implemented using AWS Lambda and Serverless that is periodically polled by the frontend. This API retrieves the necessary data from a MongoDB instance hosted on Atlas, does a small amount of processing to reduce the number of data points, and returns it to the frontend.
The data collection is handled by AzureSpherePlantMonitor, which is an Azure Sphere MT3620 hooked up to Chirp! soil moisture sensors. This setup is currently deployed in my room, where it continues to gather new data every 2 minutes and publish its findings to the MongoDB Atlas instance every 10 minutes.
This project is a collaboration between @mirrorkeydev (dashboard + api) and @prototypicalpro (api + IoT data collection).
npm install
npm run serve
npm run build
gh-pages -d dist // if deploying to GitHub pages
npm run lint