Omnik Data Logger
Project description
omnik-data-logger
This is a Python3 based PV data logger with plugin support, specifically build for the Omniksol-5k-TL2. This datalogger uses the omnikportal to fetch data pushed by the inverter. I tried using the inverter directly, but the firmware is very buggy: it either spontanious reboots, hangs or returns seemingly random data.
Installation
Install using the following command:
$ pip install omnik-data-logger
Help
usage: omnik-logger [-h] [--config FILE] [--every EVERY] [-d]
optional arguments:
-h, --help show this help message and exit
--config FILE path to configuration file
--every EVERY execute every n seconds
-d, --debug debug mode
Configuration
Example configuration
This data logger needs a configuration file. By default, it look for a config file called ~/.omnik/config.ini
. You can override this path by using the --config
parameter.
[default]
timezone = Europe/Amsterdam
[omnikportal]
username = john.doe@example.com
password = S3cret!
[plugins]
output=pvoutput
[pvoutput]
api_key = <YOUR API KEY>
sys_id = <YOUR SYSTEM ID>
use_temperature = true
[openweathermap]
api_key = <YOUR API KEY>
endpoint = api.openweathermap.org
lon = 4.2232362
lat = 51.8819023
units = metric
PS: openweathermap
is currently only used when use_temperature = true
.
Manual Run
Just run omnik-logger
... that's it ... for now.
Scheduled Run
You've got your default options to schedule this logger, but I included a systemd
service file to run this as a service on Linux.
PS: I'm using
Ubuntu 18.04 LTS
First, install this thing (~ using Python 3 !!!)
If you don't have
Python3.x
installed, do that first (~ don't forget to installpython3-pip
as well)
$ pip3 install omnik-data-logger
# check if properly installed
$ omnik-logger -h
usage: omnik-logger [-h] [--config FILE] [--every EVERY] [-d]
optional arguments:
-h, --help show this help message and exit
--config FILE Path to configuration file
--every EVERY Execute every n seconds
-d, --debug Debug mode
Copy scripts/omnik-data-logger.service
to /lib/systemd/system/omnik-data-logger.service
Next, enable and start service:
$ systemd enable omnik-data-logger
Created symlink /etc/systemd/system/multi-user.target.wants/omnik-data-logger.service → /lib/systemd/system/omnik-data-logger.service.
$ systemd start omnik-data-logger
Check if omnik-data-logger.service
is running correctly:
$ systemd status omnik-data-logger
● omnik-data-logger.service - Omnik Data Logger service
Loaded: loaded (/lib/systemd/system/omnik-data-logger.service; enabled; vendor preset: enabled)
Active: active (running) since Tue 2019-06-18 06:55:08 UTC; 4min 36s ago
Main PID: 2445 (python3)
Tasks: 2 (limit: 4915)
CGroup: /system.slice/omnik-data-logger.service
└─2445 /usr/bin/python3 /usr/local/bin/omnik-logger --config /etc/omnik/config.ini --every 300
Plugins
Working on a couple of plugins to customize processing of the omnik-portal data:
pvoutput
~ write data to PVOutputinfluxdb
~ write data to a InfluxDB time series database (WORK IN PROGRESS)- ...
BONUS: Docker
Instructions on how to use the omnik-data-logger
with Docker
can be found here
~ the end
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file omnik-data-logger-1.0.0.tar.gz
.
File metadata
- Download URL: omnik-data-logger-1.0.0.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4f80b680a9ec5802bd9f2ea10097f192d24c2fff9a9a7b341518286cf66694e |
|
MD5 | f20267753c0f459d9a0773de07d46c67 |
|
BLAKE2b-256 | ef302d940f6c19a2b7605726e2eddc8fa16f1dad1b13ec805146a7ec6b3dd67a |
File details
Details for the file omnik_data_logger-1.0.0-py3.7.egg
.
File metadata
- Download URL: omnik_data_logger-1.0.0-py3.7.egg
- Upload date:
- Size: 14.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 759fc6b7da41336b7d11565dd0efb25f22a6d9b6e5c8e3784a807b6646782c11 |
|
MD5 | 2adbe20791a68c351e57e9c705da843c |
|
BLAKE2b-256 | 35ddca590186217d66f33014e4b6d1ff76fed198c54e37f9a814d20a58187b15 |