| 1 |
// |
|
| 2 |
// BluetoothHelperView.swift |
|
| 3 |
// USB Meter |
|
| 4 |
// |
|
| 5 |
// Created by Bogdan Timofte on 07/03/2020. |
|
| 6 |
// Copyright © 2020 Bogdan Timofte. All rights reserved. |
|
| 7 |
// |
|
| 8 | ||
| 9 |
import SwiftUI |
|
| 10 |
import CoreBluetooth |
|
| 11 | ||
| 12 |
struct DeviceHelpView: View {
|
|
| 13 |
var body: some View {
|
|
| 14 |
List {
|
|
| 15 |
Text("Device ON?")
|
|
| 16 |
Text("Device has Bluetooth enabled?")
|
|
| 17 |
Text("Device allerady connected?")
|
|
| 18 |
} |
|
| 19 |
} |
|
| 20 |
} |