Reputation: 493
In my application that is under development I have to send data directly from raspberry pi 2 to an android device .
I have successfully implemented the following Solutions
Solution 1 : Using Google Messaging Service
Using Cloud Based Server : By Sending data through API to a cloud based server which will send the data using pushy but that is also similar process as above.
All of the above solutions work but they are too slow is there any way i can directly interact with the android device from rapsberry pi ?
Upvotes: 0
Views: 3732
Reputation: 881
You could use a websocket connection. See this thread for a list of library you can use.
Upvotes: 2