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

    Topics

    • J

      COV for Analog Input

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      5
      0 Votes
      5 Posts
      4k 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

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      2
      0 Votes
      2 Posts
      10k 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

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      12
      0 Votes
      12 Posts
      6k Views
      M
      Right you are. The change has been added to the code.
    • J

      PACS not implemented in BACnet4J?

      Watching Ignoring Scheduled Pinned Locked Moved BACnet4J general discussion
      4
      0 Votes
      4 Posts
      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!