You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This version Changes naming for DC Chargers and adds some bugfixes on DC Chargers. It also changes how `Sigen Plant Daily Grid Import Energy` and `Sigen Plant Daily Grid Export Energy` read energy so they are calculated from the total and not incremented.
* Enhance DC Charger naming logic, and add debug logging in coordinator
* Add section for community add-ons and tools in README.md
* Update DC Charger naming from "DC Charger" to "DC Charging"
* Remove 'keep_existing' option and related logic from config flow and strings
* Handle None value in safe_decimal function by returning Decimal(0.0)
* Change daily energy sensors to get diffrence from total. As proposed in #170
* Add support for third-party inverter energy in daily sensor calculations
* Refactor daily energy calculation to streamline lifetime data retrieval and enhance parameter handling
* Add dynamic source entity ID construction and improve daily energy calculation logic
* Enhance source entity ID construction to support explicit device context and improve fallback logic for plant-level sensors
* Revert version number to 1.1.7 in manifest.json for release
Copy file name to clipboardExpand all lines: custom_components/sigen/strings.json
+5-10Lines changed: 5 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -9,12 +9,10 @@
9
9
"title": "Configure Sigenergy Plant",
10
10
"description": "A new Sigenergy device was discovered at {ip_address}. Select your configuration options:",
11
11
"data": {
12
-
"read_only": "Read-Only Mode",
13
-
"keep_existing": "Keep Existing Sensors (and potentially rename new ones)"
12
+
"read_only": "Read-Only Mode"
14
13
},
15
14
"data_description": {
16
-
"read_only": "(Prevents Home Assistant from making changes to the Sigenergy system. Recommended for initial setup. Can be changed later in device settings.)",
17
-
"keep_existing": "If you have previous configurations for this device, adding it again might create duplicate or numbered sensors (e.g., `sensor_name_2`).\n\nRECOMMENDED PATH: Leave this unchecked and manually delete any old Sigenergy YAML configuration and related sensor entities in Home Assistant *before* submitting. This ensures new sensors use standard names.\n\nALTERNATIVE PATH: Check this box to keep existing sensors. No cleanup is needed beforehand, but new sensors with conflicting names will be automatically numbered. You can manage/rename sensors later in device settings."
15
+
"read_only": "(Prevents Home Assistant from making changes to the Sigenergy system. Recommended for initial setup. Can be changed later in device settings.)"
"migrate_yaml_description": "If enabled, initial sensor values will be imported from the legacy YAML configuration (if present).",
39
-
"read_only": "Read-Only Mode",
40
-
"keep_existing": "Keep Existing Sensors (and potentially rename new ones)"
37
+
"read_only": "Read-Only Mode"
41
38
},
42
39
"data_description": {
43
-
"read_only": "(Prevents Home Assistant from making changes to the Sigenergy system. Recommended for initial setup. Can be changed later in device settings.)",
44
-
"keep_existing": "If you have previous configurations for this device, adding it again might create duplicate or numbered sensors (e.g., `sensor_name_2`).\n\nRECOMMENDED PATH: Leave this unchecked and manually delete any old Sigenergy YAML configuration and related sensor entities in Home Assistant *before* submitting. This ensures new sensors use standard names.\n\nALTERNATIVE PATH: Check this box to keep existing sensors. No cleanup is needed beforehand, but new sensors with conflicting names will be automatically numbered. You can manage/rename sensors later in device settings."
40
+
"read_only": "(Prevents Home Assistant from making changes to the Sigenergy system. Recommended for initial setup. Can be changed later in device settings.)"
45
41
}
46
42
},
47
43
"select_plant": {
@@ -105,8 +101,7 @@
105
101
"cannot_be_lower_than_high": "Cannot be lower than the high interval.",
106
102
"cannot_be_lower_than_medium": "Cannot be lower than the medium interval.",
107
103
"invalid_host": "Invalid host address provided.",
108
-
"invalid_port": "Invalid port number. Must be between 1 and 65535.",
109
-
"old_config_found": "Please approve potential sensor renaming (check the box) or delete the old configuration before continuing."
104
+
"invalid_port": "Invalid port number. Must be between 1 and 65535."
110
105
},
111
106
"abort": {
112
107
"already_configured": "This Sigenergy system is already configured.",
0 commit comments