iobroker.sigenergy 2.3.3 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +41 -1
- package/admin/i18n/de.json +18 -2
- package/admin/i18n/en.json +18 -2
- package/admin/i18n/es.json +18 -2
- package/admin/i18n/fr.json +18 -2
- package/admin/i18n/it.json +18 -2
- package/admin/i18n/nl.json +18 -2
- package/admin/i18n/pl.json +18 -2
- package/admin/i18n/pt.json +18 -2
- package/admin/i18n/ru.json +18 -2
- package/admin/i18n/uk.json +18 -2
- package/admin/i18n/zh-cn.json +18 -2
- package/admin/jsonConfig.json +105 -18
- package/io-package.json +28 -14
- package/lib/adapter-config.d.ts +59 -0
- package/lib/modbus.js +19 -6
- package/lib/registers.js +368 -11
- package/lib/scanner.js +4 -4
- package/main.js +667 -117
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/iobroker.sigenergy)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
|
|
6
|
-
**Adapter for Sigenergy solar energy systems via Modbus TCP/RTU**
|
|
6
|
+
**Adapter for [Sigenergy](https://www.sigenergy.com) solar energy systems via Modbus TCP/RTU**
|
|
7
7
|
|
|
8
8
|
Supports the Sigenergy Modbus Protocol V2.9 (released 2026-05-13).
|
|
9
9
|
|
|
@@ -51,6 +51,27 @@ Supports the Sigenergy Modbus Protocol V2.9 (released 2026-05-13).
|
|
|
51
51
|
|
|
52
52
|
---
|
|
53
53
|
|
|
54
|
+
## Device Types
|
|
55
|
+
|
|
56
|
+
Since v2.4.0 every adapter instance handles exactly **one** Sigenergy system type (strict either/or).
|
|
57
|
+
Select the type in the Components tab — or use **Auto-detect from device** to read it from the hardware.
|
|
58
|
+
Register sets are gated per the model footnotes of the official Modbus Protocol V2.9:
|
|
59
|
+
|
|
60
|
+
| Capability | SigenStor | Sigen Hybrid | Sigen PV M1-HYB | PV-only (PV Max) | SigenMicro-only |
|
|
61
|
+
|---|---|---|---|---|---|
|
|
62
|
+
| ESS / battery registers | always | optional | optional | — | — |
|
|
63
|
+
| DC charger | ✓ | ✓ | — | — | — |
|
|
64
|
+
| Grid code (40051-40068) | ✓ | ✓ | — | — | — |
|
|
65
|
+
| ESS preheating (50000-50183) | — | — | ✓ | — | — |
|
|
66
|
+
| PCC power factor (40157/40158) | — | — | ✓ | — | — |
|
|
67
|
+
| Plant registers (slave 247) | ✓ | ✓ | ✓ | ✓ | — |
|
|
68
|
+
| SigenMicro micro-inverters | optional | optional | optional | optional | ✓ |
|
|
69
|
+
|
|
70
|
+
One Modbus endpoint (IP/bus) = one instance. A SigenStor with additional SigenMicro micro-inverters
|
|
71
|
+
belongs in a **single** instance — the micros are an additive component, not a separate type.
|
|
72
|
+
Existing pre-2.4.0 configurations are migrated automatically (derived type is logged on startup —
|
|
73
|
+
please review the Components tab once).
|
|
74
|
+
|
|
54
75
|
## Configuration
|
|
55
76
|
|
|
56
77
|
### Connection Tab
|
|
@@ -153,6 +174,25 @@ Status and power readings for the DC charger.
|
|
|
153
174
|
|
|
154
175
|
## Changelog
|
|
155
176
|
|
|
177
|
+
### 2.5.0 (2026-06-12)
|
|
178
|
+
|
|
179
|
+
- (ssbingo) Architectural write safety: Modbus writes are rejected in the write dispatcher itself when the target register is not valid for the configured device type (models gating in onStateChange, plant guard for SigenMicro-only)
|
|
180
|
+
- (ssbingo) TypeScript type check fixed — new `lib/adapter-config.d.ts` with full AdapterConfig declaration, typed modbus-serial constructor, ioBroker.CommonType/SettableObject annotations; new `npm run check` script passes with 0 errors
|
|
181
|
+
- (ssbingo) ESLint configuration allows JSDoc `@type` tags in this checked-JavaScript project (jsdoc/check-tag-names with typed:false)
|
|
182
|
+
|
|
183
|
+
### 2.4.0 (2026-06-12)
|
|
184
|
+
|
|
185
|
+
- (ssbingo) Device type architecture: mandatory selector (SigenStor / Sigen Hybrid / Sigen PV M1-HYB / PV-only inverter / SigenMicro-only) with strict either/or register gating per protocol V2.9 model footnotes
|
|
186
|
+
- (ssbingo) Sigen Hybrid and PV-only inverters (Sigen PV / PV Max) officially supported
|
|
187
|
+
- (ssbingo) Auto-detect device type from hardware in the admin UI (registers 30500 / 31024)
|
|
188
|
+
- (ssbingo) Model verification on startup — warns when configuration and detected hardware mismatch (new state info.modelType)
|
|
189
|
+
- (ssbingo) Dynamic PV string registers: PV5-PV16 voltage/current enabled by the string count reported in register 31025
|
|
190
|
+
- (ssbingo) PCC power factor controls (40157/40158) gated to Sigen PV M1-HYB; ESS preheating gated to M1-HYB; DC charger and grid code gated to SigenStor/Sigen Hybrid
|
|
191
|
+
- (ssbingo) Automatic migration of pre-2.4.0 configurations and cleanup of channels that are invalid for the selected device type
|
|
192
|
+
|
|
193
|
+
### 2.3.4 (2026-06-12)
|
|
194
|
+
- (ssbingo) fix: correct protocol level detection — use proper register quantities for probes, descend from V2.9 to V2.6, distinguish transport errors from device exceptions to avoid false pre-V2.6 report
|
|
195
|
+
|
|
156
196
|
### 2.3.3 (2026-06-11)
|
|
157
197
|
- (ssbingo) fix: suppress repeated register read warnings after first occurrence for plant/inverter/acCharger/dcCharger/pss/pid; subsequent failures log at debug level only
|
|
158
198
|
|
package/admin/i18n/de.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Verwende den SigenMicro-Reiter, um den Scan durchzuführen und gefundene Geräte zu verwalten. Die Geräteliste und Einzel-Aktivierungen werden automatisch gespeichert.",
|
|
122
122
|
"💾 Save selection": "💾 Auswahl speichern",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 SigenMicro-Geräte suchen",
|
|
124
|
-
"🔍 Start Scan": "🔍 Scan starten"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Scan starten",
|
|
125
|
+
"Device Type": "Gerätetyp",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Bestimmt, welche Registersätze gültig sind (Modell-Fußnoten Protokoll V2.9)",
|
|
127
|
+
"Auto-detect from device": "Automatisch vom Gerät erkennen",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Liest Modelltyp (Reg. 30500) und Batteriepack-Anzahl (Reg. 31024) — erfordert eine funktionierende, gespeicherte Verbindung",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (All-in-One-Speichersystem)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (Hybridwechselrichter, optionale Batterie)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (Gewerbe-Hybridserie)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (reiner PV-Wechselrichter)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Nur SigenMicro (Mikrowechselrichter, keine Anlage)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Wähle den Sigenergy-Gerätetyp an diesem Modbus-Endpunkt. Eine Instanz behandelt genau einen Systemtyp (striktes Entweder/Oder). Alle Komponentenoptionen unten hängen von dieser Wahl ab.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Nur-SigenMicro-Modus: Anlagen- und Wechselrichterabfrage ist deaktiviert — nur die konfigurierten Mikrowechselrichter werden gelesen. Nutze den SigenMicro-Tab zum Scannen und Auswählen.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Energiespeichersystem. SigenStor: integriert (immer aktiv). Hybrid/M1-HYB: optionale Batteriepacks.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Sigen EVAC Ladestation (erreichbar über den Wechselrichter als Modbus-Gateway)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "DC-Schnellladen — nur SigenStor und Sigen Hybrid unterstützen einen DC-Charger (Protokollhinweis 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Grid-Code-Parameter (40051-40068) — nur SigenStor und Sigen Hybrid (Protokollhinweis 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "ESS-Preheating-TOU-Register (50000-50183) — nur Sigen PV M1-HYA/HYB (Protokollhinweis 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/en.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Scan for SigenMicro devices",
|
|
124
|
-
"🔍 Start Scan": "🔍 Start Scan"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Start Scan",
|
|
125
|
+
"Device Type": "Device Type",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Defines which register sets are valid (protocol V2.9 model footnotes)",
|
|
127
|
+
"Auto-detect from device": "Auto-detect from device",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (all-in-one storage system)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (hybrid inverter, optional battery)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (commercial hybrid series)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (PV-only inverter)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "SigenMicro only (micro-inverters, no plant)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/es.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Use la pestaña SigenMicro para ejecutar el escaneo y gestionar los dispositivos encontrados.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Buscar dispositivos SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Iniciar escaneo"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Iniciar escaneo",
|
|
125
|
+
"Device Type": "Tipo de dispositivo",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Define qué conjuntos de registros son válidos (notas de modelo del protocolo V2.9)",
|
|
127
|
+
"Auto-detect from device": "Detección automática desde el dispositivo",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Lee el tipo de modelo (reg. 30500) y el número de paquetes de batería (reg. 31024) — requiere una conexión guardada y funcional",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (sistema de almacenamiento todo en uno)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (inversor híbrido, batería opcional)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (serie híbrida comercial)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (inversor solo PV)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Solo SigenMicro (microinversores, sin planta)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Seleccione el tipo de dispositivo Sigenergy en este punto final Modbus. Una instancia maneja exactamente un tipo de sistema. Todas las opciones de componentes a continuación dependen de esta elección.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Modo solo SigenMicro: el sondeo de planta e inversor está deshabilitado — solo se leen los microinversores configurados. Use la pestaña SigenMicro para escanear y seleccionar.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Sistema de almacenamiento. SigenStor: integrado (siempre activo). Hybrid/M1-HYB: paquetes de batería opcionales.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Estación de carga Sigen EVAC (accesible a través del inversor como puerta de enlace Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Carga rápida DC — solo SigenStor y Sigen Hybrid admiten un cargador DC (nota 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Parámetros de grid code (40051-40068) — solo SigenStor y Sigen Hybrid (nota 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Registros TOU de precalentamiento ESS (50000-50183) — solo Sigen PV M1-HYA/HYB (nota 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/fr.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Utilisez l'onglet SigenMicro pour lancer le scan et gérer les appareils découverts.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Rechercher les appareils SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Lancer le scan"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Lancer le scan",
|
|
125
|
+
"Device Type": "Type d'appareil",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Définit quels jeux de registres sont valides (notes de modèle du protocole V2.9)",
|
|
127
|
+
"Auto-detect from device": "Détection automatique depuis l'appareil",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Lit le type de modèle (reg. 30500) et le nombre de packs de batterie (reg. 31024) — nécessite une connexion fonctionnelle enregistrée",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (système de stockage tout-en-un)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (onduleur hybride, batterie en option)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (série hybride commerciale)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (onduleur PV uniquement)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "SigenMicro uniquement (micro-onduleurs, sans centrale)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Sélectionnez le type d'appareil Sigenergy sur ce point de terminaison Modbus. Une instance gère exactement un type de système. Toutes les options de composants ci-dessous dépendent de ce choix.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Mode SigenMicro uniquement : l'interrogation de la centrale et de l'onduleur est désactivée — seuls les micro-onduleurs configurés sont lus. Utilisez l'onglet SigenMicro pour scanner et sélectionner.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Système de stockage d'énergie. SigenStor : intégré (toujours actif). Hybrid/M1-HYB : packs de batterie en option.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Borne de recharge Sigen EVAC (accessible via l'onduleur comme passerelle Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Charge rapide DC — seuls SigenStor et Sigen Hybrid prennent en charge un chargeur DC (note 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Paramètres grid code (40051-40068) — uniquement SigenStor et Sigen Hybrid (note 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Registres TOU de préchauffage ESS (50000-50183) — uniquement Sigen PV M1-HYA/HYB (note 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/it.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Usa la scheda SigenMicro per eseguire la scansione e gestire i dispositivi trovati.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Scansiona dispositivi SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Avvia scansione"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Avvia scansione",
|
|
125
|
+
"Device Type": "Tipo di dispositivo",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Definisce quali set di registri sono validi (note sui modelli del protocollo V2.9)",
|
|
127
|
+
"Auto-detect from device": "Rilevamento automatico dal dispositivo",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Legge il tipo di modello (reg. 30500) e il numero di pacchi batteria (reg. 31024) — richiede una connessione funzionante e salvata",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (sistema di accumulo all-in-one)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (inverter ibrido, batteria opzionale)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (serie ibrida commerciale)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (inverter solo PV)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Solo SigenMicro (microinverter, nessun impianto)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Seleziona il tipo di dispositivo Sigenergy su questo endpoint Modbus. Un'istanza gestisce esattamente un tipo di sistema. Tutte le opzioni dei componenti sottostanti dipendono da questa scelta.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Modalità solo SigenMicro: il polling di impianto e inverter è disabilitato — vengono letti solo i microinverter configurati. Usa la scheda SigenMicro per scansionare e selezionare.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Sistema di accumulo. SigenStor: integrato (sempre attivo). Hybrid/M1-HYB: pacchi batteria opzionali.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Stazione di ricarica Sigen EVAC (raggiunta tramite l'inverter come gateway Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Ricarica rapida DC — solo SigenStor e Sigen Hybrid supportano un caricatore DC (nota 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Parametri grid code (40051-40068) — solo SigenStor e Sigen Hybrid (nota 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Registri TOU di preriscaldamento ESS (50000-50183) — solo Sigen PV M1-HYA/HYB (nota 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/nl.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Gebruik de SigenMicro-tab om de scan uit te voeren en gevonden apparaten te beheren.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 SigenMicro-apparaten scannen",
|
|
124
|
-
"🔍 Start Scan": "🔍 Scan starten"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Scan starten",
|
|
125
|
+
"Device Type": "Apparaattype",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Bepaalt welke registersets geldig zijn (modelvoetnoten protocol V2.9)",
|
|
127
|
+
"Auto-detect from device": "Automatisch detecteren van apparaat",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Leest modeltype (reg. 30500) en aantal batterijpacks (reg. 31024) — vereist een werkende, opgeslagen verbinding",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (alles-in-één opslagsysteem)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (hybride omvormer, optionele batterij)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (commerciële hybride serie)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (alleen PV-omvormer)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Alleen SigenMicro (micro-omvormers, geen installatie)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Selecteer het Sigenergy-apparaattype op dit Modbus-eindpunt. Eén instantie behandelt precies één systeemtype. Alle componentopties hieronder zijn afhankelijk van deze keuze.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Alleen-SigenMicro-modus: installatie- en omvormerpolling is uitgeschakeld — alleen de geconfigureerde micro-omvormers worden gelezen. Gebruik het SigenMicro-tabblad om te scannen en te selecteren.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Energieopslagsysteem. SigenStor: geïntegreerd (altijd aan). Hybrid/M1-HYB: optionele batterijpacks.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Sigen EVAC laadstation (bereikbaar via de omvormer als Modbus-gateway)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "DC-snelladen — alleen SigenStor en Sigen Hybrid ondersteunen een DC-lader (protocolnotitie 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Grid-code-parameters (40051-40068) — alleen SigenStor en Sigen Hybrid (protocolnotitie 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "ESS-voorverwarmings-TOU-registers (50000-50183) — alleen Sigen PV M1-HYA/HYB (protocolnotitie 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/pl.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Użyj zakładki SigenMicro do uruchomienia skanu i zarządzania znalezionymi urządzeniami.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Skanuj urządzenia SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Rozpocznij skan"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Rozpocznij skan",
|
|
125
|
+
"Device Type": "Typ urządzenia",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Określa, które zestawy rejestrów są ważne (przypisy modeli protokołu V2.9)",
|
|
127
|
+
"Auto-detect from device": "Wykryj automatycznie z urządzenia",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Odczytuje typ modelu (rej. 30500) i liczbę pakietów baterii (rej. 31024) — wymaga działającego, zapisanego połączenia",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (zintegrowany system magazynowania)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (falownik hybrydowy, opcjonalna bateria)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (komercyjna seria hybrydowa)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (falownik tylko PV)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Tylko SigenMicro (mikrofalowniki, bez instalacji)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Wybierz typ urządzenia Sigenergy w tym punkcie końcowym Modbus. Jedna instancja obsługuje dokładnie jeden typ systemu. Wszystkie poniższe opcje komponentów zależą od tego wyboru.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Tryb tylko SigenMicro: odpytywanie instalacji i falownika jest wyłączone — odczytywane są tylko skonfigurowane mikrofalowniki. Użyj karty SigenMicro do skanowania i wyboru.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "System magazynowania energii. SigenStor: zintegrowany (zawsze włączony). Hybrid/M1-HYB: opcjonalne pakiety baterii.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Stacja ładowania Sigen EVAC (dostępna przez falownik jako bramę Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Szybkie ładowanie DC — tylko SigenStor i Sigen Hybrid obsługują ładowarkę DC (uwaga 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Parametry grid code (40051-40068) — tylko SigenStor i Sigen Hybrid (uwaga 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Rejestry TOU podgrzewania ESS (50000-50183) — tylko Sigen PV M1-HYA/HYB (uwaga 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/pt.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Use a aba SigenMicro para executar o scan e gerenciar dispositivos descobertos.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Buscar dispositivos SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Iniciar Scan"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Iniciar Scan",
|
|
125
|
+
"Device Type": "Tipo de dispositivo",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Define quais conjuntos de registros são válidos (notas de modelo do protocolo V2.9)",
|
|
127
|
+
"Auto-detect from device": "Detectar automaticamente do dispositivo",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Lê o tipo de modelo (reg. 30500) e o número de packs de bateria (reg. 31024) — requer uma conexão funcional e salva",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (sistema de armazenamento tudo-em-um)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (inversor híbrido, bateria opcional)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (série híbrida comercial)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (inversor somente PV)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Apenas SigenMicro (microinversores, sem planta)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Selecione o tipo de dispositivo Sigenergy neste endpoint Modbus. Uma instância trata exatamente um tipo de sistema. Todas as opções de componentes abaixo dependem desta escolha.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Modo apenas SigenMicro: a consulta da planta e do inversor está desativada — apenas os microinversores configurados são lidos. Use a guia SigenMicro para escanear e selecionar dispositivos.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Sistema de armazenamento de energia. SigenStor: integrado (sempre ativo). Hybrid/M1-HYB: packs de bateria opcionais.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Estação de carregamento Sigen EVAC (acessada via inversor como gateway Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Carregamento rápido DC — apenas SigenStor e Sigen Hybrid suportam carregador DC (nota 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Parâmetros de grid code (40051-40068) — apenas SigenStor e Sigen Hybrid (nota 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Registros TOU de pré-aquecimento ESS (50000-50183) — apenas Sigen PV M1-HYA/HYB (nota 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/ru.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Используйте вкладку SigenMicro для запуска сканирования и управления устройствами. Список устройств сохраняется автоматически.",
|
|
122
122
|
"💾 Save selection": "💾 Сохранить выбор",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Сканировать устройства SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Начать сканирование"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Начать сканирование",
|
|
125
|
+
"Device Type": "Тип устройства",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Определяет, какие наборы регистров действительны (примечания к моделям протокола V2.9)",
|
|
127
|
+
"Auto-detect from device": "Автоопределение с устройства",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Считывает тип модели (рег. 30500) и количество батарейных модулей (рег. 31024) — требуется рабочее сохранённое соединение",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (моноблочная система хранения)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (гибридный инвертор, опциональная батарея)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (коммерческая гибридная серия)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (только PV-инвертор)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Только SigenMicro (микроинверторы, без станции)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Выберите тип устройства Sigenergy на этой конечной точке Modbus. Один экземпляр обслуживает ровно один тип системы. Все параметры компонентов ниже зависят от этого выбора.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Режим только SigenMicro: опрос станции и инвертора отключён — считываются только настроенные микроинверторы. Используйте вкладку SigenMicro для сканирования и выбора устройств.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Система накопления энергии. SigenStor: встроенная (всегда включена). Hybrid/M1-HYB: опциональные батарейные модули.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Зарядная станция Sigen EVAC (доступна через инвертор как шлюз Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Быстрая зарядка DC — только SigenStor и Sigen Hybrid поддерживают DC-зарядку (примечание 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Параметры Grid Code (40051-40068) — только SigenStor и Sigen Hybrid (примечание 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Регистры предварительного нагрева ESS (50000-50183) — только Sigen PV M1-HYA/HYB (примечание 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/uk.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "Використовуйте вкладку SigenMicro для запуску сканування та керування пристроями.",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 Сканувати пристрої SigenMicro",
|
|
124
|
-
"🔍 Start Scan": "🔍 Почати сканування"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 Почати сканування",
|
|
125
|
+
"Device Type": "Тип пристрою",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "Визначає, які набори регістрів дійсні (примітки до моделей протоколу V2.9)",
|
|
127
|
+
"Auto-detect from device": "Автовизначення з пристрою",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "Зчитує тип моделі (рег. 30500) та кількість батарейних модулів (рег. 31024) — потрібне робоче збережене з'єднання",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor (моноблочна система зберігання)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid (гібридний інвертор, опційна батарея)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB (комерційна гібридна серія)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max (лише PV-інвертор)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "Лише SigenMicro (мікроінвертори, без станції)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "Виберіть тип пристрою Sigenergy на цій кінцевій точці Modbus. Один екземпляр обробляє рівно один тип системи. Усі параметри компонентів нижче залежать від цього вибору.",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "Режим лише SigenMicro: опитування станції та інвертора вимкнено — зчитуються лише налаштовані мікроінвертори. Використовуйте вкладку SigenMicro для сканування та вибору.",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "Система накопичення енергії. SigenStor: вбудована (завжди увімкнена). Hybrid/M1-HYB: опційні батарейні модулі.",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Зарядна станція Sigen EVAC (доступна через інвертор як шлюз Modbus)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "Швидке заряджання DC — лише SigenStor і Sigen Hybrid підтримують DC-зарядку (примітка 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "Параметри Grid Code (40051-40068) — лише SigenStor і Sigen Hybrid (примітка 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "Регістри TOU попереднього нагріву ESS (50000-50183) — лише Sigen PV M1-HYA/HYB (примітка 5.2.3)"
|
|
141
|
+
}
|
package/admin/i18n/zh-cn.json
CHANGED
|
@@ -121,5 +121,21 @@
|
|
|
121
121
|
"Use the SigenMicro tab in the adapter admin page to run the scan and manage discovered devices. The device list and individual enable/disable selections are stored automatically.": "使用SigenMicro标签页运行扫描并管理发现的设备。",
|
|
122
122
|
"💾 Save selection": "💾 Save selection",
|
|
123
123
|
"🔍 Scan for SigenMicro devices": "🔍 扫描SigenMicro设备",
|
|
124
|
-
"🔍 Start Scan": "🔍 开始扫描"
|
|
125
|
-
|
|
124
|
+
"🔍 Start Scan": "🔍 开始扫描",
|
|
125
|
+
"Device Type": "设备类型",
|
|
126
|
+
"Defines which register sets are valid (protocol V2.9 model footnotes)": "决定哪些寄存器集有效(协议 V2.9 型号脚注)",
|
|
127
|
+
"Auto-detect from device": "从设备自动检测",
|
|
128
|
+
"Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection": "读取型号类型(寄存器 30500)和电池组数量(寄存器 31024)——需要已保存且可用的连接",
|
|
129
|
+
"SigenStor (all-in-one storage system)": "SigenStor(一体式储能系统)",
|
|
130
|
+
"Sigen Hybrid (hybrid inverter, optional battery)": "Sigen Hybrid(混合逆变器,电池可选)",
|
|
131
|
+
"Sigen PV M1-HYB (commercial hybrid series)": "Sigen PV M1-HYB(商用混合系列)",
|
|
132
|
+
"Sigen PV / PV Max (PV-only inverter)": "Sigen PV / PV Max(纯光伏逆变器)",
|
|
133
|
+
"SigenMicro only (micro-inverters, no plant)": "仅 SigenMicro(微型逆变器,无电站)",
|
|
134
|
+
"Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.": "选择此 Modbus 端点上的 Sigenergy 设备类型。一个实例只处理一种系统类型(严格二选一)。下面的所有组件选项都取决于此选择。",
|
|
135
|
+
"SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.": "仅 SigenMicro 模式:电站和逆变器轮询已禁用——仅读取已配置的微型逆变器。请使用 SigenMicro 选项卡扫描并选择设备。",
|
|
136
|
+
"Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.": "储能系统。SigenStor:集成(始终开启)。Hybrid/M1-HYB:可选电池组。",
|
|
137
|
+
"Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)": "Sigen EVAC 充电站(通过逆变器作为 Modbus 网关访问)",
|
|
138
|
+
"DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)": "直流快充——仅 SigenStor 和 Sigen Hybrid 支持直流充电器(协议注 5.3)",
|
|
139
|
+
"Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)": "电网准则参数(40051-40068)——仅 SigenStor 和 Sigen Hybrid(协议注 5.2.4)",
|
|
140
|
+
"ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)": "ESS 预热 TOU 寄存器(50000-50183)——仅 Sigen PV M1-HYA/HYB(协议注 5.2.3)"
|
|
141
|
+
}
|
package/admin/jsonConfig.json
CHANGED
|
@@ -5,9 +5,74 @@
|
|
|
5
5
|
"type": "panel",
|
|
6
6
|
"label": "Components",
|
|
7
7
|
"items": {
|
|
8
|
+
"_deviceTypeHeader": {
|
|
9
|
+
"type": "staticText",
|
|
10
|
+
"text": "Select the Sigenergy device type at this Modbus endpoint. One instance handles exactly one system type (strict either/or). All component options below depend on this choice.",
|
|
11
|
+
"sm": 12,
|
|
12
|
+
"xs": 12,
|
|
13
|
+
"md": 12,
|
|
14
|
+
"lg": 12,
|
|
15
|
+
"xl": 12
|
|
16
|
+
},
|
|
17
|
+
"deviceType": {
|
|
18
|
+
"type": "select",
|
|
19
|
+
"label": "Device Type",
|
|
20
|
+
"help": "Defines which register sets are valid (protocol V2.9 model footnotes)",
|
|
21
|
+
"default": "sigenstor",
|
|
22
|
+
"options": [
|
|
23
|
+
{
|
|
24
|
+
"label": "SigenStor (all-in-one storage system)",
|
|
25
|
+
"value": "sigenstor"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"label": "Sigen Hybrid (hybrid inverter, optional battery)",
|
|
29
|
+
"value": "sigenhybrid"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"label": "Sigen PV M1-HYB (commercial hybrid series)",
|
|
33
|
+
"value": "m1hyb"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"label": "Sigen PV / PV Max (PV-only inverter)",
|
|
37
|
+
"value": "pvinverter"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"label": "SigenMicro only (micro-inverters, no plant)",
|
|
41
|
+
"value": "sigenmicroOnly"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"sm": 12,
|
|
45
|
+
"xs": 12,
|
|
46
|
+
"md": 8,
|
|
47
|
+
"lg": 6,
|
|
48
|
+
"xl": 6
|
|
49
|
+
},
|
|
50
|
+
"_detectDeviceType": {
|
|
51
|
+
"type": "sendTo",
|
|
52
|
+
"command": "detectDeviceType",
|
|
53
|
+
"label": "Auto-detect from device",
|
|
54
|
+
"help": "Reads model type (reg. 30500) and battery pack count (reg. 31024) — requires a working, saved connection",
|
|
55
|
+
"useNative": true,
|
|
56
|
+
"showProcess": true,
|
|
57
|
+
"variant": "outlined",
|
|
58
|
+
"sm": 12,
|
|
59
|
+
"xs": 12,
|
|
60
|
+
"md": 4,
|
|
61
|
+
"lg": 4,
|
|
62
|
+
"xl": 4
|
|
63
|
+
},
|
|
64
|
+
"_dividerType": {
|
|
65
|
+
"type": "divider",
|
|
66
|
+
"sm": 12,
|
|
67
|
+
"xs": 12,
|
|
68
|
+
"md": 12,
|
|
69
|
+
"lg": 12,
|
|
70
|
+
"xl": 12
|
|
71
|
+
},
|
|
8
72
|
"_componentsHeader": {
|
|
9
73
|
"type": "staticText",
|
|
10
74
|
"text": "Select which components are installed in your Sigenergy system.",
|
|
75
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'",
|
|
11
76
|
"sm": 12,
|
|
12
77
|
"xs": 12,
|
|
13
78
|
"md": 12,
|
|
@@ -17,13 +82,15 @@
|
|
|
17
82
|
"hasBattery": {
|
|
18
83
|
"type": "checkbox",
|
|
19
84
|
"label": "Battery / ESS",
|
|
20
|
-
"help": "Energy Storage System",
|
|
85
|
+
"help": "Energy Storage System. SigenStor: integral (always on). Hybrid/M1-HYB: optional battery packs.",
|
|
21
86
|
"default": true,
|
|
22
87
|
"sm": 12,
|
|
23
88
|
"md": 6,
|
|
24
89
|
"lg": 3,
|
|
25
90
|
"xs": 12,
|
|
26
|
-
"xl": 3
|
|
91
|
+
"xl": 3,
|
|
92
|
+
"hidden": "data.deviceType === 'pvinverter' || data.deviceType === 'sigenmicroOnly'",
|
|
93
|
+
"disabled": "data.deviceType === 'sigenstor'"
|
|
27
94
|
},
|
|
28
95
|
"hasPv": {
|
|
29
96
|
"type": "checkbox",
|
|
@@ -34,29 +101,32 @@
|
|
|
34
101
|
"md": 6,
|
|
35
102
|
"lg": 3,
|
|
36
103
|
"xs": 12,
|
|
37
|
-
"xl": 3
|
|
104
|
+
"xl": 3,
|
|
105
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
38
106
|
},
|
|
39
107
|
"hasAcCharger": {
|
|
40
108
|
"type": "checkbox",
|
|
41
109
|
"label": "AC Charger (EVAC)",
|
|
42
|
-
"help": "Sigen EVAC EV charging station",
|
|
110
|
+
"help": "Sigen EVAC EV charging station (reached via the inverter as Modbus gateway)",
|
|
43
111
|
"default": false,
|
|
44
112
|
"sm": 12,
|
|
45
113
|
"md": 6,
|
|
46
114
|
"lg": 3,
|
|
47
115
|
"xs": 12,
|
|
48
|
-
"xl": 3
|
|
116
|
+
"xl": 3,
|
|
117
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
49
118
|
},
|
|
50
119
|
"hasDcCharger": {
|
|
51
120
|
"type": "checkbox",
|
|
52
121
|
"label": "DC Charger",
|
|
53
|
-
"help": "DC fast charging (
|
|
122
|
+
"help": "DC fast charging — only SigenStor and Sigen Hybrid support a DC charger (protocol note 5.3)",
|
|
54
123
|
"default": false,
|
|
55
124
|
"sm": 12,
|
|
56
125
|
"md": 6,
|
|
57
126
|
"lg": 3,
|
|
58
127
|
"xs": 12,
|
|
59
|
-
"xl": 3
|
|
128
|
+
"xl": 3,
|
|
129
|
+
"hidden": "data.deviceType !== 'sigenstor' && data.deviceType !== 'sigenhybrid'"
|
|
60
130
|
},
|
|
61
131
|
"hasSigenMicro": {
|
|
62
132
|
"type": "checkbox",
|
|
@@ -67,7 +137,18 @@
|
|
|
67
137
|
"md": 6,
|
|
68
138
|
"lg": 3,
|
|
69
139
|
"xs": 12,
|
|
70
|
-
"xl": 3
|
|
140
|
+
"xl": 3,
|
|
141
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
142
|
+
},
|
|
143
|
+
"_microOnlyInfo": {
|
|
144
|
+
"type": "staticText",
|
|
145
|
+
"text": "SigenMicro-only mode: plant and inverter polling is disabled — only the configured micro-inverters are read. Use the SigenMicro tab to scan and select devices.",
|
|
146
|
+
"hidden": "data.deviceType !== 'sigenmicroOnly'",
|
|
147
|
+
"sm": 12,
|
|
148
|
+
"xs": 12,
|
|
149
|
+
"md": 12,
|
|
150
|
+
"lg": 12,
|
|
151
|
+
"xl": 12
|
|
71
152
|
},
|
|
72
153
|
"_divider1": {
|
|
73
154
|
"type": "divider",
|
|
@@ -497,7 +578,8 @@
|
|
|
497
578
|
"md": 6,
|
|
498
579
|
"xs": 12,
|
|
499
580
|
"lg": 4,
|
|
500
|
-
"xl": 4
|
|
581
|
+
"xl": 4,
|
|
582
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
501
583
|
},
|
|
502
584
|
"enableCumulativeEnergy": {
|
|
503
585
|
"type": "checkbox",
|
|
@@ -508,18 +590,20 @@
|
|
|
508
590
|
"md": 6,
|
|
509
591
|
"xs": 12,
|
|
510
592
|
"lg": 4,
|
|
511
|
-
"xl": 4
|
|
593
|
+
"xl": 4,
|
|
594
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
512
595
|
},
|
|
513
596
|
"enableGridCode": {
|
|
514
597
|
"type": "checkbox",
|
|
515
598
|
"label": "Grid Code Parameters (V2.8)",
|
|
516
|
-
"help": "
|
|
599
|
+
"help": "Grid code parameters (40051-40068) — only SigenStor and Sigen Hybrid (protocol note 5.2.4)",
|
|
517
600
|
"default": false,
|
|
518
601
|
"sm": 12,
|
|
519
602
|
"md": 6,
|
|
520
603
|
"xs": 12,
|
|
521
604
|
"lg": 4,
|
|
522
|
-
"xl": 4
|
|
605
|
+
"xl": 4,
|
|
606
|
+
"hidden": "data.deviceType !== 'sigenstor' && data.deviceType !== 'sigenhybrid'"
|
|
523
607
|
},
|
|
524
608
|
"_divider_ext2": {
|
|
525
609
|
"type": "divider",
|
|
@@ -547,7 +631,8 @@
|
|
|
547
631
|
"md": 6,
|
|
548
632
|
"xs": 12,
|
|
549
633
|
"lg": 4,
|
|
550
|
-
"xl": 4
|
|
634
|
+
"xl": 4,
|
|
635
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
551
636
|
},
|
|
552
637
|
"pssSlaveId": {
|
|
553
638
|
"type": "number",
|
|
@@ -556,7 +641,7 @@
|
|
|
556
641
|
"default": 5,
|
|
557
642
|
"min": 1,
|
|
558
643
|
"max": 246,
|
|
559
|
-
"hidden": "!data.enablePss",
|
|
644
|
+
"hidden": "(!data.enablePss) || data.deviceType === 'sigenmicroOnly'",
|
|
560
645
|
"sm": 12,
|
|
561
646
|
"md": 6,
|
|
562
647
|
"xs": 12,
|
|
@@ -589,7 +674,8 @@
|
|
|
589
674
|
"md": 6,
|
|
590
675
|
"xs": 12,
|
|
591
676
|
"lg": 4,
|
|
592
|
-
"xl": 4
|
|
677
|
+
"xl": 4,
|
|
678
|
+
"hidden": "data.deviceType === 'sigenmicroOnly'"
|
|
593
679
|
},
|
|
594
680
|
"pidSlaveId": {
|
|
595
681
|
"type": "number",
|
|
@@ -598,7 +684,7 @@
|
|
|
598
684
|
"default": 6,
|
|
599
685
|
"min": 1,
|
|
600
686
|
"max": 246,
|
|
601
|
-
"hidden": "!data.enablePid",
|
|
687
|
+
"hidden": "(!data.enablePid) || data.deviceType === 'sigenmicroOnly'",
|
|
602
688
|
"sm": 12,
|
|
603
689
|
"md": 6,
|
|
604
690
|
"xs": 12,
|
|
@@ -625,13 +711,14 @@
|
|
|
625
711
|
"enableEssPreheating": {
|
|
626
712
|
"type": "checkbox",
|
|
627
713
|
"label": "ESS Preheating TOU Schedules (V2.9)",
|
|
628
|
-
"help": "
|
|
714
|
+
"help": "ESS Preheating TOU registers (50000-50183) — only Sigen PV M1-HYA/HYB (protocol note 5.2.3)",
|
|
629
715
|
"default": false,
|
|
630
716
|
"sm": 12,
|
|
631
717
|
"md": 6,
|
|
632
718
|
"xs": 12,
|
|
633
719
|
"lg": 4,
|
|
634
|
-
"xl": 4
|
|
720
|
+
"xl": 4,
|
|
721
|
+
"hidden": "data.deviceType !== 'm1hyb'"
|
|
635
722
|
}
|
|
636
723
|
}
|
|
637
724
|
},
|