// Apple Watch 6支持的蓝牙版本为Bluetooth 5.0
let bluetoothVersion = "Bluetooth 5.0"
// 蓝牙5.0标准中的最高传输速率为2 Mbps
let maxDataRate = 2 // Mbps
// 一个字节等于8位
let byteSize = 8
// 计算每秒钟可以发送的字节数
let bytesPerSecond = maxDataRate / byteSize
print("Apple Watch 6每秒钟最多可以通过蓝牙发送 \(bytesPerSecond) 个字节的数据")