Skip to content

Instantly share code, notes, and snippets.

@acamilo
Last active April 10, 2016 19:37
Show Gist options
  • Save acamilo/d8bead276fd97f5ce8ab31498831ae40 to your computer and use it in GitHub Desktop.
Save acamilo/d8bead276fd97f5ce8ab31498831ae40 to your computer and use it in GitHub Desktop.
connecty via udp
//Your code here
import com.neuronrobotics.sdk.pid.*;
import com.neuronrobotics.sdk.common.*;
import com.neuronrobotics.sdk.network.*;
import java.net.InetAddress;
BowlerAbstractConnection connection = new UDPBowlerConnection(InetAddress.getByName("192.168.1.10"),1952);
GenericPIDDevice dev = new GenericPIDDevice(connection);
Log.enableInfoPrint();
return dev;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment