Commit e56f16bd by onuma

TR41温度計用bluetoothクラスを追加

parent 856dd495
...@@ -176,6 +176,7 @@ public class Constant { ...@@ -176,6 +176,7 @@ public class Constant {
int barcode = 3; // バーコード int barcode = 3; // バーコード
int radiationThermomete = 4; // 放射温度計 int radiationThermomete = 4; // 放射温度計
int sppBluetoothMachine = 5; // SPP通信機器 int sppBluetoothMachine = 5; // SPP通信機器
int nfc = 6; // nfc機器 int nfc = 7; // nfc機器
int tr41 = 6; // TR41温度計
} }
} }
...@@ -129,6 +129,7 @@ public class ABookKeys { ...@@ -129,6 +129,7 @@ public class ABookKeys {
public static final String TASK_QUESTION_ID = "qid"; // CMSのインターフェースのパラメータ:qid public static final String TASK_QUESTION_ID = "qid"; // CMSのインターフェースのパラメータ:qid
// 2020/07/28 onuma 試験的にTR41 用、param1 は、シリアルNo.
public static final String TASK_DEVICE_TYPE_PARAM1 = "param1"; // CMSのインターフェースのパラメータ:param1 (デバイスID) public static final String TASK_DEVICE_TYPE_PARAM1 = "param1"; // CMSのインターフェースのパラメータ:param1 (デバイスID)
public static final String TASK_DEVICE_TYPE_PARAM2 = "param2"; // CMSのインターフェースのパラメータ:param2(1:温度、2:湿度) public static final String TASK_DEVICE_TYPE_PARAM2 = "param2"; // CMSのインターフェースのパラメータ:param2(1:温度、2:湿度)
......
...@@ -124,6 +124,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -124,6 +124,7 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
// SPP通信機器のデバイスID(t_spp_device) // SPP通信機器のデバイスID(t_spp_device)
private Integer mSppDeviceId; private Integer mSppDeviceId;
// Bluetoothの接続状態
private boolean isConnection; private boolean isConnection;
/** /**
...@@ -546,7 +547,13 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity { ...@@ -546,7 +547,13 @@ public class ABVCheckContentViewActivity extends ABVContentViewActivity {
setSppBluetoothDeviceInfo(); setSppBluetoothDeviceInfo();
} else if (mDeviceType == DeviceType.nfc) { } else if (mDeviceType == DeviceType.nfc) {
setNfcDeviceInfo(); // NFC アタゴ糖度計・濃度計
setNfcDeviceInfo();
} else if (mDeviceType == DeviceType.tr41){
// TR41温度計
// param1はシリアルNo.
String param1 = abookCheckParam.get(ABookKeys.TASK_DEVICE_TYPE_PARAM1);
} else { } else {
Logger.e("外部デバイスタイプ不正 deviceType = " + mDeviceType); Logger.e("外部デバイスタイプ不正 deviceType = " + mDeviceType);
} }
......
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