Commit 28ce1e86 by onuma

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

parent 42d06081
...@@ -257,7 +257,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -257,7 +257,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
if (StringUtil.isNullOrEmpty(message)) { if (StringUtil.isNullOrEmpty(message)) {
// 接続するデバイスが存在しないと見做し、接続を切る // 接続するデバイスが存在しないと見做し、接続を切る
// onuma // onuma
bleManagerDisconnect(false); bleManagerDisconnect(true);
} else { } else {
// onuma // onuma
isConnection = true; isConnection = true;
...@@ -284,7 +284,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -284,7 +284,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
Logger.d(TAG,"-------------------------------------------------"); Logger.d(TAG,"-------------------------------------------------");
setThermometerData(strTemp); setThermometerData(strTemp);
// 取得できたら、ダイアログ消すだけ。 // 取得できたら、ダイアログ消すだけ。
// onuma // onuma 切断しない
bleManagerDisconnect(false); bleManagerDisconnect(false);
dismissWaitngDialog(); dismissWaitngDialog();
} }
...@@ -674,10 +674,19 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -674,10 +674,19 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
return; // 以下の処理にかからないようにreturnする return; // 以下の処理にかからないようにreturnする
} }
// 登録されている中心温度計がある if (isConnection) {
showWaitingDialog(getString(R.string.center_thermometer), getString(R.string.ble_connecting)); Logger.d(TAG,"-------------------------------------------------");
// 接続 Logger.d(TAG, "isConnection = true");
bleManagerUtil.connect(DeviceType.centerThermomete, deviceAddress); 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