Commit 3ac1bce3 by Kim Jinsung

中心温度計から取得した値をトースト表示をしないように修正

parent a29ba3ee
...@@ -182,9 +182,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -182,9 +182,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
@Override @Override
public void onGetDeviceInfo(String strTemp) { // 中心温度計からデータ取得成功 public void onGetDeviceInfo(String strTemp) { // 中心温度計からデータ取得成功
Logger.d(TAG, "onGetDeviceInfo"); Logger.d(TAG, "onGetDeviceInfo temperature [%s]", strTemp);
Toast.makeText( getApplicationContext(), strTemp, Toast.LENGTH_SHORT ).show();
Logger.d(TAG, "get temperature [%s]", strTemp);
setThermometerData(strTemp); setThermometerData(strTemp);
bleThermometerDisconnect(); bleThermometerDisconnect();
} }
......
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