SlideShare a Scribd company logo
1 of 48
Download to read offline
1Gary Bisson - ABS2013
Leveraging the Android Open
Accessory Protocol
Gary Bisson
Adeneo Embedded
gbisson@adeneo-embedded.com
Android Builders Summit 2013
2Gary Bisson - ABS2013
Session Overview
• Introduction to Android Open Accessory
• Protocol specifications
• Accessory Development Kit
• Software implementation
• Demonstrations
3Gary Bisson - ABS2013
Who am I?
• Software engineer at Adeneo Embedded
(Bellevue, WA)
– Linux, Android
– Main activities:
• BSP adaptation
• Driver development
• System integration
4Gary Bisson - ABS2013
Introduction to AOA
• Allows USB hardware to interact with an
Android-powered device
– No need for the Android device to act as USB Host
– Standard API
• Introduced in Android 3.1 (API level 12)
– Backported to Android 2.3.4 (API level 10)
• Version 2.0 released with Android 4.1
5Gary Bisson - ABS2013
Introduction to AOA
Accessory
USB
Android Device
USB Connection
USB
Device
USB
Host
ADK Hardware
6Gary Bisson - ABS2013
AOA 1.0 Protocol
• Android Open Accessory 1.0 is a protocol that
allows an Android device to interact with an
Android USB accessory in a special accessory
mode.
• Basically there are four steps to initiate the
communication.
7Gary Bisson - ABS2013
AOA 1.0 Protocol
1. Wait for and detect connected devices
Accessory
Android Device
USB Enumeration
Vendor ID
Product ID
8Gary Bisson - ABS2013
AOA 1.0 Protocol
2. Determine the device’s accessory mode support
Accessory
Android Device
Get Protocol
#51
AOA 1.0/2.0
9Gary Bisson - ABS2013
AOA 1.0 Protocol
• The accessory must check the Vendor &
Product ID’s of the connected device
– Possibility to target some devices
– Detection of devices already in Accessory mode
• If it is already in accessory mode then:
– Vendor ID = 0x18D1 (Google)
– Product ID = 0x2D00 | | 0x2D01
10Gary Bisson - ABS2013
AOA 1.0 Protocol
• Accessory mode product IDs
– 0x2D00 – Supports Accessory Mode
• 1 interface with 2 bulk endpoints
– 0x2D01 – Supports Accessory Mode + ADB
• 2 interfaces with 2 bulk endpoints each
• If it is not in accessory mode then Accessory
mode support can be asked:
– Send a “Get Protocol” request (51) on endpoint 0
• AOA Version (1.0 or 2.0) is returned by Android device
11Gary Bisson - ABS2013
AOA 1.0 Protocol
3. Attempt to start the device in accessory mode
Accessory
Android Device
Identity Strings #52
Start Accessory #53
12Gary Bisson - ABS2013
AOA 1.0 Protocol
• If the AOA Version # is okay, then send string’s
identifying our ADK to the device
– Send “Identity” request (52) for each identifier:
• Manufacturer
• Model Name
• Description
• Version
• URL
• Serial Number
– Send “Start Accessory” request (53) to request the
Android device re-introduce itself on the bus in
accessory mode
13Gary Bisson - ABS2013
AOA 1.0 Protocol
4. Establish communications
Accessory
Android Device
CMD / RESPONSE
14Gary Bisson - ABS2013
AOA 1.0 Protocol
• The accessory must obtain the Bulk endpoints
and be prepared to initiate communication
with the device.
From this point the communication is defined by
the ADK Developer
15Gary Bisson - ABS2013
AOA 2.0 Protocol
• AOA 2.0 was released at Google I/O end of
June 2012 alongside Jelly Bean
• Two new features:
– Audio Output
– Accessory as HID
16Gary Bisson - ABS2013
AOA Protocol version 2.0
• Audio output:
– From an Android device to an accessory
– Standard USB audio class interface (ISO)
– Only supports 2 Channel, 16-bit PCM @ 44100KHz
• To enable the audio support, the accessory
must send a new USB control request:
– “Audio Support” request (58)
17Gary Bisson - ABS2013
AOA Protocol version 2.0
• HID support:
– Registers one or more USB HID with to the
Android device.
– Reverses the direction of communication for
typical USB HID (Host <-> Device).
– Uses USB control requests:
• ACCESSORY_REGISTER_HID
• ACCESSORY_UNREGISTER_HID
• ACCESSORY_SET_HID_REPORT_DESC
• ACCESSORY_SEND_HID_EVENT
18Gary Bisson - ABS2013
AOA Protocol version 2.0
• Compatible with original AOA 1.0 protocol
• Also adds Bluetooth support
– Not the focus of this presentation…
– Example available in ADK source code
19Gary Bisson - ABS2013
AOA 2.0 Protocol
• New Product ID’s
– 0x2D02 – Supports Audio
• 2 Audio interfaces (control + streaming)
– 0x2D03 – Supports Audio + ADB
• 3 interfaces: 2 Audio + 1 Bulk
– 0x2D04 – Supports AOA 1.0 + Audio
• 3 interfaces: 2 Audio + 1 Bulk
– 0x2D05 – Supports AOA 1.0 + Audio + ADB
• 4 interfaces: 2 Audio + 2 Bulk
20Gary Bisson - ABS2013
Accessory Development Kit
• Hardware for ADK 2011 is based on a Arduino
Mega2560
• Hardware for the ADK 2012 is based on an
ARM Cortex M3
• ADK 2012 Guide
21Gary Bisson - ABS2013
What part of AOA do you Control?
• ADK HW
– Schematics provided for the alarm clock
22Gary Bisson - ABS2013
ADK Hardware
• Other solutions?
– Any USB Host capable device that can provide
power to the Android device.
– This is what makes it easy to port the ADK SW to
any ARM-based board
• e.g. Raspberry Pi
• Brings more capabilities (video control…)
23Gary Bisson - ABS2013
What part of AOA do you Control?
• ADK SW
– Developer controls what runs on the ADK HW and
what runs on the Android device
• Google provides sample software:
– Source code repo:
• http://android.googlesource.com/accessories/manifest
– Android device application can apply on any
device with API level > 10
• Android Application presents UI for control, and
communication
24Gary Bisson - ABS2013
ADK Software
• Accessory side:
– Full-featured:
• Accessory
– Basic controls (LEDs, GPIOs)
• Audio
• Bluetooth
– Code is Arduino-specific
• For other solutions, need for a “portable” Accessory
sample code
25Gary Bisson - ABS2013
ADK Software
• Android device side:
– Hardware control
26Gary Bisson - ABS2013
Software implementation
1. Software on the ADK HW
– Handles communication with Android device
– Controls sensors, displays, etc. on the ADK HW
2. Software on the Android device
– Can be installed automatically via pop-up URL on
connection
– Handles communication with ADK HW
– Presents a GUI for control, data input/output from
ADK
27Gary Bisson - ABS2013
Software implementation
In case the software is not already installed:
28Gary Bisson - ABS2013
Software implementation
Otherwise the user must authorize the
execution of the Accessory app:
29Gary Bisson - ABS2013
Application on the Android Device
• Must discover the accessory when it is
attached
• Communicate with the accessory via ADK
Developer defined commands over USB
• Utilizes the USB API in Android
30Gary Bisson - ABS2013
Application on the Android Device
• Android contains two different packages to
support AOA protocol:
– android.hardware.usb
• Works with no add-on library for Android 3.1 or higher
– com.android.future.usb
• From Google API add-on library for Android 2.3.4 or
higher
• Wrapper around android.hardware.usb
• Better choice to support the widest range of devices
31Gary Bisson - ABS2013
Discovering the Accessory
• First add an intent-filter to the application’s
manifest
(AndroidManifest.xml)
32Gary Bisson - ABS2013
Discovering the Accessory
• Then define a resource file that details which
USB Accessory this Application communicates
with
(accessory_filter.xml)
33Gary Bisson - ABS2013
Communication with the Accessory
• Grab the UsbAccessory handle from the Intent
received
• Open up input/output file streams with the
Accessory
(myactivity.java)
34Gary Bisson - ABS2013
Accessory software
• Accessory transfers
– Bulk transfers:
35Gary Bisson - ABS2013
Accessory software
• Audio streaming
– Arduino ADK:
• DMA to DAC
• Simple solution
– Linux implementation?
• ALSA
36Gary Bisson - ABS2013
Accessory software
Circular Buffer
Isochronous USB
Transfer Callback
Audio write()
Thread
Audio
Track API
Audio
Hardware
37Gary Bisson - ABS2013
Accessory software
• HID support:
– 4-step process:
• Register HID device
• Set HID report
– Defines capabilities of the Human Interface
• Send HID reports
• Unregister HID device
38Gary Bisson - ABS2013
Accessory software
• Tool to create your HID report structure:
– HID Descriptor Tool
39Gary Bisson - ABS2013
Demonstrations
• Android Device:
– Stock Nexus 7 Tablet running Android Jellybean
(v4.2.1)
• Custom ARM-based accessory
– Raspberry Pi model B
– Running Linux
40Gary Bisson - ABS2013
Demonstrations
• Why were these particular platforms chosen?
– Raspberry Pi is a very cheap & popular board
nowadays
– Wanted to show ease of using libusb-based code
– Nexus 7 is a recent stock device that needs no
modification
• Any Jellybean device would work the same
41Gary Bisson - ABS2013
Demonstration #1
• Create an accessory device that:
– Displays pictures
– Allows control of the slideshow from Android
• Shows AOA v1.0 capabilities
42Gary Bisson - ABS2013
Demonstration #2
• Create an accessory device that:
– Get ADK app data
– Plays audio
• Shows AOA v2.0 capabilities
– Audio streaming
43Gary Bisson - ABS2013
Demonstration #3
• Create an accessory device that:
– Runs Android as well!
• From Jesse Dannenbring’s presentation:
https://github.com/jdannenbring/android-arm-accessory
• Shows AOA v2.0 capabilities
– Audio streaming
44Gary Bisson - ABS2013
Conclusion
• Interesting standard
– Great flexibility
– Can overcome HW access issues
– Compatibility v2.0 / v1.0
• Limitations
• Full code sources soon available at:
http://github.com/gibsson
45Gary Bisson - ABS2013
Questions?
46Gary Bisson - ABS2013
References
• Based on Jesse Dannenbring’s presentation:
– https://speakerdeck.com/jdannenbring/ad-
2002slides-dannenbring
– https://github.com/jdannenbring/android-arm-
accessory
– https://github.com/jdannenbring/android-arm-
accessory-app
• “Android Developers”.
http://developer.android.com/index.html. 1
February 2013.
47Gary Bisson - ABS2013
References
• Di Cerbo, Manuel. “Turn your Linux computer into a
huge Android USB Accessory” Using Android in
Industrial Automation. 5-13-2011.
http://android.serverbox.ch/?p=262
• “libusb”. http://www.libusb.org/. 1 February 2013.
• “monaka / libusb-android / overview”.
https://bitbucket.org/monaka/libusb-android/. 1
February 2013.
Portions of these slides are reproduced from work created and shared by the Android Open Source Project and used according to
terms described in the Creative Commons 2.5 Attribution License.
48Gary Bisson - ABS2013

