TrickerZ
(Adam Petrycki)
November 12, 2018, 12:57am
1
I was looking for a way to get my Florida Power and Light data into Home Assistant and came across this project: https://github.com/Klathmon/python-fpl-api
It seems like it’s exactly what I need, but I’m not much of a coder, so I was looking for a little help to point me in the right direction to get started. I could probably hack something together for myself, but figured it’d be more beneficial if other people could use it. Any tips would be appreciated.
2 Likes
dotKrad
(Yordan)
December 18, 2019, 9:27pm
3
Guys you can check this
FPL Integration
it’s still in development so contributions are welcome
TrickerZ
(Adam Petrycki)
December 22, 2019, 7:53pm
4
Thanks for the heads up on your work! What’s the status of the project? I tried it and it just says my user/password are wrong. I’m wondering if it’s not quite working, or maybe because I have 2 addresses under my account.
dotKrad
(Yordan)
December 27, 2019, 8:10pm
5
Yep, indeed it is the problem, i’m working on it
Hello @dotKrad ,
I tested it and so far it’s good. It will be really good if we could also get Daily/hourly kwh usage rather than average.
Thanks
badrobit
(Mat)
January 18, 2020, 7:33pm
7
@Dario_Lemes_Gonzalez could you provide how you had this setup in your configuration.yaml file
dotKrad
(Yordan)
January 20, 2020, 3:56pm
8
The configuration is done in the UI
Hello,
As @dotKrad mentioned configuration is done on the Integrations UI.
Thanks
dotKrad
(Yordan)
January 20, 2020, 6:06pm
10
I’m having an issue and I don’t know how to resolve it, every time I restart HA I get a new entity
Any help will be appreciated
Same issue here! I have to remove the integration every couple of days and re-add it.
Thanks
dotKrad
(Yordan)
January 20, 2020, 7:36pm
12
I just remove the old entity and rename the new one
but still annoying
@dotKrad , does this still works for you? It seems broke with recent updates
MACscr
June 18, 2020, 2:27am
15
Mind sharing your code for this card?
dotKrad
(Yordan)
June 18, 2020, 3:17am
16
This is a combination of multiple cards
cards:
- card:
entities:
- attribute: as_of_days
entity: sensor.fpl_*****
entity_row: true
max: '${ vars[0] }'
name: Days
positions:
icon: 'off'
indicator: 'off'
minmax: inside
title: inside
value: inside
severity:
- color: Green
from: 0
to: '${ vars[0] * 0.5 }'
- color: Yellow
from: '${ vars[0] * 0.5 + 1}'
to: '${ vars[0] * 0.80 }'
- color: Red
from: '${ vars[0] * 0.80 + 1}'
to: '${ vars[0] }'
style: 'ha-card{border-radius: 0;}'
type: 'custom:bar-card'
title: FPL
type: entities
entities:
- sensor.fpl_*****
type: 'custom:config-template-card'
variables:
- 'states[''sensor.fpl_*****''].attributes.service_days'
- attribute: projected_bill
entity: sensor.fpl_*****
name: Projected Bill
type: entity
type: 'custom:vertical-stack-in-card'
1 Like
MACscr
June 26, 2020, 9:21pm
17
For those that are using it, how are you taking advantage of the historical usage data with this integration? I dont see how we can actually graph using dated values in the attribute ‘details’.
josefo2020
(Josefo2020)
February 27, 2021, 9:06pm
18
The github page says its compatible with HACS. How do you add it through HACS?
dotKrad
(Yordan)
February 27, 2021, 9:25pm
19
you need to add https://github.com/dotKrad/hass-fpl as a custom repository in HACS
1 Like
josefo2020
(Josefo2020)
February 28, 2021, 4:29am
20
Thanks for the help! I have it set up already.