SlideShare a Scribd company logo
Android Open Accessory Protocol
Turn Your Linux machine as ADK
By
Rajesh Sola,
CDAC ACTS,Pune
`
OSI Days 2014,
Nimhans Convention
Centre, Bengaluru
Outline
● Need for AOA Protocol/ADK
● Introduction,History
● Available ADK hardware
● Initializing Android device
● Using driver skeleton
● Communication – ADK Side
● Sample Apps
● Developing your own apps
● Communication – Android Side
Need for AOA Protocol/ADK Host
● Peripheral support of typical android gadget
● Adding more peripherals like temperature
sensor,CANBus support,SPI,I2C,PWM etc?
● With/wthout rooting of android device
● Scope of Android USB Host capabilities
● USB device capabilities of android gadget
● Alternatives for USB – Bluetooth,WiFi etc.
● Designing rich UI for your hardware control.
● Lets talk about the solution for all...
ADK Host
● In this protocol android gadget is kept in device mode
and external hardware will be chosen in host mode
● Any hardware with USB host capabilities and capable
of supplying a power of 5V@500mA to the android
device can be chosen for this purpose,which is called
as Android Accessory Development Kit(ADK) or
Accessory Host
● Simple USB communication with two bulk end
points
History
● AOA v1.0
– Supported from Android 3.1(API Level 12) onwards
– With add on library from Android 2.3.4(API level 10)
– Announced in Google I/O 2011
– Demonstrated through Custom shield for Arduino
Mega board
● AOA v2.0
– Supported from Android 4.1(API Level 16) onwards
– Comes with additional features like audio,hid
support and bluetooth connectivity
– Announced in Google I/O 2012
– Demonstrated through Arduino Due based custom
board
Available Hardware for ADK
● Arduino Mega
● Arduino Due
● AOA kit from Embedded Artists
● FTDI Vinculum II
● Microchip PIC24F ADK
● Sparkfun IOIO
● BeagleBone powered with TI Starterware
Any Linux machine with USB Host support
Not limited to this hardware,any
board with USB Host support can
be designed as ADK with suitable
USB Host APIs. The only advantage
with this listing is availability of some
sample code and certain tested apps.
Initialization
Step1:-
● Send Control request 51(0x33) to get the protocol
version
● Returns 1 for AOA 1.0, 2 for AOA 2.0
bmRequestType TYPE_VENDOR|
DIR_DEVICE_TO_HOST
bRequest 51
wValue 0
wIndex 0
Data Address of two byte buffer
wLength 2
Initialization
Step2:-
● Send identity strings through control request 52
● Essentially one should send manufacturer, model,
version to communicate ADK with an app
● Rest all are optional
bmRequestTyp
e
TYPE_VENDOR|
DIR_HOST_TO_DEVICE
bRequest 52
wValue 0
wIndex String id
Data Address of string
wLength Length of the string
String IDs
Manufacturer 0
Model 1
Description 2
Version 3
Url 4
Serial id 5
Initialization
Step3:-
● Start in accessory mode through control request
53(0x35)
● Launch an app matched by essential identity strings
or start without app just for audio/hid support.
bmRequestType TYPE_VENDOR|
DIR_HOST_TO_DEVICE
bRequest 53
wValue 0
wIndex 0
Data NULL
wLength 0
Audio Support
● Send control request 0x58 for audio support with
value=1 for 2 channel 16 bit PCM @ 44100 Kh`z
● If you are requesting for audio support,this must be
done before starting in accessory mode
● If manufacturer,model identity strings are not
supplied device goes to audio only mode
bmRequestType TYPE_VENDOR|
DIR_HOST_TO_DEVICE
bRequest 53
wValue 1
wIndex 0
Data NULL
wLength 0
HID Support
● ADK can acts as HID event source or HID proxy to
your android device
● The following request codes are used for HID support
Register HID 54
Unregister HID 55
Set HID Report 56
Send HID Event 57
Configuration
0x18D1:0x2D00 Accessory only
0x18D1:0x2D01 Accessory+ADB
0x18D1:0x2D02 Audio only
0x18D1:0x2D03 Audio + ADB
0x18D1:0x2D04 Accessory + Audio
0x18D1:0x2D05 Accessory + Audio + ADB
● Upon initialization android device switches to
accessory mode from MTP/PTP mode and re-
enumerated by ADK Host with one of the following
vendor id,product id combinations and interface 0
with two bulk end points for communication
Using driver skeleton
● Hosted on github.com/rajeshsola/adk-driver-skeleton
based on Gary Bisson's libusb based linux-adk code
● Load the driver,optionally with module parameters
my_dev_vid, my_dev_pid
● Initialize using simple shell commands
cat /sys/kernel/adk_linux/aoa_init/version
echo “Manu=OSI Days” > /sys/kernel/adk_linux/aoa_init/identity
echo “Model=uisample” > /sys/kernel/adk_linux/aoa_init/identity
echo “version=1.0” > /sys/kernel/adk_linux/aoa_init/identity
echo “accessory” > /sys/kernel/adk_linux/aoa_init/start
● Alternatives for initialization
ioctl code
module parametet init_on_probe=1
Communication – ADK side
● Simple userspace file operations on linux(ADK) side to talk to
the app
● Start the communication
fd=open(“/dev/aoa-skel0”,O_RDWR);
● For output peripherals(Android to ADK), eg:- LEDs,Volume
read(fd,buf,len);
//process the buffer and control peripherals
● For input peripherals(ADK to Android), eg:- Sensors, RTC
//fill the buffer with state of peripherals
write(fd,str,len);
● Stop the communication
close(fd);
● can go for threaded design for Asynchronous transfer
Sample Apps
● From Google Playstore
– ADK 2012 from Google
– Basic Accessory Demo from Microchip
● From other repositories with source code
– SimpleAccessory Demo
– Examples for AOA Kit from Embedded Artists
– ADK Demo from rowboat project for beagle bone
– TinyAccessory Demo
– FTDI Android examples
Developing Your own Apps
● intent-filter section and other changes in Manifest file
● Getting the reference of USB service manager
● Getting the reference for connected accessory
● Checking/Obtaining permissions
● Getting references of file streams
● Steps to take care during Activity life cycle
– OnCreate
– OnPause
– OnResume
– OnDestroy
● A walk through of skeleton code ADKControl class
Communication – Android App side
● Add the skeleton class ADKControl to your project
● Create an instance of ADKControl in MainActivity
by passing the reference of same,if necessary pass the
reference of ADKControl to other activities or
fragments or retrieve through getInstance(null)
ADKControl adk=ADKControl.getInstance(this)
● Use sendCommand method for output activity,in
appropriate listeners
● Use readData method for input activity, preferably in
a different thread for asynchronous read
● Can obtain references for Input,Output references
using methods getInputStream,getOutputStream
An Example – App to ADK
Peripheral
Type
Peripheral
Id
Peripheral
State/Data
Peripheral
Data
Peripheral
Data
Byte buffer
0 1 2 3 4
--------------->
An Example – ADK to App
Input
Type
DataData DataData DataData --------------->
0x46 hours mins secs
Thank You
http://github.com/rajeshsola/adk-driver-skeleton
rajeshsola@gmail.com

