OSDN Git Service

initial commit.
[gokigen/BLEControl.git] / app / src / main / java / net / osdn / gokigen / blecontrol / lib / ble / connection / ICameraBleProperty.java
1 package net.osdn.gokigen.blecontrol.lib.ble.connection;
2
3 /**
4  *  Bluetooth のプロパティにアクセスするインタフェース
5  *
6  */
7 public interface ICameraBleProperty
8 {
9     int MAX_STORE_PROPERTIES = 12;  // Olympus Airは、最大12個登録可能
10
11     String CAMERA_BLUETOOTH_SETTINGS = "camera_bluetooth_settings";
12     String CAMERA_BLUETOOTH_POWER_ON = "ble_power_on";
13
14     String NAME_KEY = "AirBtName";
15     String CODE_KEY = "AirBtCode";
16     String DATE_KEY = "AirBtId";
17 }