You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
La tariffa flex é uno spread al quale viene aggiunto il PUN o il PSV. quindi il confronto con la tariffa fissa deve essere fatto tra: tariffa flex+indice (PUN o PSV) vs. tariffa fissa.
Ho inserito questo cordice in configuration.yaml per capire effettivamente quanto pago usando la tariffa flex.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
La tariffa flex é uno spread al quale viene aggiunto il PUN o il PSV. quindi il confronto con la tariffa fissa deve essere fatto tra: tariffa flex+indice (PUN o PSV) vs. tariffa fissa.
Ho inserito questo cordice in configuration.yaml per capire effettivamente quanto pago usando la tariffa flex.
name: prezzo_luce_totale
unit_of_measurement: "€/kWh"
state: >
{{ (states('sensor.a_XXXXXXXX_prezzo_elettricita_f1_o_monoraria') | float(0)
+ states('sensor.pun_mono_orario') | float(0)) | round(4) }}
name: prezzo_gas_totale
unit_of_measurement: "€/Smc"
state: >
{{ (states('sensor.a_XXXXXX_prezzo_gas') | float(0)
+ states('sensor.luce_e_gas_italia_psv_gas') | float(0)) | round(4) }}
PUN e PSV li ho recuperati tramite queste integrazioni.
https://blackwiz4rd.github.io/projects/2026-01-09-pun-psv-tracking/
https://github.com/virtualdj/pun_sensor
Sarebbe comodo che questo fosse tutto compreso nell'integrazione Octopus Energy Italy
Beta Was this translation helpful? Give feedback.
All reactions