From 0769b14566c61b9ec86d34c64fa57c34d9740d81 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Wed, 27 Jul 2022 22:30:51 +0200 Subject: [PATCH] Add Bluetooth as discovery source (#13291) --- src/data/config_flow.ts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/data/config_flow.ts b/src/data/config_flow.ts index c236a1b05c..001b321dce 100644 --- a/src/data/config_flow.ts +++ b/src/data/config_flow.ts @@ -6,16 +6,17 @@ import { DataEntryFlowProgress, DataEntryFlowStep } from "./data_entry_flow"; import { domainToName } from "./integration"; export const DISCOVERY_SOURCES = [ - "usb", - "unignore", + "bluetooth", "dhcp", - "homekit", - "ssdp", - "zeroconf", "discovery", + "hassio", + "homekit", "integration_discovery", "mqtt", - "hassio", + "ssdp", + "unignore", + "usb", + "zeroconf", ]; export const ATTENTION_SOURCES = ["reauth"];