Bump reolink-aio to 0.5.10 (#90963)

* use is_doorbell instead of is_doorbell_enabled

* Bump reolink-aio to 0.5.10
This commit is contained in:
starkillerOG 2023-04-06 20:35:22 +02:00 committed by GitHub
parent e9f6a963a0
commit fca9052430
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -87,7 +87,7 @@ BINARY_SENSORS = (
icon="mdi:bell-ring-outline",
icon_off="mdi:doorbell",
value=lambda api, ch: api.visitor_detected(ch),
supported=lambda api, ch: api.is_doorbell_enabled(ch),
supported=lambda api, ch: api.is_doorbell(ch),
),
)