diff options
author | Matt Ranostay <matt.ranostay@konsulko.com> | 2018-12-04 00:39:21 -0800 |
---|---|---|
committer | Scott Murray <scott.murray@konsulko.com> | 2018-12-10 19:45:16 +0000 |
commit | c12208f529d44410051d91c7f14513a3edf92117 (patch) | |
tree | a251d8a5e08825202651d64ba8b96cce96800542 /README.md | |
parent | dc504cf7676cdca0a2816750d1d287dc2350fbd0 (diff) |
binding: bluetooth: add MediaTransport1 support
Bug-AGL: SPEC-1630
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 |