Advertisement
yurghie

Untitled

Nov 30th, 2024
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.74 KB | None | 0 0
  1. sensor:
  2.   - platform: nordpool
  3.     VAT: true
  4.     currency: "NOK"
  5.     price_in_cents: false
  6.     low_price_cutoff: 0.95
  7.     region: "NO2"
  8.     precision: 2
  9.     price_type: kWh
  10.     additional_costs: >-
  11.       {% set s = {
  12.         "paaslag": 0.00,
  13.         "nettleie_natt": 0.38,
  14.         "nettleie_dag": 0.50
  15.       }
  16.       %}
  17.       {% set add_cost = 0 %}
  18.       {% if current_price > 0.9125 %}
  19.       {% set add_cost = 0.9 * (current_price - 0.9125) * -1 %}
  20.       {%endif%}
  21.       {% set add_cost = add_cost + s.paaslag %}
  22.       {%if now().hour >=6 and now().hour < 22 %}
  23.       {% set add_cost = add_cost + s.nettleie_dag %}
  24.       {%else%}
  25.       {% set add_cost = add_cost + s.nettleie_natt %}
  26.       {%endif%}
  27.       {{add_cost | float(3) }}
Tags: nord pool
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement