Commit 28ce1e86 by onuma

中心温度計、連続計測対応

parent 42d06081
......@@ -257,7 +257,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
if (StringUtil.isNullOrEmpty(message)) {
// 接続するデバイスが存在しないと見做し、接続を切る
// onuma
bleManagerDisconnect(false);
bleManagerDisconnect(true);
} else {
// onuma
isConnection = true;
......@@ -284,7 +284,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
Logger.d(TAG,"-------------------------------------------------");
setThermometerData(strTemp);
// 取得できたら、ダイアログ消すだけ。
// onuma
// onuma 切断しない
bleManagerDisconnect(false);
dismissWaitngDialog();
}
......@@ -674,10 +674,19 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
return; // 以下の処理にかからないようにreturnする
}
// 登録されている中心温度計がある
showWaitingDialog(getString(R.string.center_thermometer), getString(R.string.ble_connecting));
// 接続
bleManagerUtil.connect(DeviceType.centerThermomete, deviceAddress);
if (isConnection) {
Logger.d(TAG,"-------------------------------------------------");
Logger.d(TAG, "isConnection = true");
Logger.d(TAG,"-------------------------------------------------");
String message = String.format(getString(R.string.msg_ble_connect_success), getString(R.string.center_thermometer));
showWaitingDialog(getString(R.string.center_thermometer),message);
} else {
// 登録されている中心温度計がある
showWaitingDialog(getString(R.string.center_thermometer), getString(R.string.ble_connecting));
// 接続
bleManagerUtil.connect(DeviceType.centerThermomete, deviceAddress);
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment