I’m doing an Delphi Android application that which will receive the temperature from Arduino, I think do a sockets is a good way for to do this communication, but I’ve no idea how I can do a sockets with Delphi Android application, it’s different from Delphi for Windows. Can you help me about that? I’m using Delphi XE5. Thank you very much.
Asked
Active
Viewed 1,373 times
1 Answers
3
Delphi ships with Indy, which supports all of the platforms that Delphi supports. Look at the TIdTCPClient
and TIdTCPServer
components as a starting point. Indy works the same way on all platforms, so you can use the same code on Windows and Android.

Remy Lebeau
- 555,201
- 31
- 458
- 770
-
Hello, Remy! Thank you for help me. Did you have some example how can I use that? I'm new in programming. – user3557890 Apr 21 '14 at 20:42
-
Ok, I'll try do that. Thank you for attention. – user3557890 Apr 21 '14 at 22:27