Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Working Android with Arduino [closed]

Has anyone tried to make Android and Arduino communicate with each other?

I found a couple of projects online:

  • Amarino
  • Android-Arduino

What do you guys suggest is the best way to make those two communicate?

like image 789
unj2 Avatar asked Jun 09 '10 18:06

unj2


People also ask

Can Android run on Arduino?

The Arduino IDE runs well and you can access code from the web, from the cloud, or locally. With Android, you cannot directly install code from the Arduino project as Android is not a supported operating system. But there are programmers porting the Linux versions to Android.

Can I connect Arduino to tablet?

Just plug the USB-A to USB-B cable into the female USB of the Host cable. Then plug the USB-B plug into the Arduino and the Micro USB into the Android device.


1 Answers

Either build a serial cable for your Android phone, like this one for the G1, http://www.instructables.com/id/Android-G1-Serial-To-Arduino/.

Or add a Bluetooth module to your Arduino,

or use an Ethernet-shield for your Arduino and connect via TCP/IP.

Which one to use depends on your project and your budget. I don't know if the serial cable option exists for phones other than the G1. The Bluetooth module has the advantage of beeing wireless for both, the Arduino and the phone, and using the Ethernet-shield you could make the Arduino worldwide accessible by using port-forwarding on your firewall.

like image 73
Nikolaus Gradwohl Avatar answered Sep 22 '22 12:09

Nikolaus Gradwohl