Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom_components/alphaess/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
CONF_EV_CHARGER_MODEL = "ev_charger_model"
CONF_DISABLE_NOTIFICATIONS = "disable_notifications"

KNOWN_INVERTERS = ["Storion-S5", "SMILE5-INV", "VT1000", "SMILE-T10-HV-INV", "SMILE-G3-B5-INV", "SMILE-G3-T10-INV"] # List of known inverters
KNOWN_INVERTERS = ["Storion-S5", "SMILE5-INV", "VT1000", "SMILE-T10-HV-INV", "SMILE-G3-B5-INV", "SMILE-G3-T10-INV", "SMILE-S6-HV-INV"] # List of known inverters

KNOWN_CHARGERS = ["SMILE-EVCT11"]
# Set blacklist for certain inverters from certain sensors
Expand Down
2 changes: 1 addition & 1 deletion custom_components/alphaess/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"requirements": [
"alphaessopenapi==0.0.17"
],
"version": "0.8.2"
"version": "0.8.3"
}


2 changes: 1 addition & 1 deletion custom_components/alphaess/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def native_value(self) -> float | None:

async def async_set_native_value(self, value: float) -> None:
"""Set EV charger current via API."""
await self._coordinator.set_ev_charger_current(self._ev_serial, int(value))
await self._coordinator.set_ev_charger_current(self._serial, int(value))

@property
def available(self) -> bool:
Expand Down