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.

  • Editing a publisher

    3
    0 Votes
    3 Posts
    2k Views
    P
    Perfect thanks this worked. I had a disabled data source on the cloud with xid's same as the new ones coming from the ES so I had to remove these and it recreated them in the persistent source, perfect.
  • Bulk configuration of devices/datapoints

    4
    0 Votes
    4 Posts
    2k Views
    A
    Thanks, I will take a look at these options.
  • Filter for point values?

    7
    0 Votes
    7 Posts
    3k Views
    R
    Thanks it works fine! I use auto-update so I need live data. Just add "array.slice(1,-1) and remove virtual data.
  • Send a password every Five min

    6
    0 Votes
    6 Posts
    3k Views
    phildunlapP
    In the last image you posted, the points' variable names are p385 and p386 but in the script body they're being referred to as passwordPointp385 and passwordPointp386, so that is why you got the reference error. As Craig said you'll want to use the actual hexidecimal password (or if it's just a number remove the 0x before the number for decimal) instead of 0xdeadbeef, which is just one of the many things which can be spelled in hexidecimal. if the customer change the current password, how we will get the new hex value? I will appreciate so much your support You will be told the value they changed it to, I would expect, then you could change it. If you want to, you could store the password in a point and then send the value of the point. Then when the password changes you just set a new value to the point.
  • Meta Point Help

    5
    0 Votes
    5 Posts
    3k Views
    P
    Thanks for helping out @CraigWeb @phildunlap @Jared-Wiltshire , I couldn't get it to work with a Persistent TCP data on central server, so set up on an ES on Site and it seems to be tracking good. All the 4's and 1's are lining up where I expect them. Thanks Again. I got this to work: var prevVal = p709.lastValue(2); var thisVal = p709.lastValue(1); var nextVal = p709.lastValue(); if (thisVal >= prevVal && thisVal >= nextVal) { // peak return 4; } else if (thisVal >= prevVal && thisVal < nextVal) { // still climbing return 3; } else if (thisVal < prevVal && thisVal < nextVal) { // trough return 1; } else { // falling return 2; } [image: y0VY4J0.png]
  • How to Add a Html link in Graphic Views

    4
    0 Votes
    4 Posts
    2k Views
    phildunlapP
    Yes, it is possible to have a hyperlink via the HTML component, by using the HTML to create the link as I did in my last post. It is also possible to embed another page into an HTML component via an iframe.
  • ma-point-value: number formatting

    10
    0 Votes
    10 Posts
    5k Views
    B
    Correct! and point well taken - absolutely dumb mistake.
  • Access to User Profile

    3
    0 Votes
    3 Posts
    2k Views
    BGB
    Hello Terry, I hope you had a good Christmas. Thank you for your answer. It is not crucial to get us running on Mango 3 but would be nice. I can foresee problem with our customers changing things with out realising it. Cheers Brian
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    12 Views
    No one has replied
  • NoSQL Offsite Backup

    2
    0 Votes
    2 Posts
    2k Views
    phildunlapP
    Hi fishfacs, There are a lot of services that can do offsite backups for you! We use iDrive a fair amount, but you can certainly assess your needs and the service available to you, which may mean another backup service, something like google drive, or even just a USB stick (for issues of computer failure, not adequate for the site catching fire) is another layer of separation between the original copy of the data and its backup. Almost all of the automating of invoking the service (or just scp'ing to the local fireproof computer) is done in cron tabs, usually, regardless of the service to be used. Edit: If your installation is on windows, I'm not as familiar with scheduling tasks, but I'm sure there is some kind of task scheduler to be had.
  • 0 Votes
    8 Posts
    3k Views
    P
    Perfect Thanks
  • How to divide or multiply a SNMP Value

    13
    0 Votes
    13 Posts
    5k Views
    J
    Thanks so much, with Your script, now it is working... it is the most important thing, because the customer is testing this Scada platform. Soon We will start checking what happen with this controller and them kind of SNMP Data. Again, thanks for Your support
  • Create a new numeric Datapoints from alphanumeric datapoint

    7
    0 Votes
    7 Posts
    2k Views
    J
    Thanks so much, You are right, we check it and it work. Thank You The other script... will be for the oficial integration. till now we are showing to the customer that the platform can work with their controller
  • Dynamic Pages and Data Point values

    3
    0 Votes
    3 Posts
    2k Views
    phildunlapP
    Hi Dominik, Thanks for sharing the resolution!
  • Watchlist Data Source XID Parameter

    3
    0 Votes
    3 Posts
    2k Views
    P
    Thanks Jared, That does the Trick
  • Very Basic Dashboard Designer Help

    13
    0 Votes
    13 Posts
    5k Views
    BGB
    Thank you Jared.
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Joining datasources

    8
    0 Votes
    8 Posts
    3k Views
    P
    Thanks Phil.
  • "SNMP Host Testing"

    9
    0 Votes
    9 Posts
    3k Views
    phildunlapP
    Hi Jorge, You are right with alphanumeric type i got the values... now i need to check why with another type as octetct string didnt work. Octet String would only be a set type (for writing data out), and that point. The MIB you posted said it's read-only, so I'm not sure any set type would be able to set a value to it. I would have expected Numeric to work as a data type for the OID you posted in the original image, too.
  • Weather Data Source

    5
    0 Votes
    5 Posts
    2k Views
    P
    Thanks all, This has been very helpful.