Tracks temperature and humidity readings and graphs the results in a web dashboard.
Collects readings using temperature sensors See PiicoDev Projects or Pico Projects for details.
- Make sure you have a supported version of Python installed:
python --version
- Clone the repo:
git clone https://github.com/Buried-In-Code/Freyr
- Install the project:
pip install .
- Run using:
Freyr
- Make sure you have Pipx installed:
pipx --version
- Install the project
pipx install git+https://github.com/Buried-In-Code/Freyr.git
- Run using:
Freyr
- Make sure you have Docker installed:
docker --version
- Make sure you have Docker-Compose installed:
docker-compose --version
- Create a
docker-compose.yaml
file, an example:
version: '3'
services:
freyr:
image: 'ghcr.io/buried-in-code/freyr:latest'
container_name: 'Freyr'
environment:
TZ: 'Pacific/Auckland'
ports:
- '25710:25710'
volumes:
- './config:/app/config'
- './data:/app/data'
- Run using:
docker-compose up -d