Skip to content

Commit

Permalink
Fronius Gen24: make meter id configurable (#19341)
Browse files Browse the repository at this point in the history
  • Loading branch information
benesolar authored Mar 3, 2025
1 parent 48c74d4 commit 2a7bc7b
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions templates/definition/meter/fronius-gen24.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ params:
- name: host
- name: port
default: 502
- name: id
default: 200
advanced: true
help:
en: "Meter adress of primary or secondary meters. On the web interface of the inverter, only the address of the first meter (e.g., 200) can be set. Additional meters receive an ascending number (e.g., 201)."
de: "Zähleradresse von Primär- oder Sekundärzählern. Auf der Weboberfläche des Wechselrichters kann nur die Adresse des ersten Zählers (z.B. 200) eingestellt werden. Zusätzliche Zähler erhalten eine aufsteigende Nummer (z.B: 201)."
- name: integer
deprecated: true
- name: maxacpower
Expand All @@ -28,72 +34,72 @@ render: |
power:
source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:W
- 213:W
energy:
source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:TotWhImp
- 213:TotWhImp
scale: 0.001
currents:
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:AphA
- 213:AphA
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:AphB
- 213:AphB
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:AphC
- 213:AphC
voltages:
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:PhVphA
- 213:PhVphA
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:PhVphB
- 213:PhVphB
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:PhVphC
- 213:PhVphC
powers:
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:WphA
- 213:WphA
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:WphB
- 213:WphB
- source: sunspec
uri: {{ .host }}:{{ .port }}
id: 200
id: {{ .id }}
value:
- 203:WphC
- 213:WphC
Expand Down

0 comments on commit 2a7bc7b

Please sign in to comment.