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.

  • 0 Votes
    2 Posts
    956 Views
    terrypackerT
    @gbccccc first you need to define what "new slave is started successfully means". If just binding to the port and waiting for connections is enough then you can assume that if you call the method and a ModbusInitException is thrown then it is not running. Otherwise it is bound to the port and waiting for connections. If you want to know that something is connected you could extend the TcpSlave class like this: public class MonitoredTcpSlave extends TcpSlave { public MonitoredTcpSlave(int port, boolean encapsulated) { super(port, encapsulated); } public boolean hasConnection() { return !listConnections.isEmpty(); } } As a last resort you could create your own TcpSlave by extending com.serotonin.modbus4j.ModbusSlaveSet.ModbusSlaveSet
  • Can we please get copy and paste back for data sources?

    1
    1 Votes
    1 Posts
    606 Views
    No one has replied
  • Once again MQTT over HTTP

    22
    0 Votes
    22 Posts
    15k Views
    W
    Any update on this? Or are there any other clean solutions? My intention is to publish to AWS IoT.
  • 0 Votes
    1 Posts
    722 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • Gradle Bacnet and Modbus Dependencies

    2
    0 Votes
    2 Posts
    1k Views
    CraigWebC
    No Gradle is not supported, I don't see this being supported any time soon.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • New User Forced Password Change or Invitation Email

    3
    0 Votes
    3 Posts
    2k Views
    cbyrneC
    @craigweb Ah awesome! Thanks Craig.
  • Watch list builder in 'tags' setting error implement after saving

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • Watchlist tag name selection display too wide, overlapping,

    2
    1 Votes
    2 Posts
    1k Views
    TurboT
    I agree with this-- This is an issue I see as well. Would nice to have another format for this thing. Cheers, -Greg
  • Radius Authentication

    4
    0 Votes
    4 Posts
    2k Views
    Jared WiltshireJ
    I guess I was getting at - what industry are you in and what type of equipment are we talking about? Feel free to send a private message.
  • 0 Votes
    5 Posts
    2k Views
    C
    maybe a limit could be implemented so if "select all" was clicked it would only select up to 30.
  • Machine Learning Module

    1
    1 Votes
    1 Posts
    1k Views
    No one has replied
  • Pages sorted by folder in the dashboard designer or editor selector

    4
    0 Votes
    4 Posts
    2k Views
    CraigWebC
    The best advice I can give is that the drop-down on the dashboard designer is filterable. Just start typing your pages name.
  • 1 Votes
    3 Posts
    1k Views
    Jared WiltshireJ
    v3.7.x will automatically set the instance ID.
  • Maximum of events/alarms

    2
    0 Votes
    2 Posts
    2k Views
    phildunlapP
    Hi Ralf, We have explored adding the ability to set event detectors to not raise the event more than once in some amount of time, but that feature was not merged in at the time so hasn't become part of Mango yet. I think what you're requesting would be something like that, but for data source events, which is a good idea if it is a good idea to do it for event detectors. Thanks for the suggestion!
  • Text rendering suffix

    2
    0 Votes
    2 Posts
    1k Views
    phildunlapP
    Hi Ralf, You are right! Thanks for bringing this to our attention! Edit: Posted a little fast... Here's the git issue: https://github.com/infiniteautomation/ma-dashboards/issues/299 You could work around this by using a JSON or CSV import, or using the old UI.
  • Group objects into a user component

    9
    0 Votes
    9 Posts
    3k Views
    Jared WiltshireJ
    https://forum.infiniteautomation.com/topic/4423/styling-a-custom-component-in-usermodule/9 https://forum.infiniteautomation.com/topic/4410/bug-with-amcharts-preview-works-but-page-view-does-not/8 https://forum.infiniteautomation.com/topic/3509/is-a-directive-or-ability-to-enable-and-disable-points-from-the-new-v3-ui-available-or-in-works/12 https://forum.infiniteautomation.com/topic/4216/video-component-codecs/5 https://forum.infiniteautomation.com/topic/3522/momentary-button/10 https://forum.infiniteautomation.com/topic/3273/slider-step-as-a-binary/2 https://forum.infiniteautomation.com/topic/2986/events-table-refreshing/4 https://forum.infiniteautomation.com/topic/2982/problem-with-assigning-value-using-mypoint-renderedvalue/2 https://forum.infiniteautomation.com/topic/2957/how-to-show-average-line-chart-of-multiple-datapoints/5 https://forum.infiniteautomation.com/topic/2862/bar-chart-category-as-x-axis/10 https://forum.infiniteautomation.com/topic/2831/publishing-live-dashboard/10 https://forum.infiniteautomation.com/topic/2900/dynamic-text-book-input/5 https://forum.infiniteautomation.com/topic/2844/how-to-use-json-receiver-data-point/5
  • Multiple Set Points in Event Handler

    6
    0 Votes
    6 Posts
    2k Views
    MattFoxM
    @phildunlap said in Multiple Set Points in Event Handler: it doesn't sound to me like that'd solve how his users are going to identify points they want to control and control them easily. That's going to be an issue only his implementation of a dashboard / Mango could completely solve. Agreed, but as he was only able to give an example without greater in depth information on the desired outcome, only wishing to be able to add multiple points to a context. I'd give him what I knew was freely available. I do not believe he wants to go into the grit of a custom dashboard page at this time. However, if that changes I'll be more than happy to assist. Fox
  • Pop up window (face plate)

    20
    1 Votes
    20 Posts
    7k Views
    Jared WiltshireJ
    For anyone that finds this thread, you can create a dialog window in Mango 3.6 very easily - <ma-button label="Show dialog" ng-click="showDialog = {}"></ma-button> <ma-dialog show-dialog="showDialog"> <div>This is the dialog content</div> </ma-dialog>