Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nebucatnetzer/environment_sensors
A project to read temperature, humidity and pressure from a Raspberry Pi Sense Hat and display the corresponding graphs on a simple website.
https://github.com/nebucatnetzer/environment_sensors
environment-sensors humidity pressure python3 raspberry-pi sense-hat
Last synced: 6 days ago
JSON representation
A project to read temperature, humidity and pressure from a Raspberry Pi Sense Hat and display the corresponding graphs on a simple website.
- Host: GitHub
- URL: https://github.com/nebucatnetzer/environment_sensors
- Owner: Nebucatnetzer
- License: other
- Created: 2019-10-12T17:46:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-29T16:33:58.000Z (over 2 years ago)
- Last Synced: 2024-11-07T15:18:57.245Z (about 2 months ago)
- Topics: environment-sensors, humidity, pressure, python3, raspberry-pi, sense-hat
- Language: Python
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# environment_sensors
A project to read temperature, humidity and pressure from a Raspberry Pi Sense
Hat and display the corresponding graphs on a simple website.## Installation
Make sure that you have the following libraries installed on your system.
python-cairo
pygobjectOn Arch Linux you can do this with:
``` shell
sudo pacman -S python-cairo python-gobject
```## Running
Afterwards you can run the application with:
``` shell
make
```## Development and Testing
If you want to create a development environment simply run:
``` shell
make test
```This will create a virtual environment which includes some useful dependencies
for development including the SenseHat emulator. In addition it will run all
tests. If all tests finish correctly you know that the environment is setup
correctly.