More Related Content

What's hot

Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with Pie
Opersys inc.
 
Android Boot Time Optimization
Android Boot Time OptimizationAndroid Boot Time Optimization
Android Boot Time OptimizationKan-Ru Chen
 
Android Virtualization: Opportunity and Organization
Android Virtualization: Opportunity and OrganizationAndroid Virtualization: Opportunity and Organization
Android Virtualization: Opportunity and Organization
National Cheng Kung University
 
Android presentation slide
Android presentation slideAndroid presentation slide
Android presentation slide
APSMIND TECHNOLOGY PVT LTD.
 
SYCL 2020 Specification
SYCL 2020 SpecificationSYCL 2020 Specification
SYCL 2020 Specification
The Khronos Group Inc.
 
Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...
Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...
Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...
Red Bend Software
 
PX4 Setup Workshop
PX4 Setup WorkshopPX4 Setup Workshop
PX4 Setup Workshop
Todd Stellanova
 
Learning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverLearning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device Driver
Nanik Tolaram
 
Introduction to Android development - Presentation Report
Introduction to Android development - Presentation ReportIntroduction to Android development - Presentation Report
Introduction to Android development - Presentation Report
Atul Panjwani
 
An introduction to drones: hardware, protocols and auto-pilot systems
An introduction to drones: hardware, protocols and auto-pilot systemsAn introduction to drones: hardware, protocols and auto-pilot systems
An introduction to drones: hardware, protocols and auto-pilot systems
University of Oklahoma
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
Emertxe Information Technologies Pvt Ltd
 
