• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. BigCat
    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
    B
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 4
    • Posts 19
    • Groups 0

    Topics

    • B

      Android App based on Modbus4J

      Watching Ignoring Scheduled Pinned Locked Moved Modbus4J general discussion
      4
      0 Votes
      4 Posts
      5k Views
      V
      I love the app. A nice feature for a future release would be to log data from the registers being read to a text file or something at a defined interval. very cool!
    • B

      Pluggable Exception Handler example

      Watching Ignoring Scheduled Pinned Locked Moved Modbus4J general discussion
      15
      0 Votes
      15 Posts
      8k Views
      M
      Good to hear. Thanks for following up.
    • B

      Inverted Byte order

      Watching Ignoring Scheduled Pinned Locked Moved Modbus4J general discussion
      4
      0 Votes
      4 Posts
      3k Views
      B
      Good to know, thanks! Looking at this made me wonder, using the convenience methods in the TCP master class, and the modbuslocator, is there currently a way to get multiple values. Looking at the getValue method, it appears like it utilizes the batch feature, but only with a single read (or multiple registers, but only up to the required number for the specified value type). For my app, the user sets the starting register/bit location, and the length they want to read, so I would ideally get some type of array back with the data in it. Then they can also select how to display that data (i.e. float, signed int, unsigned it, word swapped float, etc.) Sending that information to the locator and pulling it back out directly from it in that form would be handy. In general, I've really liked what you're doing here, and love some of the flexibility in this library over jamodbus (hence why I'm trying to adapt from it), but I'm just trying to get my head around everything, so forgive me if my questions are pretty noob-ish.
    • B

      Modbus4j on Android

      Watching Ignoring Scheduled Pinned Locked Moved Modbus4J general discussion
      7
      0 Votes
      7 Posts
      6k Views
      B
      Yeah, I think that will work. And then for my 'disconnect' button I'll just call the destroy, and re-instance the TCPmaster w/ a new init() if the user tries to re-connect. Thanks!