more docs

This commit is contained in:
J. Nick Koston 2024-05-14 12:19:30 +09:00
parent 1e663bc6e6
commit 91514ae62e
No known key found for this signature in database

View File

@ -123,3 +123,15 @@ The entity registry must be modified in the event loop thread. There is no sync
#### entity_registry.async_update_entity
The entity registry must be modified in the event loop thread. There is no sync API for the entity registry. Use `hass.add_job` to schedule a function in the event loop that calls `entity_registry.async_update_entity`.
#### floor_registry.async_create
The floor registry must be modified in the event loop thread. There is no sync API for the floor registry. Use `hass.add_job` to schedule a function in the event loop that calls `floor_registry.async_create`.
#### floor_registry.async_delete
The floor registry must be modified in the event loop thread. There is no sync API for the floor registry. Use `hass.add_job` to schedule a function in the event loop that calls `floor_registry.async_delete`.
#### floor_registry.async_update
The floor registry must be modified in the event loop thread. There is no sync API for the floor registry. Use `hass.add_job` to schedule a function in the event loop that calls `floor_registry.async_update`.