更新设备校准
This commit is contained in:
@@ -61,18 +61,21 @@ class BlueteethBindController extends GetControllerEx<BlueteethBindModel> {
|
||||
Timer? _statusTimer;
|
||||
|
||||
THapp? currentDevice;
|
||||
RxInt wifiStatus = 0.obs;
|
||||
RxInt wifiStatus = 0.obs;//wifi连接状态 0:未连接 1:已连接
|
||||
RxList wifiList = [].obs;
|
||||
RxMap connect_wifi = {}.obs;
|
||||
RxString scanMac = "".obs;
|
||||
|
||||
RxString? currentDeviceMac = "".obs;
|
||||
RxString currentDeviceMac = "".obs;//当前选中的设备mac地址
|
||||
RxString? cid = "".obs;
|
||||
|
||||
RxString search = "".obs; //搜索关键字
|
||||
|
||||
RxBool bluetoothStatus = false.obs;//蓝牙开启状态
|
||||
RxInt connectStatus = 0.obs;//当前wifi连接状态 0:未连接 1:已连接
|
||||
RxInt blueConnectFlag = 0.obs;//当前蓝牙连接状态 0.正在连接 1.为连接 2.已连接
|
||||
RxInt blueConnectFlag = 0.obs;//当前蓝牙连接状态 0.正在连接 1.未连接 2.已连接
|
||||
RxInt netType = 0.obs;//当前网络类型 0.正在检测 1.wifi 2.4g设备 3.未知
|
||||
RxInt wifiConnectStatus = 1.obs;//获取wifi状态 0.正在检测 1.已检测完
|
||||
|
||||
RxMap selectWifi = {}.obs; //正在连接wifi信息
|
||||
|
||||
|
||||
@@ -29,6 +29,14 @@ class DeviceCalibrationController
|
||||
RxInt bed_calibration = 0.obs; //0.未完成 1.完成
|
||||
RxInt position_calibration = 0.obs; //0.未完成 1.完成
|
||||
RxInt bed_type = 0.obs; //0.单人 1.双人
|
||||
RxString tips = "开始校准".tr.obs;
|
||||
bool complete = false; //校准完成
|
||||
RxString tips = "".obs;
|
||||
RxInt flag = 0.obs; //0没有开始 1:校准中 2.校准完成 3.校准失败
|
||||
RxString statusContext = "".obs;
|
||||
|
||||
|
||||
RxInt cd = 10000.obs;
|
||||
bool forceStart = false;
|
||||
|
||||
RxInt motionTips = 0.obs;//体动提示
|
||||
RxInt inBedTips = 0.obs;//在床提示
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user