More Related Content

What's hot

Android Multimedia Framework
Android Multimedia FrameworkAndroid Multimedia Framework
Android Multimedia FrameworkPicker Weng
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development pptsaitej15
 
Introduction to WordPress REST API
Introduction to WordPress REST APIIntroduction to WordPress REST API
Introduction to WordPress REST APISimone D'Amico
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Javaamaankhan
 
Android booting sequece and setup and debugging
Android booting sequece and setup and debuggingAndroid booting sequece and setup and debugging
Android booting sequece and setup and debuggingUtkarsh Mankad
 
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)Nanik Tolaram
 
Basic Android College Seminar Presentation
Basic Android College Seminar Presentation Basic Android College Seminar Presentation
Basic Android College Seminar Presentation Jimmin Kurichiyil
 
Introduction to Mobile Development
Introduction to Mobile DevelopmentIntroduction to Mobile Development
Introduction to Mobile DevelopmentPragnesh Vaghela
 
Learning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverLearning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverNanik Tolaram
 
What Is An SDK?
What Is An SDK?What Is An SDK?
What Is An SDK?CleverTap
 
Full Stack Web Development
Full Stack Web DevelopmentFull Stack Web Development
Full Stack Web DevelopmentSWAGATHCHOWDARY1
 
Cross platform mobile application devlopment
Cross platform mobile application devlopmentCross platform mobile application devlopment
Cross platform mobile application devlopmentPrabhat gangwar
 
