Skip to content

Commit

Permalink
v0.9.1: RIVER_MAX - Max Charge Level [30-100] (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
tolwi committed Jun 29, 2023
1 parent db0f1d5 commit f48fb81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/ecoflow_cloud/devices/river_max.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def sensors(self, client: EcoflowMQTTClient) -> list[BaseSensorEntity]:

def numbers(self, client: EcoflowMQTTClient) -> list[BaseNumberEntity]:
return [
MaxBatteryLevelEntity(client, "bmsMaster.maxChargeSoc", const.MAX_CHARGE_LEVEL, 50, 100, None),
MaxBatteryLevelEntity(client, "bmsMaster.maxChargeSoc", const.MAX_CHARGE_LEVEL, 30, 100, None),
# MinBatteryLevelEntity(client, "bmsMaster.minDsgSoc", const.MIN_DISCHARGE_LEVEL, 0, 30, None),
]

Expand Down
2 changes: 1 addition & 1 deletion custom_components/ecoflow_cloud/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
"paho-mqtt==1.6.1",
"reactivex==4.0.4"
],
"version": "0.9.0"
"version": "0.9.1"
}

0 comments on commit f48fb81

Please sign in to comment.