/* * Copyright (C) 2013 The Android Open Source Project * This software is based on Apache-licensed code from the above. * * Copyright (C) 2013 APUS * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package pro.apus.bleconnect; import java.util.HashMap; /** * This class includes a small subset of standard GATT attributes for demonstration purposes. */ public class SampleGattAttributes { 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("00001800-0000-1000-8000-00805f9b34fb", "Generic access"); attributes.put("00001801-0000-1000-8000-00805f9b34fb", "Generic attribute"); attributes.put("00001802-0000-1000-8000-00805f9b34fb", "Immediate alert"); attributes.put("00001803-0000-1000-8000-00805f9b34fb", "Link loss"); attributes.put("00001804-0000-1000-8000-00805f9b34fb", "Tx Power"); attributes.put("00001805-0000-1000-8000-00805f9b34fb", "Current Time Service"); 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"); attributes.put("00002a00-0000-1000-8000-00805f9b34fb", "Device Name"); attributes.put("00002a01-0000-1000-8000-00805f9b34fb", "Appearance"); attributes.put("00002a02-0000-1000-8000-00805f9b34fb", "Peripheral Privacy Flag"); attributes.put("00002a03-0000-1000-8000-00805f9b34fb", "Reconnection Address"); attributes.put("00002a04-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); attributes.put("00002a05-0000-1000-8000-00805f9b34fb", "Service Changed"); attributes.put("00002A06-0000-1000-8000-00805f9b34fb", "Alert level"); attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String"); 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; } }