Rohit Singh
Rohit Singh

Reputation: 31

How to make an android app to access the GPIO's of BeagleBone Black?

I want to make an android app to directly access the GPIO's of beaglebone black. I am new to android programming and couldn't find anything so far. Pls Help.

Upvotes: 3

Views: 598

Answers (1)

sestus
sestus

Reputation: 1927

The most work should be done on the beaglebone side. You need to write an API - and I would recommend a RESTful one (google it) - to expose whatever GPIO functionality you want. Then you can consume this API from your android device - which is the easy part.

You should look for instructions on how to write such an API. Another term that is closely related to these API's is the IoT (Internet of Things). An example of such an API (IoT framework( for Raspberry pi is webiopi. You can have a look at this guide on how to build restful api on pi.

I am afraid that there is not so much available documentation for Beaglebone but hopefully you got the picture on what you should look for or implement.

Upvotes: 1

Related Questions