55

I'm thinking about an Android app (with possibly an accompanying physical device), and I'm trying to figure out whether this is something that's feasible.

1) Let's say I plug my Android to my PC. Would it be possible for an app installed on the PC to communicate with an app running in the cell phone? I just need a very simplistic data exchange, it can even be one-way (just data pushed from the cell phone to the listening app on the PC, whenever the cell phone wants, I don't need any data sent from PC to phone).

When I plug it in, the phone gives me 4 options (charge, disk drive, HTC sync, tethering), which makes me think this is not doable, but still worth the shot.

2) Would it be possible for an app on the PC to talk to an app on the phone through any other way? (Wi-fi, bluetooth, etc). I'm guessing no on wi-fi since neither party has the other's IP (and I want this to kinda just work, not having to input IPs manually all the time).

3) If I make a device that's plugged to the little USB port at the bottom of the phone (and let's say this is a magical device that can do anything, I don't quite care about those details as long as it's doable). Can I have an Android app talk to that device?

4) Any other ideas to make the phone talk to a "device" that I make, or to an app in the PC are more than welcome. Going "through the web" could be an option (although there'd have to be a central server that I own as a middle man, I believe). But I'd prefer if the communication was direct between the two devices.

Elrond_EGLDer
  • 47,430
  • 25
  • 189
  • 180
Daniel Magliola
  • 27,613
  • 56
  • 154
  • 235
  • Sorry for the very late answer , but I am assuming the issue is still unsolved. If not , please ignore. I have used ADB to communicate : refer [this](http://stackoverflow.com/a/21749521/1833437) for additonal details. – Ab5 Mar 30 '15 at 07:48

4 Answers4

18

The world has changed since this question was asked, and the answer is now the Android Open Accessory Development Kit. It won't solve the problem for existing USB devices, but it makes it possible to create new devices that can use an Android device's USB connection.

Anand
  • 516
  • 1
  • 6
  • 23
James Moore
  • 7,594
  • 5
  • 62
  • 83
9

Communication between Android Device and PC is possible in one more way.

Through ADB connection via USB.

  1. Port Forwarding.
  2. Server Socket JAVA Program.
  3. Client Socket Android App.

Through this app can communicate with the our JAVA Program running on PC.

http://www.anothem.net/archives/2010/10/15/android-usb-connection-to-pc/

Noby
  • 5,992
  • 9
  • 37
  • 63
5

Edit: Please note this answer predates the availability of the Android USB host and accessory APIs and support found in many devices released after it was written.

If you turn on usb debugging on the phone and have something derived from the sdk's (open source) adb tool on the pc, they can communicate. The pc will have to initiate communications but within the sessions it can be mostly bidirectional or even mostly from device to pc. See developer.android.com about the adb shell and port forwarding. Root not required.

People are using bluetooth to talk to arduino embedded controllers.

With root I have made my phone act as a usb host, but it was a pain as I had to use wifi to get a debug shell since the usb was occupied.

Some phones have a low voltage serial port on an extusb connector or audio lines, but root and a level shifter would be required to use this.

Another idea I had been thinking of, doing a software modem on the headset jack, apparently has been done for both android and iphone by someone in Japan. This should not require root.

Chris Stratton
  • 38,489
  • 6
  • 80
  • 115
  • Thank you for your answer. My idea is to make this available to regular people. An app that'll be installed through the android market (at least the android side of the app). That implies no rooting, no usb debugging (i think), and nothing that my mom wouldn't be able to do. What you mention about bluetooth.... Does that imply rooting, or is it something my mom could do? – Daniel Magliola Sep 27 '10 at 14:52
  • 1
    The headphone jack idea is interesting, for sure – Daniel Magliola Sep 27 '10 at 14:53
  • 2
    Bluetooth serial (vs. earphone) may not work before a certain android version, and the hardware on the outside is expensive (like $20-30 in parts, up to $150 to get what is otherwise a $30 controller board with it integrated), but it shouldn't require root. Turning on USB debugging does not require root either, but yes, it's not for everyone. Basically you have a choice of hardware cost or user complexity. – Chris Stratton Sep 27 '10 at 15:00
3

For communication via usb/wlan take a look at this project: http://code.google.com/p/android-notifier/

WarrenFaith
  • 56,228
  • 24
  • 130
  • 145