aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatt Ranostay <matt.ranostay@konsulko.com>2018-10-30 10:44:00 -0700
committerMatt Ranostay <matt.ranostay@konsulko.com>2018-11-12 03:58:47 -0800
commit3a53bc6731e3413b0d77ea6aabce93e3894d5d36 (patch)
treeb20d1d5c549ee18b3791ba614dfb9d6eb410a3b8
parentf05fd30507b218bd06d6ecdb5ddcd07de3927f82 (diff)
binding: bluetooth: remove bluez paths in documentation
Bug-AGL: SPEC-1630 Change-Id: I7e76a5a6e5ea49b331068d4cb21fd97e5d1287e6 Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 872daa8..5e206cd 100644
--- a/README.md
+++ b/README.md
@@ -14,10 +14,10 @@ Bluetooth service uses the respective BlueZ package to connect to bluetooth devi
| adapter_state | retrieve or change adapter scan settings | see adapter_state verb section |
| connect | connect to already paired device | see connect/disconnect verb section |
| disconnect | disconnect to already connected device | see connect/disconnect verb section |
-| pair | initialize a pairing request | *Request:* {"device":"/org/bluez/hci0/dev_88_0F_10_96_D3_20"} |
+| pair | initialize a pairing request | *Request:* {"device":"dev_88_0F_10_96_D3_20"} |
| cancel_pairing | cancel an outgoing pair request | |
| confirm_pairing | confirm incoming/outgoing bluetooth pairing pincode | *Request:* {"pincode": 31415} |
-| remove_device | remove already paired device | *Request:* {"device": "/org/bluez/hci0/dev/dev_88_0F_10_96_D3_20"} |
+| remove_device | remove already paired device | *Request:* {"device": "dev_88_0F_10_96_D3_20"} |
### managed_objects verb
@@ -131,13 +131,13 @@ NOTE: uuid in this respect is not related to the afb framework but the Bluetooth
To connect/disconnect using the respective verb with all known and authenticated profiles:
<pre>
- {"device": "/org/bluez/hci0/dev_88_0F_10_96_D3_20"}
+ {"device": "dev_88_0F_10_96_D3_20"}
</pre>
To do the same for the respective device, verb, and for singular profile
<pre>
- {"device": "/org/bluez/hci0/dev_88_0F_10_96_D3_20", "uuid": "0000110e-0000-1000-8000-00805f9b34fb"}
+ {"device": "dev_88_0F_10_96_D3_20", "uuid": "0000110e-0000-1000-8000-00805f9b34fb"}
</pre>
## Events