Skip to content

Commit a5c33d6

Browse files
authored
add vebus id (#850)
1 parent 34b4ec5 commit a5c33d6

File tree

1 file changed

+16
-1
lines changed
  • src/components/devices/victron/victron

1 file changed

+16
-1
lines changed

src/components/devices/victron/victron/bat.vue

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,28 @@
22
<div class="device-victron-bat">
33
<openwb-base-heading> Einstellungen für Victron Batteriespeicher </openwb-base-heading>
44
<openwb-base-number-input
5-
title="Modbus ID"
5+
title="Modbus ID Speicher"
66
required
77
:model-value="component.configuration.modbus_id"
88
min="1"
99
max="255"
1010
@update:model-value="updateConfiguration($event, 'configuration.modbus_id')"
1111
/>
12+
<openwb-base-number-input
13+
title="Modbus ID VE.Bus"
14+
required
15+
:model-value="component.configuration.vebus_id"
16+
min="1"
17+
max="255"
18+
@update:model-value="updateConfiguration($event, 'configuration.vebus_id')"
19+
>
20+
<template #help>
21+
Die Modbus ID des VE.Bus kann je nach Victron Version abweichen. Übliche IDs sind
22+
227, 228, 242 und 246.<br />
23+
Die ID kann unter "Settings > Services > Modbus/TCP >
24+
Available services" eingesehen werden.
25+
</template>
26+
</openwb-base-number-input>
1227
</div>
1328
</template>
1429

0 commit comments

Comments
 (0)