android studio
 android studio android studio
LCE13: Android Graphics Upstreaming
LCE13: Android Graphics UpstreamingLCE13: Android Graphics Upstreaming
LCE13: Android Graphics Upstreaming
Linaro
 
Embedded Recipes 2019 - Introduction to JTAG debugging
Embedded Recipes 2019 - Introduction to JTAG debuggingEmbedded Recipes 2019 - Introduction to JTAG debugging
Embedded Recipes 2019 - Introduction to JTAG debugging
Anne Nicolas
 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HAL
Opersys inc.
 
Kernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime Ripard
Kernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime RipardKernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime Ripard
Kernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime Ripard
Anne Nicolas
 
Android Logging System
Android Logging SystemAndroid Logging System
Android Logging System
William Lee
 
Booting Android: bootloaders, fastboot and boot images
Booting Android: bootloaders, fastboot and boot imagesBooting Android: bootloaders, fastboot and boot images
Booting Android: bootloaders, fastboot and boot images
Chris Simmonds
 
Windows 10 features
Windows 10 featuresWindows 10 features
Windows 10 features
kritika adlakha
 

What's hot (20)

Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with Pie
 
Android Boot Time Optimization
Android Boot Time OptimizationAndroid Boot Time Optimization
Android Boot Time Optimization
 
Android Virtualization: Opportunity and Organization
Android Virtualization: Opportunity and OrganizationAndroid Virtualization: Opportunity and Organization
Android Virtualization: Opportunity and Organization
 
Android presentation slide
Android presentation slideAndroid presentation slide
Android presentation slide
 
SYCL 2020 Specification
SYCL 2020 SpecificationSYCL 2020 Specification
SYCL 2020 Specification
 
Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...
Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...
Red Bend Software: Separation Using Type-1 Virtualization in Vehicles and Aut...
 
PX4 Setup Workshop
PX4 Setup WorkshopPX4 Setup Workshop
PX4 Setup Workshop
 
Learning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device DriverLearning AOSP - Android Linux Device Driver
Learning AOSP - Android Linux Device Driver
 
Introduction to Android development - Presentation Report
Introduction to Android development - Presentation ReportIntroduction to Android development - Presentation Report
Introduction to Android development - Presentation Report
 
Audio Drivers
Audio DriversAudio Drivers
Audio Drivers
 
An introduction to drones: hardware, protocols and auto-pilot systems
An introduction to drones: hardware, protocols and auto-pilot systemsAn introduction to drones: hardware, protocols and auto-pilot systems
An introduction to drones: hardware, protocols and auto-pilot systems
 
Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
 
android studio
 android studio android studio
android studio
 
LCE13: Android Graphics Upstreaming
LCE13: Android Graphics UpstreamingLCE13: Android Graphics Upstreaming
LCE13: Android Graphics Upstreaming
 
Embedded Recipes 2019 - Introduction to JTAG debugging
Embedded Recipes 2019 - Introduction to JTAG debuggingEmbedded Recipes 2019 - Introduction to JTAG debugging
Embedded Recipes 2019 - Introduction to JTAG debugging
 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HAL
 
Kernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime Ripard
Kernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime RipardKernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime Ripard
Kernel Recipes 2017 - An introduction to the Linux DRM subsystem - Maxime Ripard
 
Android Logging System
Android Logging SystemAndroid Logging System
Android Logging System
 
Booting Android: bootloaders, fastboot and boot images
Booting Android: bootloaders, fastboot and boot imagesBooting Android: bootloaders, fastboot and boot images
Booting Android: bootloaders, fastboot and boot images
 
