Fix time period validation for the auto cleaning interval (#4811)

This commit is contained in:
Federico G. Schwindt 2023-05-15 23:28:01 +01:00 committed by Jesse Hills
parent f66024b37c
commit 2e5757a3f0
No known key found for this signature in database
GPG key ID: BEAAE804EFD8E83A
2 changed files with 2 additions and 1 deletions

View file

@ -119,7 +119,7 @@ CONFIG_SCHEMA = (
device_class=DEVICE_CLASS_PM10, device_class=DEVICE_CLASS_PM10,
state_class=STATE_CLASS_MEASUREMENT, state_class=STATE_CLASS_MEASUREMENT,
), ),
cv.Optional(CONF_AUTO_CLEANING_INTERVAL): cv.time_period_in_seconds_, cv.Optional(CONF_AUTO_CLEANING_INTERVAL): cv.update_interval,
cv.Optional(CONF_VOC): sensor.sensor_schema( cv.Optional(CONF_VOC): sensor.sensor_schema(
icon=ICON_RADIATOR, icon=ICON_RADIATOR,
accuracy_decimals=0, accuracy_decimals=0,

View file

@ -489,6 +489,7 @@ sensor:
offset: 0 offset: 0
normalized_offset_slope: 0 normalized_offset_slope: 0
time_constant: 0 time_constant: 0
auto_cleaning_interval: 604800s
acceleration_mode: low acceleration_mode: low
store_baseline: true store_baseline: true
address: 0x69 address: 0x69