Skip to content

Commit 1e51ae3

Browse files
Update victron_mqtt to 2026.4.5 (#346)
## Changes - Support all outputs of IP43 Charger. #337 - dont translate hidden topics - Remove phases as units - Add Multi RS Solar DC temperature metric: tomer-w/victron_mqtt#88 ## 🧰 Maintenance - Bump peter-evans/create-pull-request from 7 to 8 @[dependabot[bot]](https://github.com/apps/dependabot) (#89) - Bump actions/github-script from 8 to 9 @[dependabot[bot]](https://github.com/apps/dependabot) (#90) - Bump actions/checkout from 4 to 6 @[dependabot[bot]](https://github.com/apps/dependabot) (#91) - Bump actions/setup-python from 5 to 6 @[dependabot[bot]](https://github.com/apps/dependabot) (#92) ## Contributors @tomer-w Co-authored-by: tomer-w <57483589+tomer-w@users.noreply.github.com>
1 parent 31a58f8 commit 1e51ae3

3 files changed

Lines changed: 40 additions & 13 deletions

File tree

custom_components/victron_mqtt/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"iot_class": "local_push",
1111
"issue_tracker": "https://github.com/tomer-w/ha-victron-mqtt/issues",
1212
"requirements": [
13-
"victron_mqtt==2026.4.4"
13+
"victron_mqtt==2026.4.5"
1414
],
1515
"ssdp": [
1616
{

custom_components/victron_mqtt/translations/en.json

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -831,11 +831,14 @@
831831
"charge_mode": {
832832
"name": "Charge mode"
833833
},
834-
"charger_dc_current": {
835-
"name": "DC output current"
834+
"charger_ac_in_current_phase": {
835+
"name": "AC input current {phase}"
836836
},
837-
"charger_dc_voltage": {
838-
"name": "DC output voltage"
837+
"charger_dc_current_output": {
838+
"name": "DC output {output} current"
839+
},
840+
"charger_dc_voltage_output": {
841+
"name": "DC output {output} voltage"
839842
},
840843
"charger_error_code": {
841844
"name": "Error code",

victron_mqtt.json

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1639,10 +1639,10 @@
16391639
"hidden": false
16401640
},
16411641
{
1642-
"topic": "N/{installation_id}/charger/{device_id}/Dc/0/Current",
1642+
"topic": "N/{installation_id}/charger/{device_id}/Ac/In/{phase}/I",
16431643
"message_type": "MetricKind.SENSOR",
1644-
"short_id": "charger_dc_current",
1645-
"name": "DC output current",
1644+
"short_id": "charger_ac_in_current_{phase}",
1645+
"name": "AC input current {phase}",
16461646
"unit_of_measurement": "A",
16471647
"metric_type": "MetricType.CURRENT",
16481648
"metric_nature": "MetricNature.MEASUREMENT",
@@ -1657,16 +1657,40 @@
16571657
"key_values": {},
16581658
"experimental": false,
16591659
"depends_on": [],
1660-
"generic_name": "DC output current",
1660+
"generic_name": "AC input current {phase}",
16611661
"is_formula": false,
16621662
"main_topic": false,
16631663
"hidden": false
16641664
},
16651665
{
1666-
"topic": "N/{installation_id}/charger/{device_id}/Dc/0/Voltage",
1666+
"topic": "N/{installation_id}/charger/{device_id}/Dc/{output}/Current",
16671667
"message_type": "MetricKind.SENSOR",
1668-
"short_id": "charger_dc_voltage",
1669-
"name": "DC output voltage",
1668+
"short_id": "charger_dc_current_{output}",
1669+
"name": "DC output {output} current",
1670+
"unit_of_measurement": "A",
1671+
"metric_type": "MetricType.CURRENT",
1672+
"metric_nature": "MetricNature.MEASUREMENT",
1673+
"value_type": "ValueType.FLOAT",
1674+
"precision": 1,
1675+
"enum": null,
1676+
"min_max_range": "RangeType.STATIC",
1677+
"min": null,
1678+
"max": null,
1679+
"step": null,
1680+
"is_adjustable_suffix": null,
1681+
"key_values": {},
1682+
"experimental": false,
1683+
"depends_on": [],
1684+
"generic_name": "DC output {output} current",
1685+
"is_formula": false,
1686+
"main_topic": false,
1687+
"hidden": false
1688+
},
1689+
{
1690+
"topic": "N/{installation_id}/charger/{device_id}/Dc/{output}/Voltage",
1691+
"message_type": "MetricKind.SENSOR",
1692+
"short_id": "charger_dc_voltage_{output}",
1693+
"name": "DC output {output} voltage",
16701694
"unit_of_measurement": "V",
16711695
"metric_type": "MetricType.VOLTAGE",
16721696
"metric_nature": "MetricNature.MEASUREMENT",
@@ -1681,7 +1705,7 @@
16811705
"key_values": {},
16821706
"experimental": false,
16831707
"depends_on": [],
1684-
"generic_name": "DC output voltage",
1708+
"generic_name": "DC output {output} voltage",
16851709
"is_formula": false,
16861710
"main_topic": false,
16871711
"hidden": false

0 commit comments

Comments
 (0)