Windows 10 features
Windows 10 featuresWindows 10 features
Windows 10 features
 

Viewers also liked

Leveraging the Android Open Accessory Protocol
Leveraging the Android Open Accessory ProtocolLeveraging the Android Open Accessory Protocol
Leveraging the Android Open Accessory Protocol
Gary Bisson
 
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...Илья Родин
 
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
 
Getting started with IOT Development using Fedora on ARM
Getting started with IOT Development using Fedora on ARMGetting started with IOT Development using Fedora on ARM
Getting started with IOT Development using Fedora on ARM
Rajesh Sola
 
aoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsolaaoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsolaRajesh Sola
 
Hands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardwareHands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardware
Rajesh Sola
 
Kickstarting IOT using NodeRED
Kickstarting IOT using NodeREDKickstarting IOT using NodeRED
Kickstarting IOT using NodeRED
Rajesh Sola
 
Hacktime for adk
Hacktime for adkHacktime for adk
Hacktime for adk
SeongJae Park
 
Seminar on Android Auto
Seminar on Android AutoSeminar on Android Auto
Seminar on Android Auto
Kiran Krishna
 
AAME ARM Techcon2013 002v02 Advanced Features
AAME ARM Techcon2013 002v02 Advanced FeaturesAAME ARM Techcon2013 002v02 Advanced Features
AAME ARM Techcon2013 002v02 Advanced Features
Anh Dung NGUYEN
 
Experience protocol buffer on android
Experience protocol buffer on androidExperience protocol buffer on android
Experience protocol buffer on android
Richard Chang
 
fudcon-fedora-arm-iot-rajeshsola
fudcon-fedora-arm-iot-rajeshsolafudcon-fedora-arm-iot-rajeshsola
fudcon-fedora-arm-iot-rajeshsolaRajesh Sola
 
Vba Macros Interoperability
Vba Macros InteroperabilityVba Macros Interoperability
Vba Macros Interoperability
Rajesh Sola
 
Go Green - Save Power
Go Green - Save PowerGo Green - Save Power
Go Green - Save Power
Rajesh Sola
 
Introduction of Android Auto
Introduction of Android AutoIntroduction of Android Auto
Introduction of Android Auto
Zaicheng Qi
 
[NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법 [NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법
YoungSu Son
 
Android - ADB
Android - ADBAndroid - ADB
Android - ADB
Yossi Gruner
 

Viewers also liked (17)

Leveraging the Android Open Accessory Protocol
Leveraging the Android Open Accessory ProtocolLeveraging the Android Open Accessory Protocol
Leveraging the Android Open Accessory Protocol
 
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...
 
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 ...
 
Getting started with IOT Development using Fedora on ARM
Getting started with IOT Development using Fedora on ARMGetting started with IOT Development using Fedora on ARM
Getting started with IOT Development using Fedora on ARM
 
aoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsolaaoa-adk-osidays-rajeshsola
aoa-adk-osidays-rajeshsola
 
Hands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardwareHands on with embedded linux using zero hardware
Hands on with embedded linux using zero hardware
 
Kickstarting IOT using NodeRED
Kickstarting IOT using NodeREDKickstarting IOT using NodeRED
Kickstarting IOT using NodeRED
 
Hacktime for adk
Hacktime for adkHacktime for adk
Hacktime for adk
 
Seminar on Android Auto
Seminar on Android AutoSeminar on Android Auto
Seminar on Android Auto
 
AAME ARM Techcon2013 002v02 Advanced Features
AAME ARM Techcon2013 002v02 Advanced FeaturesAAME ARM Techcon2013 002v02 Advanced Features
AAME ARM Techcon2013 002v02 Advanced Features
 
Experience protocol buffer on android
Experience protocol buffer on androidExperience protocol buffer on android
Experience protocol buffer on android
 
fudcon-fedora-arm-iot-rajeshsola
fudcon-fedora-arm-iot-rajeshsolafudcon-fedora-arm-iot-rajeshsola
fudcon-fedora-arm-iot-rajeshsola
 
Vba Macros Interoperability
Vba Macros InteroperabilityVba Macros Interoperability
Vba Macros Interoperability
 
Go Green - Save Power
Go Green - Save PowerGo Green - Save Power
Go Green - Save Power
 
Introduction of Android Auto
Introduction of Android AutoIntroduction of Android Auto
Introduction of Android Auto
 
[NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법 [NEXT] Android Profiler 사용법
[NEXT] Android Profiler 사용법
 
Android - ADB
Android - ADBAndroid - ADB
Android - ADB
 

Similar to Android Open Accessory Protocol - Turn Your Linux machine as ADK

FTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory ProtocolFTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory Protocol
Gary Bisson
 
Android Internals and Toolchain
Android Internals and ToolchainAndroid Internals and Toolchain
Android Internals and ToolchainVladimir Kotov
 
Programming objects with android
Programming objects with androidProgramming objects with android
Programming objects with android
firenze-gtug
 
From Arduino to ADK
From Arduino to ADKFrom Arduino to ADK
From Arduino to ADK
CoLab Athens
 
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
Alina Vilk
 
Smartphone++
Smartphone++Smartphone++
Smartphone++
mharkus
 
Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!
Codemotion
 
iRidium pro for HDL
iRidium pro for HDLiRidium pro for HDL
iRidium pro for HDL
iRidiumMobile365
 
Adk 101
Adk 101Adk 101
AGILE software, devices and wider ecosystem
AGILE software, devices and wider ecosystemAGILE software, devices and wider ecosystem
AGILE software, devices and wider ecosystem
AGILE IoT
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitGetting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer Kit
Sulamita Garcia
 
Controlling an Arduino with Android
Controlling an Arduino with AndroidControlling an Arduino with Android
Controlling an Arduino with Android
A. Hernandez
 
Albin profile
Albin profileAlbin profile
Albin profile
Albin B
 
IoT Getting Started with Intel® IoT Devkit
IoT Getting Started with Intel® IoT DevkitIoT Getting Started with Intel® IoT Devkit
IoT Getting Started with Intel® IoT Devkit
Vasily Ryzhonkov
 
Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...
Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...
Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...
Codemotion
 
Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...
Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...
Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...
Codemotion
 
Linxu conj2016 96boards
Linxu conj2016 96boardsLinxu conj2016 96boards
Linxu conj2016 96boards
LF Events
 
Android Things, from mobile apps to physical world
Android Things, from mobile apps to physical worldAndroid Things, from mobile apps to physical world
Android Things, from mobile apps to physical world
Stefano Sanna
 
Начало работы с Intel IoT Dev Kit
Начало работы с Intel IoT Dev KitНачало работы с Intel IoT Dev Kit
Начало работы с Intel IoT Dev Kit
Intel® Developer Zone Россия
 

Similar to Android Open Accessory Protocol - Turn Your Linux machine as ADK (20)

FTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory ProtocolFTF2014 - Android Accessory Protocol
FTF2014 - Android Accessory Protocol
 
Android Internals and Toolchain
Android Internals and ToolchainAndroid Internals and Toolchain
Android Internals and Toolchain
 
Programming objects with android
Programming objects with androidProgramming objects with android
Programming objects with android
 
From Arduino to ADK
From Arduino to ADKFrom Arduino to ADK
From Arduino to ADK
 
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
 
Smartphone++
Smartphone++Smartphone++
Smartphone++
 
Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!Lab Handson: Power your Creations with Intel Edison!
Lab Handson: Power your Creations with Intel Edison!
 
iRidium pro for HDL
iRidium pro for HDLiRidium pro for HDL
iRidium pro for HDL
 
Adk 101
Adk 101Adk 101
Adk 101
 
AGILE software, devices and wider ecosystem
AGILE software, devices and wider ecosystemAGILE software, devices and wider ecosystem
AGILE software, devices and wider ecosystem
 
Getting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer KitGetting started with Intel IoT Developer Kit
Getting started with Intel IoT Developer Kit
 
Controlling an Arduino with Android
Controlling an Arduino with AndroidControlling an Arduino with Android
Controlling an Arduino with Android
 
Albin profile
Albin profileAlbin profile
Albin profile
 
IoT Getting Started with Intel® IoT Devkit
IoT Getting Started with Intel® IoT DevkitIoT Getting Started with Intel® IoT Devkit
IoT Getting Started with Intel® IoT Devkit
 
Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...
Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...
Android Things, from mobile apps to physical world - Stefano Sanna - Giovanni...
 
Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...
Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...
Android Things, from mobile apps to physical world by Giovanni Di Gialluca an...
 
Linxu conj2016 96boards
Linxu conj2016 96boardsLinxu conj2016 96boards
Linxu conj2016 96boards
 
Android presentation
Android presentationAndroid presentation
Android presentation
 
Android Things, from mobile apps to physical world
Android Things, from mobile apps to physical worldAndroid Things, from mobile apps to physical world
Android Things, from mobile apps to physical world
 
Начало работы с Intel IoT Dev Kit
Начало работы с Intel IoT Dev KitНачало работы с Intel IoT Dev Kit
Начало работы с Intel IoT Dev Kit
 

Recently uploaded

Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Albert Hoitingh
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
RTTS
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Ramesh Iyer
 

Recently uploaded (20)

Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
Encryption in Microsoft 365 - ExpertsLive Netherlands 2024
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 

Android Open Accessory Protocol - Turn Your Linux machine as ADK

  • 1. Android Open Accessory Protocol Turn Your Linux machine as ADK By Rajesh Sola, CDAC ACTS,Pune ` OSI Days 2014, Nimhans Convention Centre, Bengaluru
  • 2. Outline ● Need for AOA Protocol/ADK ● Introduction,History ● Available ADK hardware ● Initializing Android device ● Using driver skeleton ● Communication – ADK Side ● Sample Apps ● Developing your own apps ● Communication – Android Side
  • 3. Need for AOA Protocol/ADK Host ● Peripheral support of typical android gadget ● Adding more peripherals like temperature sensor,CANBus support,SPI,I2C,PWM etc? ● With/wthout rooting of android device ● Scope of Android USB Host capabilities ● USB device capabilities of android gadget ● Alternatives for USB – Bluetooth,WiFi etc. ● Designing rich UI for your hardware control. ● Lets talk about the solution for all...
  • 4. ADK Host ● In this protocol android gadget is kept in device mode and external hardware will be chosen in host mode ● Any hardware with USB host capabilities and capable of supplying a power of 5V@500mA to the android device can be chosen for this purpose,which is called as Android Accessory Development Kit(ADK) or Accessory Host ● Simple USB communication with two bulk end points
  • 5. History ● AOA v1.0 – Supported from Android 3.1(API Level 12) onwards – With add on library from Android 2.3.4(API level 10) – Announced in Google I/O 2011 – Demonstrated through Custom shield for Arduino Mega board ● AOA v2.0 – Supported from Android 4.1(API Level 16) onwards – Comes with additional features like audio,hid support and bluetooth connectivity – Announced in Google I/O 2012 – Demonstrated through Arduino Due based custom board
  • 6. Available Hardware for ADK ● Arduino Mega ● Arduino Due ● AOA kit from Embedded Artists ● FTDI Vinculum II ● Microchip PIC24F ADK ● Sparkfun IOIO ● BeagleBone powered with TI Starterware Any Linux machine with USB Host support Not limited to this hardware,any board with USB Host support can be designed as ADK with suitable USB Host APIs. The only advantage with this listing is availability of some sample code and certain tested apps.
  • 7. Initialization Step1:- ● Send Control request 51(0x33) to get the protocol version ● Returns 1 for AOA 1.0, 2 for AOA 2.0 bmRequestType TYPE_VENDOR| DIR_DEVICE_TO_HOST bRequest 51 wValue 0 wIndex 0 Data Address of two byte buffer wLength 2
  • 8. Initialization Step2:- ● Send identity strings through control request 52 ● Essentially one should send manufacturer, model, version to communicate ADK with an app ● Rest all are optional bmRequestTyp e TYPE_VENDOR| DIR_HOST_TO_DEVICE bRequest 52 wValue 0 wIndex String id Data Address of string wLength Length of the string String IDs Manufacturer 0 Model 1 Description 2 Version 3 Url 4 Serial id 5
  • 9. Initialization Step3:- ● Start in accessory mode through control request 53(0x35) ● Launch an app matched by essential identity strings or start without app just for audio/hid support. bmRequestType TYPE_VENDOR| DIR_HOST_TO_DEVICE bRequest 53 wValue 0 wIndex 0 Data NULL wLength 0
  • 10. Audio Support ● Send control request 0x58 for audio support with value=1 for 2 channel 16 bit PCM @ 44100 Kh`z ● If you are requesting for audio support,this must be done before starting in accessory mode ● If manufacturer,model identity strings are not supplied device goes to audio only mode bmRequestType TYPE_VENDOR| DIR_HOST_TO_DEVICE bRequest 53 wValue 1 wIndex 0 Data NULL wLength 0
  • 11. HID Support ● ADK can acts as HID event source or HID proxy to your android device ● The following request codes are used for HID support Register HID 54 Unregister HID 55 Set HID Report 56 Send HID Event 57
  • 12. Configuration 0x18D1:0x2D00 Accessory only 0x18D1:0x2D01 Accessory+ADB 0x18D1:0x2D02 Audio only 0x18D1:0x2D03 Audio + ADB 0x18D1:0x2D04 Accessory + Audio 0x18D1:0x2D05 Accessory + Audio + ADB ● Upon initialization android device switches to accessory mode from MTP/PTP mode and re- enumerated by ADK Host with one of the following vendor id,product id combinations and interface 0 with two bulk end points for communication
  • 13. Using driver skeleton ● Hosted on github.com/rajeshsola/adk-driver-skeleton based on Gary Bisson's libusb based linux-adk code ● Load the driver,optionally with module parameters my_dev_vid, my_dev_pid ● Initialize using simple shell commands cat /sys/kernel/adk_linux/aoa_init/version echo “Manu=OSI Days” > /sys/kernel/adk_linux/aoa_init/identity echo “Model=uisample” > /sys/kernel/adk_linux/aoa_init/identity echo “version=1.0” > /sys/kernel/adk_linux/aoa_init/identity echo “accessory” > /sys/kernel/adk_linux/aoa_init/start ● Alternatives for initialization ioctl code module parametet init_on_probe=1
  • 14. Communication – ADK side ● Simple userspace file operations on linux(ADK) side to talk to the app ● Start the communication fd=open(“/dev/aoa-skel0”,O_RDWR); ● For output peripherals(Android to ADK), eg:- LEDs,Volume read(fd,buf,len); //process the buffer and control peripherals ● For input peripherals(ADK to Android), eg:- Sensors, RTC //fill the buffer with state of peripherals write(fd,str,len); ● Stop the communication close(fd); ● can go for threaded design for Asynchronous transfer
  • 15. Sample Apps ● From Google Playstore – ADK 2012 from Google – Basic Accessory Demo from Microchip ● From other repositories with source code – SimpleAccessory Demo – Examples for AOA Kit from Embedded Artists – ADK Demo from rowboat project for beagle bone – TinyAccessory Demo – FTDI Android examples
  • 16. Developing Your own Apps ● intent-filter section and other changes in Manifest file ● Getting the reference of USB service manager ● Getting the reference for connected accessory ● Checking/Obtaining permissions ● Getting references of file streams ● Steps to take care during Activity life cycle – OnCreate – OnPause – OnResume – OnDestroy ● A walk through of skeleton code ADKControl class
  • 17. Communication – Android App side ● Add the skeleton class ADKControl to your project ● Create an instance of ADKControl in MainActivity by passing the reference of same,if necessary pass the reference of ADKControl to other activities or fragments or retrieve through getInstance(null) ADKControl adk=ADKControl.getInstance(this) ● Use sendCommand method for output activity,in appropriate listeners ● Use readData method for input activity, preferably in a different thread for asynchronous read ● Can obtain references for Input,Output references using methods getInputStream,getOutputStream
  • 18. An Example – App to ADK Peripheral Type Peripheral Id Peripheral State/Data Peripheral Data Peripheral Data Byte buffer 0 1 2 3 4 --------------->
  • 19. An Example – ADK to App Input Type DataData DataData DataData ---------------> 0x46 hours mins secs