心拍数モニターを見つけてそれに接続する Android LE Bluetooth の例を実装しました。ただし、この例には、次のように GATT プロファイルを定義するクラスがあります。
private static HashMap<String, String> attributes = new HashMap();
public static String HEART_RATE_MEASUREMENT = "00002a37-0000-1000-8000-00805f9b34fb";
public static String CLIENT_CHARACTERISTIC_CONFIG = "00002902-0000-1000-8000-00805f9b34fb";
static {
// Sample Services.
attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
// Sample Characteristics.
attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
}
public static String lookup(String uuid, String defaultName) {
String name = attributes.get(uuid);
return name == null ? defaultName : name;
}
今、私がやりたいのは、このプログラムがBluetoothファイルを備えたデバイスを見つけるように変更することですが、Googleがクライアント特性構成の心拍数測定に関する情報をどのように取得したかわかりません。