Enable Tibber quarter hourly prices
Starting October 2025, Tibber introduced quarter hourly updates to the electricity price. This only needs a tiny change in the API call, https://developer.tibber.com/docs/changelog
Packages/electricity/tibber.yaml Line 16
Change line 16 payload: '{ "query": "{ viewer { homes { currentSubscription { priceInfo { current { total currency level energy tax } today { total startsAt level } tomorrow { total startsAt level }}}}}}" }'
to
payload: '{ "query": "{ viewer { homes { currentSubscription { priceInfo(Resolution: QUARTER_HOURLY) { current { total currency level energy tax } today { total startsAt level } tomorrow { total startsAt level }}}}}}" }'
It seems to small of a change to create a pull request, but I was wondering whether more adaptions might be needed in other places, like for the avg and price levels....