Каково выражение после "pairedDevices", чтобы получить этот определенный элемент, который удовлетворяет условию if?
//creating a SET of paired devices
val pairedDevices: Set<BluetoothDevice>? = bluetoothAdapter?.bondedDevices
//for each paired device
pairedDevices?.forEach { device ->
if (device.name == "HC-05") {
val hc05 = pairedDevices
}
}