Can I please get code or an example to connect my android app to wifi device vie ip address and port number.
feedback
|
|
Whether you are talking over the 3G/4G Radio or connected to WiFi your code can't really tell the difference. And this is a good thing so we can write our communication over TCP and not really care how the device is going to send those packets. That means we write out HTTP code once, without care to the underlying protocols that will deliver it, so no matter what the transport mechanism our code works for now and if they create new layers in the future: 3G/4G/WIFI/USB Tethering/Bluetooth Tethering, etc. For simple HTTP communication with a server across the internet here is a simple example:
If you want to have a persistent connection to your robot. I'd just simply use a good old fashion socket:
That's roughly how you'd use raw sockets to communicate with the robot. It doesn't matter if communication is happening over WIFI or not. It's really whether or not you can access the host and port using the connect() method. You could bake the commands into the RemoteRobot class with methods like sendHello(), sendWalk(), sendTalk(), etc. I just used the extensible Command/Response pattern here because it was shorter. But, if your command set is fairly fixed I'd say have all known commands on the RemoteRobot class to encapsulate that more. I would NOT worry about using WIFI only. | |||||||||||
feedback
|
protected by Community♦ Apr 19 at 12:27
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.