namespace SmartBowSDK
{
public enum BluetoothError
{
///
/// 未知错误
///
Unknown,
///
/// 蓝牙开关未打开(仅支持安卓)
///
BluetoothNotEnabled,
///
/// 尚未授予定位权限(仅支持安卓)
///
LocationPermissionNotGranted,
///
/// 尚未授予扫描附近设备权限(仅支持安卓)
///
ScanPermissionNotGranted,
///
/// 扫描结束后未发现目标设备
///
ScanNotFoundTargetDevice,
///
/// mac地址和设备不匹配
///
MacAddressAndDeviceMismatch,
}
}