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.

  • Modbus Reg Write

    2
    0 Votes
    2 Posts
    2k Views
    JoelHaggarJ
    There are a couple setting that might help. Are you able to read this register as well? If not you might need to set the data point to be a write only rather than read and write. The other thing is on the data source setting try setting the Max Write Register count to 1. With modbus you can do a single write command or multiple write command. Mango will try and be as efficient as possible and some devices don't support the full modbus specification. Let me know if either of these help.
  • when I use report module,displayed like attachment.how to solve it ?

    3
    0 Votes
    3 Posts
    2k Views
    E
    If I in current version to remove report module and reinstall report module .will it be work normail?
  • why did display "A server error has occured"

    3
    0 Votes
    3 Posts
    2k Views
    E
    It is very stranger. I reset my computer and it is normal again.
  • Ascii file source, read binary value in file

    6
    0 Votes
    6 Posts
    2k Views
    phildunlapP
    Hey guys, sorry I never saw this... I took a bit of a hiatus. Yes you can do this with the ASCII file data source. Simply point the datasource at the file, configure a data point as follows: Point Identifier: Point Identifier Index: 2 Value Index: 1 Value Regex: (0|1)() So the trick here is to leave the point identifier totally empty and then capture an empty group at some point in our regex.
  • Modbus Publisher

    2
    0 Votes
    2 Posts
    2k Views
    JoelHaggarJ
    I just did a little test on this and it looks like you can only have one slaveID per port. There may also be a bug that prevents ports other than 502 being used. We'll look into that a bit more and get back to you.
  • Data Import

    1
    0 Votes
    1 Posts
    1k Views
    No one has replied
  • System Time

    5
    0 Votes
    5 Posts
    3k Views
    A
    @phildunlap Here is my solution maybe not the neatest script but it works var date = new Date(); minutes = date.getMinutes(); seconds = date.getSeconds(); hour = date.getHours(); year = date.getFullYear(); day = date.getDay(); month = date.getMonth(); dates = date.getDate(); if (minutes < 10) { min = "0" + minutes; } else { min = minutes; } if (day == 0) { strday = "Sunday"; } if (day == 1) { strday = "Monday"; } if (day == 2) { strday = "Tuesday"; } if (day == 3) { strday = "Wednesday"; } if (day == 4) { strday = "Thursday"; } if (day == 5) { strday = "Friday"; } if (day == 6) { strday = "Saturday"; } if (month == 0) { strmonth = "January"; } if (month == 1) { strmonth = "February"; } if (month == 2) { strmonth = "March"; } if (month == 3) { strmonth = "April"; } if (month == 4) { strmonth = "May"; } if (month == 5) { strmonth = "June"; } if (month == 6) { strmonth = "July"; } if (month == 7) { strmonth = "August"; } if (month == 8) { strmonth = "September"; } if (month == 9) { strmonth = "October"; } if (month == 10) { strmonth = "November"; } if (month == 11) { strmonth = "December"; } strDated = strday + "," + " " + dates + " " + strmonth + " " + year; strTimes = hour + ":" + min;
  • Thousands data point on the one data source

    2
    0 Votes
    2 Posts
    2k Views
    JoelHaggarJ
    If you want to send an email with your GUID to support at infiniteautmation.com we can provide you with a unrestricted trail license for OPC so you can test it out with all your tags. You can find the GUID on the Modules page inside Mango. Thanks, Joel.
  • Weather Forecast

    5
    0 Votes
    5 Posts
    3k Views
    phildunlapP
    @StephenVDK You can always just disregard a number of yweather:forecast lines until finding the days ahead that you're looking for. Some (?:<yweather:forecast[^\n]*\n){3}<yweather:forecast[^\n]*low="(\d*) for instance would be the fourth item, or the third day forecast. You could control it with the {1,2,3....}. I just recently requested adding capture group number to HTTP retriever specifically so that you could use backreferences on forecast information to make it feel like a reasonable regex.
  • TCP/IP Data Source, Talking to MOXA Serial RS232?

    6
    0 Votes
    6 Posts
    6k Views
    danD
    Hi Woody, thanks for that. I will investigate further. I think we'll definitely have more luck with the newer regs that support just straight MODBUS over IP, much easier to setup ;) Cheers Dan
  • Meta point using a string

    3
    0 Votes
    3 Posts
    2k Views
    L
    That was it . Good eye, Thanks for the help. Larry
  • Handling Bit Fields

    4
    0 Votes
    4 Posts
    2k Views
    JoelHaggarJ
    It's ok to use the same variable name in multiple meta data points as variable names are isolated to each script and not shared between them.
  • A server error has occurred

    3
    0 Votes
    3 Posts
    3k Views
    P
    Which error do you get a lot? the Timeout error? Does it make a difference if the alarms are acknowledged, or do they have to be purged? Do you ever get the 'A server error has occurred' pop-up dialog? Thanks.
  • Cannot execute point link because it is currently running

    3
    0 Votes
    3 Posts
    2k Views
    P
    Terry, thanks for your answer. Even though the target point sets in a second or two, three weeks ago I reduced the number of context updates that can possibly trigger the metadata point, and since then I have not seen this error.
  • read from file with date of today

    2
    0 Votes
    2 Posts
    1k Views
    S
    solved it with powershell powershell selects the file, mango reads out the needed values
  • One-time event detector

    3
    0 Votes
    3 Posts
    2k Views
    jeremyhJ
    OK thanks, that seems straightforward enough. For the record: I've created a high level detector on a kW measurement point that should fire when the customer connects for the first time. I also created an empty binary meta-point called 'one-time detector'. I set up my event detector to set this meta-point to 1 when the high kW condition triggers. On my 'one-time detector' point, I set an event handler to send an email when the point value is 1.
  • "users" section displays "Required Module MangoApi is not installed"

    8
    0 Votes
    8 Posts
    4k Views
    JoelHaggarJ
    Ok thanks, that makes sense. The dashboards module contains a lot of new JavaScript that we are using on the new HTM5 pages. The users section in Mango 2.6 has been redeveloped in HTML5 and uses JavaScript from the dashboards module. Thanks.
  • Reports

    4
    0 Votes
    4 Posts
    2k Views
    L
    I found it and the reports are working fine. logo.png was a blank file. o size......... replaced with a real file and it works. Thanks for your help. Larry
  • Version 2.6 - Brewers Dashboard License shutting down Mango

    3
    0 Votes
    3 Posts
    2k Views
    BGB
    Hello Joel, Thank you, that is indeed the case it seems. Thank you and your team for all the work on the production version. I have already shown this to some of our customers with favourable responses. p.s. I am only a consumer of beer and will leave the production to the experts... lol
  • downgrade to 2.5

    8
    0 Votes
    8 Posts
    3k Views
    S
    it runs fine. on that laptop is is also running sunny data control for the sma inverter and aurora communicator for the ABB pvi-2000 inverter. Both aplications ar communicating with their inverter, i just read out the logfile and publish that on my graphical screen. Mango also comunicate with a string of one wire devices. i am thinking of adding RAM and upgrade to a ssd. or replace the old amilio laptop for a dell e5500 laptop. i have to check how power hungry the dell is.