32 lines
645 B
Markdown
32 lines
645 B
Markdown
# airthings-influxdb
|
|
|
|
## Install
|
|
```x-sh
|
|
git clone ssh://git@git.ponz.io:10022/elia/airthings-influxdb.git && cd airthings-influxdb
|
|
virtualenv venv -p python3
|
|
source venv/bin/activate
|
|
pip install -r requirements.txt
|
|
deactivate
|
|
|
|
# configure your config.ini
|
|
cp config.ini.example config.ini
|
|
|
|
```
|
|
## Usage
|
|
```
|
|
source venv/bin/activate
|
|
|
|
./airthings-influxdb.py
|
|
Usage: airthings-influxdb.py [OPTIONS] COMMAND [ARGS]...
|
|
|
|
Options:
|
|
--debug / --no-debug
|
|
-c, --config TEXT give config file
|
|
--help Show this message and exit.
|
|
|
|
Commands:
|
|
identify Lists available sensors nearby
|
|
start
|
|
verify verify your configuration
|
|
```
|