Android Web app
Android Web app Android Web app
Android Web app Sumit Kumar
 
JDBC: java DataBase connectivity
JDBC: java DataBase connectivityJDBC: java DataBase connectivity
JDBC: java DataBase connectivityTanmoy Barman
 
Android's Multimedia Framework
Android's Multimedia FrameworkAndroid's Multimedia Framework
Android's Multimedia FrameworkOpersys inc.
 

What's hot (20)

Android Multimedia Framework
Android Multimedia FrameworkAndroid Multimedia Framework
Android Multimedia Framework
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
 
Introduction to WordPress REST API
Introduction to WordPress REST APIIntroduction to WordPress REST API
Introduction to WordPress REST API
 
Android Application Development Using Java
Android Application Development Using JavaAndroid Application Development Using Java
Android Application Development Using Java
 
Android booting sequece and setup and debugging
Android booting sequece and setup and debuggingAndroid booting sequece and setup and debugging
Android booting sequece and setup and debugging
 
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
 
Arduino
ArduinoArduino
Arduino
 
Basic Android College Seminar Presentation
Basic Android College Seminar Presentation Basic Android College Seminar Presentation
Basic Android College Seminar Presentation
 
Introduction to Mobile Development
Introduction to Mobile DevelopmentIntroduction to Mobile Development
Introduction to Mobile Development
 
Learning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverLearning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device Driver
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
 
Sistema Operativo Android
Sistema Operativo AndroidSistema Operativo Android
Sistema Operativo Android
 
