gitextract_784agd5_/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ ├── hacs.yaml │ └── hassfest.yaml ├── LICENSE ├── README.md ├── custom_components/ │ └── fusion_solar/ │ ├── __init__.py │ ├── config_flow.py │ ├── const.py │ ├── device_real_kpi_coordinator.py │ ├── fusion_solar/ │ │ ├── const.py │ │ ├── device_attribute_entity.py │ │ ├── energy_sensor.py │ │ ├── kiosk/ │ │ │ ├── kiosk.py │ │ │ └── kiosk_api.py │ │ ├── lifetime_plant_data_entity.py │ │ ├── openapi/ │ │ │ ├── device.py │ │ │ ├── openapi_api.py │ │ │ └── station.py │ │ ├── power_entity.py │ │ ├── realtime_device_data_sensor.py │ │ ├── station_attribute_entity.py │ │ └── year_plant_data_entity.py │ ├── manifest.json │ ├── sensor.py │ ├── strings.json │ └── translations/ │ ├── de.json │ ├── en.json │ ├── es.json │ ├── fr.json │ ├── it.json │ └── pt.json ├── docs/ │ └── postman_collection.json └── hacs.json