-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
## 💽 Version | ||
{% if version_installed == version_available %} | ||
👍 You already have the latest released version installed. | ||
{% endif %} | ||
|
||
{% if installed and version_installed != selected_tag %} | ||
🤓 Changes from version {{ version_installed }} | ||
{% endif %} | ||
|
||
## 💾 Configuration | ||
|
||
Edit your home-assistan `/configuration.yaml` and add: | ||
|
||
```yaml | ||
sensor: | ||
- platform: foxess | ||
username: foxesscloud_username | ||
password: foxesscloud_password | ||
deviceID: foxesscloud_inverter_id | ||
``` | ||
`foxesscloud_inverter_id` in UUID that can be found on the foxesscloud in the url path on the `Inverter Details` page | ||
|
||
|
||
## 📊 Provided entities | ||
|
||
HA Entity | Measurement | ||
|---|---| | ||
Generation Power | kW | ||
Grid Consumption Power | kW | ||
FeedIn Power | kW | ||
Bat Discharge Power | kW | ||
Bat Charge Power | kW | ||
Energy Generated | kWh | ||
Grid Consumption | kWh | ||
FeedIn | kWh | ||
Bat Charge | kWh | ||
Bat Discharge | kWh | ||
Bat SoC | % | ||
Bat Temp | °C | ||
|
||
## 🤔 Troubleshooting | ||
|
||
Increase log level in your `/configuration.yaml` by adding: | ||
|
||
```yaml | ||
logger: | ||
default: warning | ||
logs: | ||
custom_components.foxess: debug | ||
``` |