Custom accessories

An accessory for Android can be anything: keyboard, thermometer, robot, lighting control, or anything else you can imagine. All Android accessories connect to an Android device in some way, so when building an accessory you must consider the type of connections your accessory will use. This page provides a quick overview of your options for connecting your Android accessory and a list of resources to help you get started.

Connect over USB

An accessory that connects to an Android device through a USB cable must support the Android Open Accessory (AOA) protocol, which specifies how an accessory can establish communication with an Android device via USB. Due to the low power output of Android devices, AOA requires the accessory to act as a USB host, meaning the connecting accessory must power the bus.

AOA has two versions that support different types of communication:

  • AOAv1. Supports generic accessory communication and adb debugging.
  • AOAv2. Supports human interface device (HID) capabilities. Available in Android 4.1 (API Level 16) or higher.

If you use the general accessory protocol to communicate with your accessory (rather than the adb or audio protocol), you must provide an Android app that can detect the connection of your USB accessory and establish communication.

Next steps

To get started building an Android accessory that uses a USB connection:

  • Select a hardware platform or build a hardware device that can support USB host mode.
  • Review AOA specifications to understand how to implement this protocol on your accessory hardware.
  • Review the ADK 2012 firmware source code (<adk-src>/adk2012/board/library/ADK2/), which demonstrates an implementation of an accessory using a USB connection for general data communications and audio streaming.
  • When planning to build an Android app that communicates with your accessory via USB, review the ADK 2012 Android app source code (<adk-src>/adk2012/app/).

Connect over Bluetooth

An accessory that connects with Android devices over a Bluetooth connection can use connection profiles supported by Android, including the Simple Serial Protocol (SSP) and Advanced Audio Distribution Profile (A2DP) profile. An accessory that uses Bluetooth to connect to Android devices must support Bluetooth communications and at least one of the supported connection profiles.

Users must enable Bluetooth on their Android device and pair with your accessory to use the accessory. You can also provide a secondary Android app that handles specialized communication such as data input or control outputs to interface with your accessory.

Next steps

To get started building an Android accessory that uses a Bluetooth connection:

  • Select a hardware platform or build an hardware device that can support Bluetooth communications and an Android supported connection profile, such as SSP or A2DP.
  • Review the ADK 2012 firmware source code (<adk-src>/adk2012/board/library/ADK2/), which includes an example implementation of general data communications and audio streaming using a Bluetooth connection.
  • When planning to build an Android app that communicates with your accessory via Bluetooth, review the ADK 2012 Android app source code (<adk-src>/adk2012/app/).

Note: The ADK 2012 source code includes an open source Bluetooth stack built for the Texas Instruments CC2564 chip but is designed to work with any Bluetooth chip that supports a standard Host/Controller Interface (HCI).