Browse Source

Merge 73c206da90 into c4fe30f118

pull/1896/merge
xX-nichtlachen-Xx 1 day ago
committed by GitHub
parent
commit
d838549a19
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 3
      src/hm/hmInverter.h
  2. 2
      tools/rpi/hoymiles/decoders/__init__.py

3
src/hm/hmInverter.h

@ -732,6 +732,7 @@ class Inverter {
case 149: return String(F("Grid: Island detected")); case 149: return String(F("Grid: Island detected"));
case 150: return String(F("DCI exceeded")); case 150: return String(F("DCI exceeded"));
case 151: return String(F("Grid: Severe grid wave distortion"));
case 171: return String(F("Grid: Abnormal phase difference between phase to phase")); case 171: return String(F("Grid: Abnormal phase difference between phase to phase"));
case 181: return String(F("Abnormal insulation impedance")); case 181: return String(F("Abnormal insulation impedance"));
@ -755,6 +756,8 @@ class Inverter {
case 221: return String(F("PV-4: Input overvoltage")); case 221: return String(F("PV-4: Input overvoltage"));
case 222: return String(F("PV-4: Input undervoltage")); case 222: return String(F("PV-4: Input undervoltage"));
case 223: return String(F("Grid: Connection attempt failed"));
case 301: return String(F("FB short circuit failure")); case 301: return String(F("FB short circuit failure"));
case 302: return String(F("FB short circuit failure")); case 302: return String(F("FB short circuit failure"));
case 303: return String(F("FB overcurrent protection failure")); case 303: return String(F("FB overcurrent protection failure"));

2
tools/rpi/hoymiles/decoders/__init__.py

@ -268,6 +268,7 @@ class EventsResponse(UnknownResponse):
147: 'Power grid outage', # 0x93 147: 'Power grid outage', # 0x93
148: 'Grid disconnection', # 0x94 148: 'Grid disconnection', # 0x94
149: 'Island detected', # 0x95 149: 'Island detected', # 0x95
151: 'Severe grid wave distortion', # 0x97
205: 'Input port 1 & 2 overvoltage', # 0xCD 205: 'Input port 1 & 2 overvoltage', # 0xCD
206: 'Input port 3 & 4 overvoltage', # 0xCE 206: 'Input port 3 & 4 overvoltage', # 0xCE
207: 'Input port 1 & 2 undervoltage', # 0xCF 207: 'Input port 1 & 2 undervoltage', # 0xCF
@ -286,6 +287,7 @@ class EventsResponse(UnknownResponse):
220: 'PV-3 Input undervoltage', # 0xDC 220: 'PV-3 Input undervoltage', # 0xDC
221: 'PV-4 Input overvoltage', # 0xDD 221: 'PV-4 Input overvoltage', # 0xDD
222: 'PV-4 Input undervoltage', # 0xDE 222: 'PV-4 Input undervoltage', # 0xDE
223: 'Grid connection attempt failed', #0xDF
301: 'Hardware error code 301', # 0x012D 301: 'Hardware error code 301', # 0x012D
302: 'Hardware error code 302', # 0x012E 302: 'Hardware error code 302', # 0x012E
303: 'Hardware error code 303', # 0x012F 303: 'Hardware error code 303', # 0x012F

Loading…
Cancel
Save