A python library to retrieve statistics from your Oekofen Pelletronic
Project description
Oekofen API
Usage
- change
192.168.178.222
to your Oekofen IP - change
eMlG
to your JSON Password (see Touchpad of your Oekofen)
import oekofen_api
import time
client = oekofen_api.Oekofen("192.168.178.222", "eMlG")
#client.update_csv_data()
x = client.update_data()
client.get_version()
client.get_uid()
client.get_model()
client.get_name()
client.update_data()
client.get_status()
client.get_weather_temp()
client.get_heating_circuit_temp()
old_value = client.get_attribute('pu', 'L_tpo_act').get_value()
print(old_value)
while True:
try:
client.update_data()
except Exception:
time.sleep(5)
continue
new_value = client.get_attribute('pu', 'L_tpo_act').get_value()
time.sleep(10)
if new_value != old_value:
print(old_value, new_value)
old_value = new_value
#client.set_heating_circuit_temp(celsius=23)
Todo
dont usedomains
andattributes
- make it less complicate and pass dict to homeassistant, then use data scheme like netgear integration- add historical data via csv api and HASS
async_external_statistics
- https://github.com/home-assistant/core/blob/74e2d5c5c312cf3ba154b5206ceb19ba884c6fb4/homeassistant/components/tibber/sensor.py#L642
- https://github.com/home-assistant/core/blob/74e2d5c5c312cf3ba154b5206ceb19ba884c6fb4/homeassistant/components/demo/__init__.py#L236
- https://github.com/home-assistant/core/blob/74e2d5c5c312cf3ba154b5206ceb19ba884c6fb4/homeassistant/components/recorder/statistics.py#L1335-L1362
- see forum
Online Resources
- pyOekofen implementation by JbPasquier
- Local Pellematic JSON page
- This repository on pypi
- HomeAssistant BinarySensor Documentation
- HomeAssistant BinarySensor Source
- Local Homeassistant Instance
- Material Icons
- Abkürzungen Sanitär
Berechnung Pelletsverbrauch
Berechnungsgrundlage: Abschnitt Calculations
in Oekofen-Spy
- Ableitung
pe1_L_modulation
via derivative minütlich- siehe Integration derivative / Code Berechnung der Ableitung
<Differenz Sensortwert alt - Sensorwert neu> / <Sekunden zwischen beiden Sensorwerten> / 1 * <Sekunden = 60>
- Einrichten als Helper
derivative_modulation
- Helper einrichten Schwellenwertsensor für
derivative_modulation
- Hysterese: 0
- Untere Grenze: 0
- Obere Grenze: 1000
- Ergebnis: True/False für den Zeitraum, wenn der Wert positiv ist
- Muss der Schwellenwertsensor evtl. vor den Ableitungssensor? (non_negative_derivative)
- Formel Pelletsverbrauch:
Schwellwert / 60 * <kW Leitung Pelletsheizung, z.B. 7.8kW> *
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
oekofen_api-0.0.25.tar.gz
(13.3 kB
view details)
Built Distribution
File details
Details for the file oekofen_api-0.0.25.tar.gz
.
File metadata
- Download URL: oekofen_api-0.0.25.tar.gz
- Upload date:
- Size: 13.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c465043f34836a668df179c8ede797f8aecff2b687a670891bac148314ac0a9b |
|
MD5 | 8bfc8ae0e3c22fbae63eb0f3193551d0 |
|
BLAKE2b-256 | 5d585d1ef7a39006d937fa3c80b04f24707cefedc467b088d1f5acce05f94c87 |
File details
Details for the file oekofen_api-0.0.25-py3-none-any.whl
.
File metadata
- Download URL: oekofen_api-0.0.25-py3-none-any.whl
- Upload date:
- Size: 12.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 134b221afefa8cd74e3938829bb041ef023c56ed1d72f5dda5b6b8cda365716f |
|
MD5 | e5105185618bcf1773a1bfd26317dd28 |
|
BLAKE2b-256 | 62b7d56efba5e30aad434efafda1c5f55cb99b19afba705130a33cd004460cdc |