• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. Bård Lind

    Please Note This forum exists for community support for the Mango product family and the Radix IoT Platform. Although Radix IoT employees participate in this forum from time to time, there is no guarantee of a response to anything posted here, nor can Radix IoT, LLC guarantee the accuracy of any information expressed or conveyed. Specific project questions from customers with active support contracts are asked to send requests to support@radixiot.com.

    Radix IoT Website Mango 3 Documentation Website Mango 4 Documentation Website Mango 5 Documentation Website
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Groups 0

    Bård Lind

    @Bård Lind

    0
    Reputation
    1
    Profile views
    2
    Posts
    0
    Followers
    0
    Following
    Joined
    Last Online

    Bård Lind Unfollow Follow

    Latest posts made by Bård Lind

    • RE: Bacnet4J v6 - Getting Started

      I'm trying this:

                 IpNetwork ipNetwork = new IpNetworkBuilder()
                          .withLocalBindAddress(192.168.2.28)
                          .withBroadcast("192.168.2.255", 32)
                          .build();
                  localDevice = new LocalDevice(LOCAL_DEVICE_ID, new DefaultTransport(ipNetwork));
                  localDevice.initialize();
                  RemoteDeviceFinder.RemoteDeviceFuture remoteDeviceFuture = localDevice.getRemoteDevice(2401);
                  RemoteDevice remoteDevice = remoteDeviceFuture.get();
                  if (remoteDevice == null) {
                      log.warn("Remote device with ID {} not found", REMOTE_DEVICE_ID);
                      return;
                  }
      

      With Wireshark I can see the messages returning, yet none are arriving in Bacnet4J.
      I have tried to run this code with and without Wiresharck running.

      Any sugestions into what is wrong?

      Regards
      Bard

      posted in BACnet4J general discussion
      Bård LindB
      Bård Lind
    • Bacnet4J v6 - Getting Started

      Hi.

      I'm trying to to a quite simple setup, yet not able to figure out how to get started.
      I am tring to create a client that can do COV from a device in the same network.

      I have tried to look at https://github.com/RadixIoT/BACnet4J/blob/master/src/test/java/com/serotonin/bacnet4j/LocalDeviceTest.java.
      Acutually I'm stuck in how to create a Local Device, and to do a whoIs request.
      Also what is the propper way to do COV subscription from versjon 6?

      Regards
      Bard Lind

      posted in BACnet4J general discussion
      Bård LindB
      Bård Lind