Skip to content

Commit

Permalink
Add "ac energy" on meter names
Browse files Browse the repository at this point in the history
  • Loading branch information
WillCodeForCats committed Nov 30, 2023
1 parent e1d4a5e commit cbeb543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/solaredge_modbus_multi/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@ def name(self) -> str:
if self._phase is None:
return "AC Energy"
else:
return f"{re.sub('_', ' ', self._phase)}"
return f"AC Energy {re.sub('_', ' ', self._phase)}"

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

0 comments on commit cbeb543

Please sign in to comment.