• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. mmmoczj

    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
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 12
    • Best 0
    • Controversial 0
    • Groups 0

    mmmoczj

    @mmmoczj

    0
    Reputation
    273
    Profile views
    12
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    mmmoczj Unfollow Follow

    Latest posts made by mmmoczj

    • RE: How do I get all objects from RemoteDevice

      Thank you very much

      posted in BACnet4J general discussion
      M
      mmmoczj
    • How do I get all objects from RemoteDevice

      How do I get all objects from RemoteDevice

      posted in BACnet4J general discussion
      M
      mmmoczj
    • RE: How do two devices that are not on the same LAN communicate

      Thank you for your reply. But can BBMD be software?
      0_1564542314090_无标题.png

      posted in BACnet4J general discussion
      M
      mmmoczj
    • RE: How do two devices that are not on the same LAN communicate

      Thank you very much for your help. I still have a question. Is BBMD hardware or software?

      posted in BACnet4J general discussion
      M
      mmmoczj
    • RE: How do two devices that are not on the same LAN communicate

      @mattfox I would like to ask how to set up a static route, is there an example to look at?

      posted in BACnet4J general discussion
      M
      mmmoczj
    • How do two devices that are not on the same LAN communicate

      Hello, everyone, now I have a problem. When two bacnet devices are not in the same LAN, how can two devices communicate through IP and port

      posted in BACnet4J general discussion
      M
      mmmoczj
    • How to solve the unrecognized service problem

      Everyone, please help me. When I use readPropertyMultiple service, there is a problem of unrecognized service
      0_1564228416955_Clipboard - July 27, 2019 7_51 PM.png

      posted in BACnet4J general discussion
      M
      mmmoczj
    • The test tool could not find the device instantiated by Java

      Hello, I have encountered a problem here that has not been solved for a long time. I instantiated a device through the following code, but I could not find this device through the test tool. I hope you can help me, thank you

      public class Device {
          LocalDevice localDevice;
      
          public void init() throws Exception {
              IpNetwork network = new IpNetworkBuilder()
                      .withBroadcast("192.168.33.255", 24)
                      .withLocalBindAddress("192.168.33.101")
                      .withPort(47999)
                      .build();
              Transport transport = new DefaultTransport(network);
              localDevice = new LocalDevice(1996, transport);
              localDevice.initialize();
          }
      
          public static void main(String[] args) throws Exception {
              new Device().init();
          }
      }
      
      posted in BACnet4J general discussion
      M
      mmmoczj
    • RE: Who can give me a simple server-side code example

      @terrypacker Thank you for your help, but I want to get RemoteDevice through IP. There is no such function in those files.I wanted to get the device that way, but this is the old version,

      RemoteDevice d = localDevice.findRemoteDevice(
                          new Address(0, IpNetworkUtils.toOctetString("192.168.33.53:8099")), 10086);
      
      posted in BACnet4J general discussion
      M
      mmmoczj
    • RE: Who can give me a simple server-side code example

      @craigweb How can I get the remoteDevice

      posted in BACnet4J general discussion
      M
      mmmoczj