• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. jeremie
    3. Topics

    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
    J
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 15
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by jeremie

    • J

      COV for Analog Input

      BACnet4J general discussion
      • • • jeremie
      5
      0
      Votes
      5
      Posts
      3.7k
      Views

      A

      It's just that the software will not accept a COV subscription request on its analogs.

      Thanks,

    • J

      Remote devices of a local device

      BACnet4J general discussion
      • • • jeremie
      2
      0
      Votes
      2
      Posts
      9.6k
      Views

      J

      Hi Matthew!,

      Playing with services, I have discovered a potential none expected behaviour, with the list of remote devices of a local device.

      First, this list can contain remotes devices doubles.
      For example, try this :

      localDevice.sendBroadcast(0xBAC0, new WhoIsRequest(null, null)); localDevice.sendBroadcast(0xBAC0, new WhoIsRequest(null, null)); for (RemoteDevice d : localDevice.getRemoteDevices()) { System.out.println("Device found : " + d); }

      Moreover, I do not think it is normal to always have the full remote devices list available, after a call of WhoHasRequest method :

      localDevice.sendBroadcast(0xBAC0, new WhoIsRequest(null, null)); localDevice.sendBroadcast(0xBAC0,new WhoHasRequest(null, new ObjectIdentifier(ObjectType.binaryInput, 4097))); for (RemoteDevice d : localDevice.getRemoteDevices()) { System.out.println("Device found : " + d); }

      In conclusion, we always add remote devices in the list.
      Therefore, can we imagine to add code for cleaning the remote devices list, before each call of WhoIsRequest, WhoHasRequest, etc. ?

      Thank you in advance!

      Jérémie

    • J

      Exception reading the properties of an AccessDoor Bacnet Object

      BACnet4J general discussion
      • • • jeremie
      12
      0
      Votes
      12
      Posts
      5.5k
      Views

      M

      Right you are. The change has been added to the code.

    • J

      PACS not implemented in BACnet4J?

      BACnet4J general discussion
      • • • jeremie
      4
      0
      Votes
      4
      Posts
      3.3k
      Views

      J

      Wow, at least 3 years to approve :-/

      I pick up the date in this official document : http://www.bacnet.org/Bibliography/BACnet-Today-06/28889-Ritter.pdf

      Thank you for these precisions Matthew!