diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-12-04 00:39:21 -0800 |
---|---|---|
committer | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-12-05 15:23:40 +0000 |
commit | f2aaebf3f8c1f9e71586a9d5f5c370d3338c07cf (patch) | |
tree | c66b75f86d5beae38ff30de45eeb47c94efa3ef8 /README.md | |
parent | 547a7b88de739d6cf12fdc951cac106250aaca25 (diff) |
binding: bluetooth: add MediaTransport1 support
Bug-AGL: SPEC-1630 SPEC-1986
Change-Id: I6ad1f85d4edc00239f891edf6994db416e8a2dbd
Signed-off-by: Matt Ranostay <matt.ranostay@konsulko.com>
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 25 |
1 files changed, 25 insertions, 0 deletions
@@ -221,6 +221,7 @@ Playing audio reporting event (not all fields will be passed in every event): { "adapter": "hci0", "device": "dev_D0_81_7A_5A_BC_5E", + "type": "playback", "track": { "title": "True Colors", "duration": 228000, @@ -236,6 +237,30 @@ Playing audio reporting event (not all fields will be passed in every event): } </pre> +A2DP transport addition/removal (some fields are optional): + +<pre> +{ + "adapter": "hci0", + "device": "dev_D0_81_7A_5A_BC_5E", + "action": "added", + "type": "transport", + "endpoint": "fd0" + "properties": { + "uuid": "0000110B-0000-1000-8000-00805F9B34FB", + "state": "idle", + "volume": 127 + }, +} +... +{ + "adapter": "hci0", + "device": "dev_D0_81_7A_5A_BC_5E", + "action": "removed", + "type": "transport", + "endpoint": "fd0" +} +</pre> ### agent event |