This is the API description for the Java bindings of the IP Connection. The IP Connection is established between the Brick Daemon and the corresponding programming language API bindings. You need to create an IP Connection to brickd and add devices, before you can use them.
An overview of products that are controllable over an IP Connection can be found here.
The example code below is public domain.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | import com.tinkerforge.IPConnection;
public class Example {
private static final String host = "localhost";
private static final int port = 4223;
// Note: To make the example code cleaner we do not handle exceptions. Exceptions you
// might normally want to catch are described in the documentation
public static void main(String args[]) throws Exception {
// Create connection and connect to brickd
IPConnection ipcon = new IPConnection();
ipcon.connect(host, port);
// Register enumerate listener and print incoming information
ipcon.addEnumerateListener(new IPConnection.EnumerateListener() {
public void enumerate(String uid, String connectedUid, char position,
short[] hardwareVersion, short[] firmwareVersion,
int deviceIdentifier, short enumerationType) {
System.out.println("UID: " + uid);
System.out.println("Enumeration Type: " + enumerationType);
if(enumerationType == IPConnection.ENUMERATION_TYPE_DISCONNECTED) {
System.out.println("");
return;
}
System.out.println("Connected UID: " + connectedUid);
System.out.println("Position: " + position);
System.out.println("Hardware Version: " + hardwareVersion[0] + "." +
hardwareVersion[1] + "." +
hardwareVersion[2]);
System.out.println("Firmware Version: " + firmwareVersion[0] + "." +
firmwareVersion[1] + "." +
firmwareVersion[2]);
System.out.println("Device Identifier: " + deviceIdentifier);
System.out.println("");
}
});
ipcon.enumerate();
System.console().readLine("Press key to exit\n");
ipcon.disconnect();
}
}
|
Creates an IP Connection object that can be used to enumerate the available devices. It is also required for the constructor of Bricks and Bricklets.
Creates a TCP/IP connection to the given host and port. The host and port can refer to a Brick Daemon or to a WIFI/Ethernet Extension.
Devices can only be controlled when the connection was established successfully.
Blocks until the connection is established and throws an exception if there is no Brick Daemon or WIFI/Ethernet Extension listening at the given host and port.
Disconnects the TCP/IP connection from the Brick Daemon or the WIFI/Ethernet Extension.
Can return the following states:
Enables or disables auto-reconnect. If auto-reconnect is enabled, the IP Connection will try to reconnect to the previously given host and port, if the connection is lost.
Default value is true.
Returns true if auto-reconnect is enabled, false otherwise.
Sets the timeout in milliseconds for getters and for setters for which the response expected flag is activated.
Default timeout is 2500.
Returns the timeout as set by setTimeout().
Broadcasts an enumerate request. All devices will respond with an enumerate callback.
Registers a listener object.
The available listener classes with inherent methods to be overwritten are described below.
Listeners can be registered to be notified about events. The registration is done with “addListener” functions of the IPConnection object.
The parameter is a listener class object, for example:
ipcon.addExampleListener(new IPConnection.ExampleListener() {
public void property(int value) {
System.out.println("Value: " + value);
}
});
The available listener classes with inherent methods to be overwritten are described below. It is possible to add several listeners and to remove them with the corresponding “removeListener” function.
This listener can be added with the addEnumerateListener() function. An added listener can be removed with the removeEnumerateListener() function.
The listener receives seven parameters:
Possible enumeration types are:
It should be possible to implement plug-and-play functionality with this (as is done in Brick Viewer).
The device identifiers can be found here.
This listener can be added with the addConnectedListener() function. An added listener can be removed with the removeConnectedListener() function.
This listener is called whenever the IP Connection got connected to a Brick Daemon or to a WIFI/Ethernet Extension, possible reasons are:
This listener can be added with the addDisconnectedListener() function. An added listener can be removed with the removeDisconnectedListener() function.
This listener is called whenever the IP Connection got disconnected from a Brick Daemon or from a WIFI/Ethernet Extension, possible reasons are: