Files
hass-fpl/custom_components/fpl/sensor_AllData.py
Yordan Suarez dc2a97e404 bug fixes
2021-06-05 18:37:17 -04:00

25 lines
733 B
Python

from .fplEntity import FplEntity
class AllDataSensor(FplEntity):
def __init__(self, coordinator, config, account):
super().__init__(coordinator, config, account, "")
@property
def state(self):
budget = self.getData("budget_bill")
budget_billing_projected_bill = self.getData("budget_billing_projected_bill")
if budget == True and budget_billing_projected_bill is not None:
return self.getData("budget_billing_projected_bill")
return self.getData("projected_bill")
def defineAttributes(self):
"""Return the state attributes."""
return self.coordinator.data.get(self.account)
@property
def icon(self):
return "mdi:currency-usd"