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

    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
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 1
    • Posts 2
    • Best 0
    • Controversial 0
    • Groups 0

    skodan

    @skodan

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

    skodan Unfollow Follow

    Latest posts made by skodan

    • RE: "Hello World" BACNet device

      Thank you, will try this. Have moved forward with my project (simulation of offices/SCADA/ICS systems) but parked the BACnet connection, will work it into the backlog.

      posted in BACnet4J general discussion
      S
      skodan
    • "Hello World" BACNet device

      Hi, I'm trying to get a minimum BACNet device going but it doesn't seem to respond. The code is as small as I could make it:

      LocalDevice dev = new LocalDevice(76, new DefaultTransport(new IpNetwork("192.168.2.255", 47808, "192.168.2.104", "255.255.255.0", 0, false)));
      BACnetObject obj = createAnalogValue(1);
      dev.addObject(obj);
      dev.initialize();
      

      When I try to "ping" it with a tool like:

      bacnet-stack-0.8.3/bin/bacwi
      

      nothing happens.
      I'm certain I'm doing something stupid but I can't find any example or even something similar to this in the test directory. Any help to get me started is appreciated.

      posted in BACnet4J general discussion
      S
      skodan