Skip to content

Commit

Permalink
Update number.py
Browse files Browse the repository at this point in the history
-128 / + 128  adjustable minimum and maximum count endpoints
  • Loading branch information
DNL2023 authored Feb 20, 2023
1 parent a41e251 commit e49bd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/roode/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
cv.Optional(CONF_PEOPLE_COUNTER): PERSISTED_NUMBER_SCHEMA.extend(
{
cv.Optional(CONF_ICON, default="mdi:counter"): cv.icon, # new default
cv.Optional(CONF_MAX_VALUE, 10): cv.int_range(1, 255),
cv.Optional(CONF_MAX_VALUE, 10): cv.int_range(-128, 128),
}
),
}
Expand Down

0 comments on commit e49bd8c

Please sign in to comment.