In core Bluetooth I am searching for devices its showing only ble peripherals I want to connect the bluetooth device not BlePerpherals is this possible

func startScan() {

peripherals = []

print("Now Scanning...")

self.timer.invalidate()

centralManager?.scanForPeripherals(withServices: [BLEService_UUID] , options: [CBCentralManagerScanOptionAllowDuplicatesKey:false])

Timer.scheduledTimer(timeInterval: 5, target: self, selector: #selector(self.cancelScan), userInfo: nil, repeats: false)

}

/*We also need to stop scanning at some point so we'll also create a function that calls "stopScan"*/

func cancelScan() {

self.centralManager?.stopScan()

print("Scan Stopped")

print("Number of Peripherals Found: \(peripherals.count)")

}