GithubHelp home page GithubHelp logo

Comments (4)

calimero-project avatar calimero-project commented on June 2, 2024

This is an updated example:

import java.net.InetSocketAddress;

import tuwien.auto.calimero.GroupAddress;
import tuwien.auto.calimero.KNXException;
import tuwien.auto.calimero.link.KNXNetworkLink;
import tuwien.auto.calimero.link.KNXNetworkLinkIP;
import tuwien.auto.calimero.link.medium.TPSettings;
import tuwien.auto.calimero.process.ProcessCommunicator;
import tuwien.auto.calimero.process.ProcessCommunicatorImpl;

/**
 * Example of Calimero process communication, we read and write a boolean datapoint in the KNX network. By default, this
 * example will not change any datapoint value in the network.
 */
public class ProcessCommunication
{
	// Address of your KNXnet/IP server. Replace the IP host or address as necessary.
	private static final String remoteHost = "myKnxServer.myHome.com";

	/**
	 * We will read a boolean from this KNX datapoint group address, replace the address string with one of yours. Make
	 * sure this datapoint exists, otherwise you will get a read timeout!
	 */
	private static final String group = "1/1/1";

	public static void main(final String[] args)
	{
		// Create our network link, and pass it to a process communicator
		try (KNXNetworkLink knxLink = KNXNetworkLinkIP.newTunnelingLink(null, new InetSocketAddress(remoteHost, 3671), false, TPSettings.TP1);
			ProcessCommunicator pc = new ProcessCommunicatorImpl(knxLink)) {

			System.out.println("read a boolean from datapoint " + group);
			// this is a blocking method to read a boolean from a KNX datapoint
			final boolean value = pc.readBool(new GroupAddress(group));
			System.out.println("datapoint " + group + " value: " + value);

			// Uncomment the next line, if you want to write back the same value to the KNX network
			// pc.write(group, value);
		}
		catch (KNXException | InterruptedException e) {
			System.out.println("Error reading KNX datapoint: " + e.getMessage());
		}
	}
}

from calimero-core.

JourdanM avatar JourdanM commented on June 2, 2024

Thanks a lot, it works fine, I'm now able to collect data from differents groups !
When I tried do run my app from the school (directly connected by Wi-Fi on the network), I have a timeout, impossible to connect to the group.
But when I tried from home (connected by VPN), it works fine.

Do you have an idea why ?

from calimero-core.

bmalinowsky avatar bmalinowsky commented on June 2, 2024

The example probably defaults to the wrong local IP address.
In the method call newTunnelingLink(null, ... , replace the null with new InetSocketAddress("my.local.ip.address", 0), and insert your local IP address of the wifi network.

from calimero-core.

JourdanM avatar JourdanM commented on June 2, 2024

Works well :)
Thank you very much for the help !

from calimero-core.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.