mirror of
https://github.com/home-assistant/core.git
synced 2025-12-24 21:06:19 +00:00
Add bluetooth integration (#74653)
Co-authored-by: Paulus Schoutsen <paulus@home-assistant.io>
This commit is contained in:
@@ -190,6 +190,16 @@ MANIFEST_SCHEMA = vol.Schema(
|
||||
vol.Optional("ssdp"): vol.Schema(
|
||||
vol.All([vol.All(vol.Schema({}, extra=vol.ALLOW_EXTRA), vol.Length(min=1))])
|
||||
),
|
||||
vol.Optional("bluetooth"): [
|
||||
vol.Schema(
|
||||
{
|
||||
vol.Optional("service_uuid"): vol.All(str, verify_lowercase),
|
||||
vol.Optional("local_name"): vol.All(str),
|
||||
vol.Optional("manufacturer_id"): int,
|
||||
vol.Optional("manufacturer_data_first_byte"): int,
|
||||
}
|
||||
)
|
||||
],
|
||||
vol.Optional("homekit"): vol.Schema({vol.Optional("models"): [str]}),
|
||||
vol.Optional("dhcp"): [
|
||||
vol.Schema(
|
||||
|
||||
Reference in New Issue
Block a user