-
-
Notifications
You must be signed in to change notification settings - Fork 743
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Ginlong Solis inverter (Modbus) (#10889)
- Loading branch information
1 parent
03661b6
commit 38cbd3e
Showing
3 changed files
with
170 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
template: solis-hybrid | ||
products: | ||
- brand: Ginlong | ||
description: | ||
generic: Solis Hybrid Inverter | ||
params: | ||
- name: usage | ||
choice: ["grid", "pv", "battery"] | ||
allinone: true | ||
- name: modbus | ||
choice: ["rs485"] | ||
baudrate: 9600 | ||
id: 1 | ||
- name: capacity | ||
advanced: true | ||
render: | | ||
type: custom | ||
{{- if eq .usage "grid" }} | ||
power: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33263 # Meter total active power | ||
type: input | ||
decode: int32 | ||
scale: -1 | ||
energy: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33283 # Meter total active energy from grid | ||
type: input | ||
decode: uint32 | ||
scale: 0.01 | ||
currents: | ||
- source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33252 # Meter ac current A | ||
type: input | ||
decode: uint16 | ||
scale: 0.01 | ||
- source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33254 # Meter ac current B | ||
type: input | ||
decode: uint16 | ||
scale: 0.01 | ||
- source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33256 # Meter ac current C | ||
type: input | ||
decode: uint16 | ||
scale: 0.01 | ||
powers: | ||
- source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33257 # Meter active power A | ||
type: input | ||
decode: int32 | ||
scale: -1 | ||
- source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33259 # Meter active power B | ||
type: input | ||
decode: int32 | ||
scale: -1 | ||
- source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33261 # Meter active power C | ||
type: input | ||
decode: int32 | ||
scale: -1 | ||
{{- end }} | ||
{{- if eq .usage "pv" }} | ||
power: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
type: input | ||
address: 33057 # Total DC output power (PV Power) | ||
decode: uint32 | ||
energy: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33029 # Total energy generation | ||
type: input | ||
decode: uint32 | ||
{{- end }} | ||
{{- if eq .usage "battery" }} | ||
power: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
type: input | ||
address: 33149 # Battery power | ||
decode: int32 | ||
scale: -1 | ||
energy: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33165 # Battery total discharge energy | ||
type: input | ||
decode: uint32 | ||
soc: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 33139 # Battery capacity SOC | ||
type: input | ||
decode: uint16 | ||
{{- if .capacity }} | ||
capacity: {{ .capacity }} # kWh | ||
{{- end }} | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
template: solis | ||
products: | ||
- brand: Ginlong | ||
description: | ||
generic: Solis Inverter | ||
params: | ||
- name: usage | ||
choice: ["grid", "pv"] | ||
- name: modbus | ||
choice: ["rs485"] | ||
baudrate: 9600 | ||
id: 1 | ||
render: | | ||
type: custom | ||
{{- if eq .usage "grid" }} | ||
power: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 3262 # Meter Total P | ||
type: input | ||
decode: int32 | ||
scale: -1 | ||
energy: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 3282 # Meter grid import active energy | ||
type: input | ||
decode: uint32 | ||
scale: 0.01 | ||
{{- end }} | ||
{{- if eq .usage "pv" }} | ||
power: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
type: input | ||
address: 3004 # Active power | ||
decode: uint32 | ||
energy: | ||
source: modbus | ||
{{- include "modbus" . | indent 2 }} | ||
register: | ||
address: 3008 # Total energy | ||
type: input | ||
decode: uint32 | ||
{{- end }} |