Vrishab ML
Vrishab ML

Reputation: 21

Exchanging data between raspberry pi and mobile

How can I send files from my mobile phone to raspberry pi using wifi or any other network?

Upvotes: 1

Views: 1970

Answers (2)

Rissmon Suresh
Rissmon Suresh

Reputation: 14053

i used a server in between for communication (xmpp protocol between server and mobile)

Followed this code https://github.com/upnpforum/uca-android-controller/tree/master/controllerapp/src/com/comarch/android/upnp/ibcdemo

Upvotes: 0

Tim Van Der Kuij
Tim Van Der Kuij

Reputation: 43

You could setup a connection through sockets. This would require you to have a wifi dongle for your raspberry pi.

You could start with reading Android sockets and basically any tutorial you can google (Example)

Upvotes: 2

Related Questions