// ignore_for_file: constant_identifier_names abstract class VDeviceSdkStatus { /// 未注册回调接口 static const int CALLBACK_UNDEFINED = 95; /// 参数传递错误 static const int PARAM_ERROR = 96; /// 不支持该型号设备驱动 static const int DEVICE_UNSUPPORT = 97; /// 蓝牙未开启 static const int BLE_NOT_ON = 98; /// 蓝牙连接中 static const int BLE_CONNECTING = 99; /// 连接蓝牙成功 static const int BLE_CONNECT_SUCCESS = 100; /// 连接蓝牙失败 static const int BLE_CONNECT_FAIL = 101; /// 蓝牙断开 static const int BLE_DISCONNECTED = 102; /// 未搜索到蓝牙设备 static const int BLE_DEVICE_NOT_FOUND = 103; /// 搜索到设备 static const int BLE_DEVICE_FOUND = 104; /// 开始搜索 static const int DEVICE_SEARCH_START = 105; /// 搜索结束 static const int DEVICE_SEARCH_STOP = 106; /// 蓝牙连接成功,注册通知失败 static const int BLUETOOTH_CONNECTED_NO_NOTIFY = 107; /// 该设备需要绑定配对,才可以连接 static const int DEVICE_NOT_MATCHED = 108; /// Mac地址无效 static const int DEVICE_MAC_INVALID = 109; /// 体温测量成功 static const int EXAM_TEMP_SUCCESS = 1000; /// 体温测量错误 static const int EXAM_TEMP_ERROR = 1001; /// 体温过低 static const int EXAM_TEMP_TOO_LOW = 1002; /// 体温过高 static const int EXAM_TEMP_TOO_HIGH = 1003; /// 体重测量成功 static const int EXAM_WEIGHT_SUCCESS = 1100; /// 体重测量错误 static const int EXAM_WEIGHT_ERROR = 1101; }