Skip to content

Commit fae1514

Browse files
Update victron_mqtt to 2026.2.1 (#297)
## Changes - Adding topics for Blue Smart IP22: tomer-w/victron_mqtt#63 ## Contributors @tomer-w Co-authored-by: tomer-w <57483589+tomer-w@users.noreply.github.com>
1 parent c6b8a6e commit fae1514

3 files changed

Lines changed: 131 additions & 1 deletion

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.2.0"
13+
"victron_mqtt==2026.2.1"
1414
],
1515
"ssdp": [
1616
{

custom_components/victron_mqtt/translations/en.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -478,6 +478,21 @@
478478
"charge_mode": {
479479
"name": "Battery charge mode"
480480
},
481+
"charger_dc_current": {
482+
"name": "Charger DC output current"
483+
},
484+
"charger_dc_voltage": {
485+
"name": "Charger DC output voltage"
486+
},
487+
"charger_error_code": {
488+
"name": "Charger error code"
489+
},
490+
"charger_nr_of_outputs": {
491+
"name": "Charger number of outputs"
492+
},
493+
"charger_state": {
494+
"name": "Charger state"
495+
},
481496
"dcload_current": {
482497
"name": "DC load current"
483498
},

victron_mqtt.json

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1304,6 +1304,116 @@
13041304
"generic_name": "Battery cell voltage deviation",
13051305
"is_formula": false
13061306
},
1307+
{
1308+
"topic": "N/{installation_id}/charger/{device_id}/Dc/0/Current",
1309+
"message_type": "MetricKind.SENSOR",
1310+
"short_id": "charger_dc_current",
1311+
"name": "Charger DC output current",
1312+
"unit_of_measurement": "A",
1313+
"metric_type": "MetricType.CURRENT",
1314+
"metric_nature": "MetricNature.INSTANTANEOUS",
1315+
"value_type": "ValueType.FLOAT",
1316+
"precision": 1,
1317+
"enum": null,
1318+
"min_max_range": "RangeType.STATIC",
1319+
"min": null,
1320+
"max": null,
1321+
"step": null,
1322+
"is_adjustable_suffix": null,
1323+
"key_values": {},
1324+
"experimental": false,
1325+
"depends_on": [],
1326+
"generic_name": "Charger DC output current",
1327+
"is_formula": false
1328+
},
1329+
{
1330+
"topic": "N/{installation_id}/charger/{device_id}/Dc/0/Voltage",
1331+
"message_type": "MetricKind.SENSOR",
1332+
"short_id": "charger_dc_voltage",
1333+
"name": "Charger DC output voltage",
1334+
"unit_of_measurement": "V",
1335+
"metric_type": "MetricType.VOLTAGE",
1336+
"metric_nature": "MetricNature.INSTANTANEOUS",
1337+
"value_type": "ValueType.FLOAT",
1338+
"precision": 3,
1339+
"enum": null,
1340+
"min_max_range": "RangeType.STATIC",
1341+
"min": null,
1342+
"max": null,
1343+
"step": null,
1344+
"is_adjustable_suffix": null,
1345+
"key_values": {},
1346+
"experimental": false,
1347+
"depends_on": [],
1348+
"generic_name": "Charger DC output voltage",
1349+
"is_formula": false
1350+
},
1351+
{
1352+
"topic": "N/{installation_id}/charger/{device_id}/ErrorCode",
1353+
"message_type": "MetricKind.SENSOR",
1354+
"short_id": "charger_error_code",
1355+
"name": "Charger error code",
1356+
"unit_of_measurement": null,
1357+
"metric_type": "MetricType.NONE",
1358+
"metric_nature": "MetricNature.NONE",
1359+
"value_type": "ValueType.ENUM",
1360+
"precision": null,
1361+
"enum": "ErrorCode",
1362+
"min_max_range": "RangeType.STATIC",
1363+
"min": null,
1364+
"max": null,
1365+
"step": null,
1366+
"is_adjustable_suffix": null,
1367+
"key_values": {},
1368+
"experimental": false,
1369+
"depends_on": [],
1370+
"generic_name": "Charger error code",
1371+
"is_formula": false
1372+
},
1373+
{
1374+
"topic": "N/{installation_id}/charger/{device_id}/NrOfOutputs",
1375+
"message_type": "MetricKind.SENSOR",
1376+
"short_id": "charger_nr_of_outputs",
1377+
"name": "Charger number of outputs",
1378+
"unit_of_measurement": null,
1379+
"metric_type": "MetricType.NONE",
1380+
"metric_nature": "MetricNature.NONE",
1381+
"value_type": "ValueType.INT",
1382+
"precision": null,
1383+
"enum": null,
1384+
"min_max_range": "RangeType.STATIC",
1385+
"min": null,
1386+
"max": null,
1387+
"step": null,
1388+
"is_adjustable_suffix": null,
1389+
"key_values": {},
1390+
"experimental": false,
1391+
"depends_on": [],
1392+
"generic_name": "Charger number of outputs",
1393+
"is_formula": false
1394+
},
1395+
{
1396+
"topic": "N/{installation_id}/charger/{device_id}/State",
1397+
"message_type": "MetricKind.SENSOR",
1398+
"short_id": "charger_state",
1399+
"name": "Charger state",
1400+
"unit_of_measurement": null,
1401+
"metric_type": "MetricType.NONE",
1402+
"metric_nature": "MetricNature.NONE",
1403+
"value_type": "ValueType.ENUM",
1404+
"precision": null,
1405+
"enum": "State",
1406+
"min_max_range": "RangeType.STATIC",
1407+
"min": null,
1408+
"max": null,
1409+
"step": null,
1410+
"is_adjustable_suffix": null,
1411+
"key_values": {},
1412+
"experimental": false,
1413+
"depends_on": [],
1414+
"generic_name": "Charger state",
1415+
"is_formula": false
1416+
},
13071417
{
13081418
"topic": "N/{installation_id}/dcload/{device_id}/Dc/0/Current",
13091419
"message_type": "MetricKind.SENSOR",
@@ -8702,6 +8812,11 @@
87028812
"name": "AC Load",
87038813
"value": "acload"
87048814
},
8815+
{
8816+
"id": "CHARGER",
8817+
"name": "Charger",
8818+
"value": "charger"
8819+
},
87058820
{
87068821
"id": "HUB4",
87078822
"name": "Hub4",

0 commit comments

Comments
 (0)