Skip to content

Commit

Permalink
fix: update Solax normal status
Browse files Browse the repository at this point in the history
  • Loading branch information
slipx06 committed Jan 13, 2025
1 parent 418a78a commit 36e3d37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sunsynk-power-flow-card",
"version": "6.4.1",
"version": "6.4.2",
"description": "A customizable Home Assistant card to emulate the Sunsynk System flow that's displayed on the Inverter screen.",
"main": "sunsynk-power-flow-card.js",
"scripts": {
Expand Down
5 changes: 4 additions & 1 deletion src/inverters/brands/solax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ import {localize} from '../../localize/localize';
export class Solax extends InverterSettingsDto {
brand = InverterModel.Solax;
statusGroups: InverterStatus = {
normal: {states: ['normal mode'], color: 'green', message: localize('common.normal')},
normal: {
states: ['2', 'normal', 'normalmode', 'normal mode'],
color: 'green',
message: localize('common.normal')},
standby: {
states: ['0', 'waiting', 'waitmode', '9', 'idle', 'idlemode', 'idle mode', '10', 'standby', 'standbymode'],
color: 'blue',
Expand Down

0 comments on commit 36e3d37

Please sign in to comment.