From ae94307f50325de467a0caeb6235d5410ef2e284 Mon Sep 17 00:00:00 2001 From: lujun Date: Wed, 27 Jan 2016 10:34:22 +0800 Subject: [PATCH] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ff3501c..bc8fdde 100644 --- a/README.md +++ b/README.md @@ -25,8 +25,11 @@ dependencies { Build the controller in your app with current context(the sdk need this context to register a BroadcastReceiver to receive the bluetooth status), and you may get the singleton ```BluetoothController(BluetoothLEController)``` object, code like that: ```java +// For classic bluetooth BluetoothController mBTController = BluetoothController.getInstance().build(Context context); -BluetoothLEController mBLEController = BluetoothLEController.getInstance().build(Context context); + +// If you make code for BLE +// BluetoothLEController mBLEController = BluetoothLEController.getInstance().build(Context context); ``` ### Step 3