What Is An SDK?
What Is An SDK?What Is An SDK?
What Is An SDK?
 
Full Stack Web Development
Full Stack Web DevelopmentFull Stack Web Development
Full Stack Web Development
 
Cross platform mobile application devlopment
Cross platform mobile application devlopmentCross platform mobile application devlopment
Cross platform mobile application devlopment
 
Android Web app
Android Web app Android Web app
Android Web app
 
Embedded Android : System Development - Part II (HAL)
Embedded Android : System Development - Part II (HAL)Embedded Android : System Development - Part II (HAL)
Embedded Android : System Development - Part II (HAL)
 
JDBC: java DataBase connectivity
JDBC: java DataBase connectivityJDBC: java DataBase connectivity
JDBC: java DataBase connectivity
 
Spi drivers
Spi driversSpi drivers
Spi drivers
 
Android's Multimedia Framework
Android's Multimedia FrameworkAndroid's Multimedia Framework
Android's Multimedia Framework
 

Viewers also liked

Android Open Accessory Protocol - Turn Your Linux machine as ADK
Android Open Accessory Protocol - Turn Your Linux machine as ADKAndroid Open Accessory Protocol - Turn Your Linux machine as ADK
Android Open Accessory Protocol - Turn Your Linux machine as ADKRajesh Sola
 
Introduction of Android Auto
Introduction of Android AutoIntroduction of Android Auto
Introduction of Android AutoZaicheng Qi
 
Development, debug and deploy hardware/software solutions based on Android an...
Development, debug and deploy hardware/software solutions based on Android an...Development, debug and deploy hardware/software solutions based on Android an...
Development, debug and deploy hardware/software solutions based on Android an...Илья Родин
 
Seminar on Android Auto
Seminar on Android AutoSeminar on Android Auto
Seminar on Android AutoKiran Krishna
 
Controlling and monitoring external embedded device using android frameworks ...
Controlling and monitoring external embedded device using android frameworks ...Controlling and monitoring external embedded device using android frameworks ...
Controlling and monitoring external embedded device using android frameworks ...Dhruvilkumar patel
 
Headless Android Strikes Back!
Headless Android Strikes Back!Headless Android Strikes Back!
Headless Android Strikes Back!Gary Bisson
 
Google IO 2014 overview
Google IO 2014 overviewGoogle IO 2014 overview
Google IO 2014 overviewBin Yang
 
Useful USB Gadgets on Linux
Useful USB Gadgets on LinuxUseful USB Gadgets on Linux
Useful USB Gadgets on LinuxGary Bisson
 
Quickboot on i.MX6
Quickboot on i.MX6Quickboot on i.MX6
Quickboot on i.MX6Gary Bisson
 
Experience protocol buffer on android
Experience protocol buffer on androidExperience protocol buffer on android
Experience protocol buffer on androidRichard Chang
 
Android OTA updates
Android OTA updatesAndroid OTA updates
Android OTA updatesGary Bisson
 
Accessing Hardware on Android
Accessing Hardware on AndroidAccessing Hardware on Android
Accessing Hardware on AndroidGary Bisson
 
[NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법 [NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법 YoungSu Son
 

Viewers also liked (18)

Android Open Accessory Protocol - Turn Your Linux machine as ADK
Android Open Accessory Protocol - Turn Your Linux machine as ADKAndroid Open Accessory Protocol - Turn Your Linux machine as ADK
Android Open Accessory Protocol - Turn Your Linux machine as ADK
 
Introduction of Android Auto
Introduction of Android AutoIntroduction of Android Auto
Introduction of Android Auto
 
Development, debug and deploy hardware/software solutions based on Android an...
Development, debug and deploy hardware/software solutions based on Android an...Development, debug and deploy hardware/software solutions based on Android an...
Development, debug and deploy hardware/software solutions based on Android an...
 
Seminar on Android Auto
Seminar on Android AutoSeminar on Android Auto
Seminar on Android Auto
 
Controlling and monitoring external embedded device using android frameworks ...
Controlling and monitoring external embedded device using android frameworks ...Controlling and monitoring external embedded device using android frameworks ...
Controlling and monitoring external embedded device using android frameworks ...
 
Headless Android Strikes Back!
Headless Android Strikes Back!Headless Android Strikes Back!
Headless Android Strikes Back!
 
Hacktime for adk
Hacktime for adkHacktime for adk
Hacktime for adk
 
Google IO 2014 overview
Google IO 2014 overviewGoogle IO 2014 overview
Google IO 2014 overview
 
Useful USB Gadgets on Linux
Useful USB Gadgets on LinuxUseful USB Gadgets on Linux
Useful USB Gadgets on Linux
 
Quickboot on i.MX6
Quickboot on i.MX6Quickboot on i.MX6
Quickboot on i.MX6
 
Experience protocol buffer on android
Experience protocol buffer on androidExperience protocol buffer on android
Experience protocol buffer on android
 
Android OTA updates
Android OTA updatesAndroid OTA updates
Android OTA updates
 
Accessing Hardware on Android
Accessing Hardware on AndroidAccessing Hardware on Android
Accessing Hardware on Android
 
[NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법 [NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법
 
Embedded Android : System Development - Part III
Embedded Android : System Development - Part IIIEmbedded Android : System Development - Part III
Embedded Android : System Development - Part III
 
Embedded Android : System Development - Part IV
Embedded Android : System Development - Part IVEmbedded Android : System Development - Part IV
Embedded Android : System Development - Part IV
 
MTP & PTP
MTP & PTPMTP & PTP
MTP & PTP
 
Android - ADB
Android - ADBAndroid - ADB
Android - ADB
 

Similar to Leveraging the Android Open Accessory Protocol

FTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory ProtocolFTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory ProtocolGary Bisson
 
aoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsolaaoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsolaRajesh Sola
 
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
Android Things, Alexey Rybakov, Technical Evangelist, DataArtAndroid Things, Alexey Rybakov, Technical Evangelist, DataArt
Android Things, Alexey Rybakov, Technical Evangelist, DataArtAlina Vilk
 
Lund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & Weave
Lund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & WeaveLund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & Weave
Lund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & WeaveConstantin Musca
 
Brillo/Weave Part 1: High Level Introduction
Brillo/Weave Part 1: High Level IntroductionBrillo/Weave Part 1: High Level Introduction
Brillo/Weave Part 1: High Level IntroductionJalal Rohani
 
Better With Friends: Android+NFC+Arduino
Better With Friends: Android+NFC+ArduinoBetter With Friends: Android+NFC+Arduino
Better With Friends: Android+NFC+ArduinoPearl Chen
 
Embedded System and IoT - ALTEN Calsoft Labs
Embedded System and IoT - ALTEN Calsoft LabsEmbedded System and IoT - ALTEN Calsoft Labs
Embedded System and IoT - ALTEN Calsoft LabsALTEN Calsoft Labs
 
3. Android Architecture.pptx
3. Android Architecture.pptx3. Android Architecture.pptx
3. Android Architecture.pptxHarshiniB11
 
BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17Python0x0
 
Bw13 session2 app_dev_presenter_final
Bw13 session2 app_dev_presenter_finalBw13 session2 app_dev_presenter_final
Bw13 session2 app_dev_presenter_finalBlair Poloskey
 
Bring Your Android Apps to BlackBerry 10 in minutes
Bring Your Android Apps to BlackBerry 10 in minutesBring Your Android Apps to BlackBerry 10 in minutes
Bring Your Android Apps to BlackBerry 10 in minutesDr. Ranbijay Kumar
 
Programming objects with android
Programming objects with androidProgramming objects with android
Programming objects with androidfirenze-gtug
 
POLARIS App Player Introduction
POLARIS App Player Introduction POLARIS App Player Introduction
POLARIS App Player Introduction Hyeokgon Ryu
 
Smart home automation
Smart home automationSmart home automation
Smart home automationVikas Rathod
 

Similar to Leveraging the Android Open Accessory Protocol (20)

FTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory ProtocolFTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory Protocol
 
Android のusb support
Android のusb supportAndroid のusb support
Android のusb support
 
aoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsolaaoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsola
 
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
Android Things, Alexey Rybakov, Technical Evangelist, DataArtAndroid Things, Alexey Rybakov, Technical Evangelist, DataArt
Android Things, Alexey Rybakov, Technical Evangelist, DataArt
 
Lund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & Weave
Lund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & WeaveLund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & Weave
Lund Linux Conference 2016, Lund, Sweden - Introduction to Brillo OS & Weave
 
Brillo/Weave Part 1: High Level Introduction
Brillo/Weave Part 1: High Level IntroductionBrillo/Weave Part 1: High Level Introduction
Brillo/Weave Part 1: High Level Introduction
 
Better With Friends: Android+NFC+Arduino
Better With Friends: Android+NFC+ArduinoBetter With Friends: Android+NFC+Arduino
Better With Friends: Android+NFC+Arduino
 
Android Things : Building Embedded Devices
Android Things : Building Embedded DevicesAndroid Things : Building Embedded Devices
Android Things : Building Embedded Devices
 
Embedded System and IoT - ALTEN Calsoft Labs
Embedded System and IoT - ALTEN Calsoft LabsEmbedded System and IoT - ALTEN Calsoft Labs
Embedded System and IoT - ALTEN Calsoft Labs
 
JAM805 - Beyond the Device
JAM805 -  Beyond the DeviceJAM805 -  Beyond the Device
JAM805 - Beyond the Device
 
3. Android Architecture.pptx
3. Android Architecture.pptx3. Android Architecture.pptx
3. Android Architecture.pptx
 
BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17BOX of Illusion MOSEC'17
BOX of Illusion MOSEC'17
 
Android 10-cdd
Android 10-cddAndroid 10-cdd
Android 10-cdd
 
Bw13 session2 app_dev_presenter_final
Bw13 session2 app_dev_presenter_finalBw13 session2 app_dev_presenter_final
Bw13 session2 app_dev_presenter_final
 
Bring Your Android Apps to BlackBerry 10 in minutes
Bring Your Android Apps to BlackBerry 10 in minutesBring Your Android Apps to BlackBerry 10 in minutes
Bring Your Android Apps to BlackBerry 10 in minutes
 
Programming objects with android
Programming objects with androidProgramming objects with android
Programming objects with android
 
POLARIS App Player Introduction
POLARIS App Player Introduction POLARIS App Player Introduction
POLARIS App Player Introduction
 
Android zensar
Android zensarAndroid zensar
Android zensar
 
Smart home automation
Smart home automationSmart home automation
Smart home automation
 
Bt4 0 for_apple
Bt4 0 for_appleBt4 0 for_apple
Bt4 0 for_apple
 

Recently uploaded

Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm Systemirfanmechengr
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction managementMariconPadriquez1
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
Piping Basic stress analysis by engineering
Piping Basic stress analysis by engineeringPiping Basic stress analysis by engineering
Piping Basic stress analysis by engineeringJuanCarlosMorales19600
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvLewisJB
 
Earthing details of Electrical Substation
Earthing details of Electrical SubstationEarthing details of Electrical Substation
Earthing details of Electrical Substationstephanwindworld
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitterShivangiSharma879191
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)Dr SOUNDIRARAJ N
 
Vishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documentsVishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documentsSachinPawar510423
 

Recently uploaded (20)

Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
Class 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm SystemClass 1 | NFPA 72 | Overview Fire Alarm System
Class 1 | NFPA 72 | Overview Fire Alarm System
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
computer application and construction management
computer application and construction managementcomputer application and construction management
computer application and construction management
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
Piping Basic stress analysis by engineering
Piping Basic stress analysis by engineeringPiping Basic stress analysis by engineering
Piping Basic stress analysis by engineering
 
Work Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvvWork Experience-Dalton Park.pptxfvvvvvvv
Work Experience-Dalton Park.pptxfvvvvvvv
 
Earthing details of Electrical Substation
Earthing details of Electrical SubstationEarthing details of Electrical Substation
Earthing details of Electrical Substation
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter8251 universal synchronous asynchronous receiver transmitter
8251 universal synchronous asynchronous receiver transmitter
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
UNIT III ANALOG ELECTRONICS (BASIC ELECTRONICS)
 
Vishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documentsVishratwadi & Ghorpadi Bridge Tender documents
Vishratwadi & Ghorpadi Bridge Tender documents
 

Leveraging the Android Open Accessory Protocol

  • 1. 1Gary Bisson - ABS2013 Leveraging the Android Open Accessory Protocol Gary Bisson Adeneo Embedded gbisson@adeneo-embedded.com Android Builders Summit 2013
  • 2. 2Gary Bisson - ABS2013 Session Overview • Introduction to Android Open Accessory • Protocol specifications • Accessory Development Kit • Software implementation • Demonstrations
  • 3. 3Gary Bisson - ABS2013 Who am I? • Software engineer at Adeneo Embedded (Bellevue, WA) – Linux, Android – Main activities: • BSP adaptation • Driver development • System integration
  • 4. 4Gary Bisson - ABS2013 Introduction to AOA • Allows USB hardware to interact with an Android-powered device – No need for the Android device to act as USB Host – Standard API • Introduced in Android 3.1 (API level 12) – Backported to Android 2.3.4 (API level 10) • Version 2.0 released with Android 4.1
  • 5. 5Gary Bisson - ABS2013 Introduction to AOA Accessory USB Android Device USB Connection USB Device USB Host ADK Hardware
  • 6. 6Gary Bisson - ABS2013 AOA 1.0 Protocol • Android Open Accessory 1.0 is a protocol that allows an Android device to interact with an Android USB accessory in a special accessory mode. • Basically there are four steps to initiate the communication.
  • 7. 7Gary Bisson - ABS2013 AOA 1.0 Protocol 1. Wait for and detect connected devices Accessory Android Device USB Enumeration Vendor ID Product ID
  • 8. 8Gary Bisson - ABS2013 AOA 1.0 Protocol 2. Determine the device’s accessory mode support Accessory Android Device Get Protocol #51 AOA 1.0/2.0
  • 9. 9Gary Bisson - ABS2013 AOA 1.0 Protocol • The accessory must check the Vendor & Product ID’s of the connected device – Possibility to target some devices – Detection of devices already in Accessory mode • If it is already in accessory mode then: – Vendor ID = 0x18D1 (Google) – Product ID = 0x2D00 | | 0x2D01
  • 10. 10Gary Bisson - ABS2013 AOA 1.0 Protocol • Accessory mode product IDs – 0x2D00 – Supports Accessory Mode • 1 interface with 2 bulk endpoints – 0x2D01 – Supports Accessory Mode + ADB • 2 interfaces with 2 bulk endpoints each • If it is not in accessory mode then Accessory mode support can be asked: – Send a “Get Protocol” request (51) on endpoint 0 • AOA Version (1.0 or 2.0) is returned by Android device
  • 11. 11Gary Bisson - ABS2013 AOA 1.0 Protocol 3. Attempt to start the device in accessory mode Accessory Android Device Identity Strings #52 Start Accessory #53
  • 12. 12Gary Bisson - ABS2013 AOA 1.0 Protocol • If the AOA Version # is okay, then send string’s identifying our ADK to the device – Send “Identity” request (52) for each identifier: • Manufacturer • Model Name • Description • Version • URL • Serial Number – Send “Start Accessory” request (53) to request the Android device re-introduce itself on the bus in accessory mode
  • 13. 13Gary Bisson - ABS2013 AOA 1.0 Protocol 4. Establish communications Accessory Android Device CMD / RESPONSE
  • 14. 14Gary Bisson - ABS2013 AOA 1.0 Protocol • The accessory must obtain the Bulk endpoints and be prepared to initiate communication with the device. From this point the communication is defined by the ADK Developer
  • 15. 15Gary Bisson - ABS2013 AOA 2.0 Protocol • AOA 2.0 was released at Google I/O end of June 2012 alongside Jelly Bean • Two new features: – Audio Output – Accessory as HID
  • 16. 16Gary Bisson - ABS2013 AOA Protocol version 2.0 • Audio output: – From an Android device to an accessory – Standard USB audio class interface (ISO) – Only supports 2 Channel, 16-bit PCM @ 44100KHz • To enable the audio support, the accessory must send a new USB control request: – “Audio Support” request (58)
  • 17. 17Gary Bisson - ABS2013 AOA Protocol version 2.0 • HID support: – Registers one or more USB HID with to the Android device. – Reverses the direction of communication for typical USB HID (Host <-> Device). – Uses USB control requests: • ACCESSORY_REGISTER_HID • ACCESSORY_UNREGISTER_HID • ACCESSORY_SET_HID_REPORT_DESC • ACCESSORY_SEND_HID_EVENT
  • 18. 18Gary Bisson - ABS2013 AOA Protocol version 2.0 • Compatible with original AOA 1.0 protocol • Also adds Bluetooth support – Not the focus of this presentation… – Example available in ADK source code
  • 19. 19Gary Bisson - ABS2013 AOA 2.0 Protocol • New Product ID’s – 0x2D02 – Supports Audio • 2 Audio interfaces (control + streaming) – 0x2D03 – Supports Audio + ADB • 3 interfaces: 2 Audio + 1 Bulk – 0x2D04 – Supports AOA 1.0 + Audio • 3 interfaces: 2 Audio + 1 Bulk – 0x2D05 – Supports AOA 1.0 + Audio + ADB • 4 interfaces: 2 Audio + 2 Bulk
  • 20. 20Gary Bisson - ABS2013 Accessory Development Kit • Hardware for ADK 2011 is based on a Arduino Mega2560 • Hardware for the ADK 2012 is based on an ARM Cortex M3 • ADK 2012 Guide
  • 21. 21Gary Bisson - ABS2013 What part of AOA do you Control? • ADK HW – Schematics provided for the alarm clock
  • 22. 22Gary Bisson - ABS2013 ADK Hardware • Other solutions? – Any USB Host capable device that can provide power to the Android device. – This is what makes it easy to port the ADK SW to any ARM-based board • e.g. Raspberry Pi • Brings more capabilities (video control…)
  • 23. 23Gary Bisson - ABS2013 What part of AOA do you Control? • ADK SW – Developer controls what runs on the ADK HW and what runs on the Android device • Google provides sample software: – Source code repo: • http://android.googlesource.com/accessories/manifest – Android device application can apply on any device with API level > 10 • Android Application presents UI for control, and communication
  • 24. 24Gary Bisson - ABS2013 ADK Software • Accessory side: – Full-featured: • Accessory – Basic controls (LEDs, GPIOs) • Audio • Bluetooth – Code is Arduino-specific • For other solutions, need for a “portable” Accessory sample code
  • 25. 25Gary Bisson - ABS2013 ADK Software • Android device side: – Hardware control
  • 26. 26Gary Bisson - ABS2013 Software implementation 1. Software on the ADK HW – Handles communication with Android device – Controls sensors, displays, etc. on the ADK HW 2. Software on the Android device – Can be installed automatically via pop-up URL on connection – Handles communication with ADK HW – Presents a GUI for control, data input/output from ADK
  • 27. 27Gary Bisson - ABS2013 Software implementation In case the software is not already installed:
  • 28. 28Gary Bisson - ABS2013 Software implementation Otherwise the user must authorize the execution of the Accessory app:
  • 29. 29Gary Bisson - ABS2013 Application on the Android Device • Must discover the accessory when it is attached • Communicate with the accessory via ADK Developer defined commands over USB • Utilizes the USB API in Android
  • 30. 30Gary Bisson - ABS2013 Application on the Android Device • Android contains two different packages to support AOA protocol: – android.hardware.usb • Works with no add-on library for Android 3.1 or higher – com.android.future.usb • From Google API add-on library for Android 2.3.4 or higher • Wrapper around android.hardware.usb • Better choice to support the widest range of devices
  • 31. 31Gary Bisson - ABS2013 Discovering the Accessory • First add an intent-filter to the application’s manifest (AndroidManifest.xml)
  • 32. 32Gary Bisson - ABS2013 Discovering the Accessory • Then define a resource file that details which USB Accessory this Application communicates with (accessory_filter.xml)
  • 33. 33Gary Bisson - ABS2013 Communication with the Accessory • Grab the UsbAccessory handle from the Intent received • Open up input/output file streams with the Accessory (myactivity.java)
  • 34. 34Gary Bisson - ABS2013 Accessory software • Accessory transfers – Bulk transfers:
  • 35. 35Gary Bisson - ABS2013 Accessory software • Audio streaming – Arduino ADK: • DMA to DAC • Simple solution – Linux implementation? • ALSA
  • 36. 36Gary Bisson - ABS2013 Accessory software Circular Buffer Isochronous USB Transfer Callback Audio write() Thread Audio Track API Audio Hardware
  • 37. 37Gary Bisson - ABS2013 Accessory software • HID support: – 4-step process: • Register HID device • Set HID report – Defines capabilities of the Human Interface • Send HID reports • Unregister HID device
  • 38. 38Gary Bisson - ABS2013 Accessory software • Tool to create your HID report structure: – HID Descriptor Tool
  • 39. 39Gary Bisson - ABS2013 Demonstrations • Android Device: – Stock Nexus 7 Tablet running Android Jellybean (v4.2.1) • Custom ARM-based accessory – Raspberry Pi model B – Running Linux
  • 40. 40Gary Bisson - ABS2013 Demonstrations • Why were these particular platforms chosen? – Raspberry Pi is a very cheap & popular board nowadays – Wanted to show ease of using libusb-based code – Nexus 7 is a recent stock device that needs no modification • Any Jellybean device would work the same
  • 41. 41Gary Bisson - ABS2013 Demonstration #1 • Create an accessory device that: – Displays pictures – Allows control of the slideshow from Android • Shows AOA v1.0 capabilities
  • 42. 42Gary Bisson - ABS2013 Demonstration #2 • Create an accessory device that: – Get ADK app data – Plays audio • Shows AOA v2.0 capabilities – Audio streaming
  • 43. 43Gary Bisson - ABS2013 Demonstration #3 • Create an accessory device that: – Runs Android as well! • From Jesse Dannenbring’s presentation: https://github.com/jdannenbring/android-arm-accessory • Shows AOA v2.0 capabilities – Audio streaming
  • 44. 44Gary Bisson - ABS2013 Conclusion • Interesting standard – Great flexibility – Can overcome HW access issues – Compatibility v2.0 / v1.0 • Limitations • Full code sources soon available at: http://github.com/gibsson
  • 45. 45Gary Bisson - ABS2013 Questions?
  • 46. 46Gary Bisson - ABS2013 References • Based on Jesse Dannenbring’s presentation: – https://speakerdeck.com/jdannenbring/ad- 2002slides-dannenbring – https://github.com/jdannenbring/android-arm- accessory – https://github.com/jdannenbring/android-arm- accessory-app • “Android Developers”. http://developer.android.com/index.html. 1 February 2013.
  • 47. 47Gary Bisson - ABS2013 References • Di Cerbo, Manuel. “Turn your Linux computer into a huge Android USB Accessory” Using Android in Industrial Automation. 5-13-2011. http://android.serverbox.ch/?p=262 • “libusb”. http://www.libusb.org/. 1 February 2013. • “monaka / libusb-android / overview”. https://bitbucket.org/monaka/libusb-android/. 1 February 2013. Portions of these slides are reproduced from work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
  • 48. 48Gary Bisson - ABS2013