From 1bf47e170e8c434b708e4adcbf6e4f7bcd56adff Mon Sep 17 00:00:00 2001 From: VolkerK62 <99199865+VolkerK62@users.noreply.github.com> Date: Tue, 17 Oct 2023 14:45:46 +0200 Subject: [PATCH] =?UTF-8?q?tariffs:=20configurable=20custom=20tariff=20und?= =?UTF-8?q?=20Hinweis=20bei=20tages=C3=BCbergreifendem=20Zonentarif?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix #459 fix #460 --- docs/reference/configuration/tariffs.md | 33 ++++++++++++++++++++++--- 1 file changed, 30 insertions(+), 3 deletions(-) diff --git a/docs/reference/configuration/tariffs.md b/docs/reference/configuration/tariffs.md index 7fd7f5ea72..88fdf88ee9 100644 --- a/docs/reference/configuration/tariffs.md +++ b/docs/reference/configuration/tariffs.md @@ -38,6 +38,11 @@ tariffs: **Beispiel: Konstanter Energiepreis mit zeitabhängigen Tarifen** +::: info +Tagesübergreifende Zeitbereiche müssen um Mitternacht (= 0) geteilt werden. +Es sind zwei Einträge (z.B. 20-0 und 0-5) notwendig. +::: + ```yaml tariffs: currency: EUR # (default EUR) @@ -47,7 +52,7 @@ tariffs: price: 0.294 # EUR/kWh zones: - days: Mo-Fr - hours: 2-5 + hours: 20-0 price: 0.2 # EUR/kWh - days: Sa,So price: 0.15 # EUR/kWh @@ -90,7 +95,7 @@ Währung in der Energiepreise dargestellt und berechnet werden. Folgende Tariftypen (`type`) werden unterstützt: -**Mögliche Werte** `fixed|awattar|tibber|octopusenergy` +**Mögliche Werte** `fixed|custom|awattar|tibber|octopusenergy` --- @@ -105,6 +110,18 @@ type: fixed price: 0.297 # 0,297 [currency]/kWh ``` +### `type:` **`custom`** + +Fester Energiepreis für Netzbezug, der per Plugin gesetzt werden kann + +**Beispiel**: + +```yaml +type: custom +price: + source: ... +``` + #### `price` Den Preis in [currency]/kWh den du an deinen Stromversorger zahlst. Wird für die Ersparnisberechnung verwendet. @@ -249,6 +266,16 @@ type: fixed price: 0.12 # 0,12 [currency]/kWh ``` +### `type:` **`custom`** + +Feste Einspeisevergütung, die per Plugin gesetzt werden kann + +```yaml +type: custom +price: + source: ... +``` + #### `price` Den Preis in [currency]/kWh den du vom Netzbetreiber bekommst. Wird für die Ersparnisberechnung verwendet. @@ -342,4 +369,4 @@ co2: region: 1 # OR postcode: SW1A1AA -``` \ No newline at end of file +```