Skip to content

Commit

Permalink
Relax max_discharge_current validation (Closes: #381) (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
syssi authored Oct 20, 2023
1 parent 7aed885 commit 61b3de3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/jk_bms_ble/number/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@
cv.Optional(CONF_MAX_DISCHARGE_CURRENT): JK_NUMBER_SCHEMA.extend(
{
cv.Optional(CONF_MIN_VALUE, default=1.0): cv.float_,
cv.Optional(CONF_MAX_VALUE, default=200.0): cv.float_,
cv.Optional(CONF_MAX_VALUE, default=200.1): cv.float_,
cv.Optional(CONF_STEP, default=0.1): cv.float_,
cv.Optional(
CONF_UNIT_OF_MEASUREMENT, default=UNIT_AMPERE
Expand Down

0 comments on commit 61b3de3

Please sign in to comment.