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.

  • Events Table refreshing

    4
    0 Votes
    4 Kiriman
    2k Lihat
    Jared WiltshireJ
    So you will need to add a custom AngularJS module as per this link - https://help.infiniteautomation.com/getting-started-with-a-user-module/ This component will just watch for new events of a certain level and play the sound, you can customize it to your needs. define(['angular', 'require'], function(angular, require) { 'use strict'; var userModule = angular.module('userModule', ['maUiApp']); userModule.component('eventAudio', { bindings: { audioFile: '@', eventLevel: '@' }, controller: ['maEvents', '$scope', function(maEvents, $scope) { this.$onInit = () => { maEvents.notificationManager.subscribe((event, mangoEvent) => { if (mangoEvent.alarmLevel === this.eventLevel) { new Audio(this.audioFile).play(); } }, $scope, ['RAISED']); }; }] }); return userModule; }); // define Use it like this <event-audio audio-file="/audio/critical.mp3" event-level="CRITICAL"></event-audio> If this is all too complicated, I might add something similar to this into the UI module for the next release so sit tight.
  • No or very small charts (in Watch List, data points, ...

    3
    0 Votes
    3 Kiriman
    2k Lihat
    philgdepP
    Hi @phildunlap , Thank's for the reply, somehow I figured it out... The easy explanation is a bit out any rational answer... => I have to use the grey cloud The DNS for our domain name is controlled by CloudFlare. And the traffic was directed through the 'wrong' path. "Orange cloud" (proxied) Load Balancers have an automatic TTL - this means that CloudFlare will announce CloudFlare IP addresses externally, but will protect (mask) your origin server IP addresses. Any changes to your Load Balancer will propagate within seconds inside Cloudflare, including any failover events. The primary benefit here is that external DNS resolver caches that do not respect short (e.g. 30s) TTLs will not impact the failover speed of your Load Balancer. "Grey cloud" (DNS only) Load Balancers may be configured with a TTL from 30 seconds to 10 minutes. CloudFlare will serve the addresses of the (healthy) origin servers directly but relies on DNS resolvers respecting the short TTL in order to re-query Cloudflare's DNS for an updated list of healthy addresses. Anyway, by using the orange cloud, all the charts were 100x200 px. and I have absolutely no clue why... Maybe your devs will laugh loud seeing this post. If anyone knows an explanation, I would be glad to know
  • What's up with V3's really slow watch lists?

    3
    0 Votes
    3 Kiriman
    2k Lihat
    B
    I tried it in Chrome and it worked great. I then tried it back in Firefox and it locked-up. However, once I updated to the latest version it seemed to be working fine, albeit a little slower than in Chrome. Sorry for the false alarm.
  • Allow event table access to customer using custom dashboard.

    4
    0 Votes
    4 Kiriman
    2k Lihat
    Jared WiltshireJ
    @ganeshvarahade said in Allow event table access to customer using custom dashboard.: @Jared-Wiltshire We are using Mango 3.1.1 , can we use event table in custom dashboard ? Yes, as I said above you need UI module v3.2.3 to customize the links though. I'd suggest upgrading to Mango 3.2.
  • Data points stop logging

    7
    0 Votes
    7 Kiriman
    2k Lihat
    phildunlapP
    Did you check the other tabs on the the internal page to see if those tasks are identified?
  • How to show average Line chart of multiple datapoints?

    6
    0 Votes
    6 Kiriman
    3k Lihat
    G
    Thank you so much @Jared-Wiltshire
  • Importing 6000 points from Excel

    6
    0 Votes
    6 Kiriman
    2k Lihat
    P
    I see .. when I copied the databases dir I did so with a sudo and so did that take ownership of those files then? I see the GUID has changed and .ok its working again thanks Joel. :)
  • Interval Logging of Meta Point Not Working

    6
    0 Votes
    6 Kiriman
    1k Lihat
    phildunlapP
    Aha! Certianly! Thanks for sharing the resolution.
  • Topik ini dipadam!

    1
    0 Votes
    1 Kiriman
    2 Lihat
    Tiada jawapan
  • Bacnet IP not being able to enter client...

    6
    0 Votes
    6 Kiriman
    2k Lihat
    phildunlapP
    Sorry I misspoke, it's in DefaultTransport:Outgoing:send From... if (targetNetworkNumber != Address.LOCAL_NETWORK && targetNetworkNumber != Address.ALL_NETWORKS && targetNetworkNumber != network.getLocalNetworkNumber()) { // Going to a specific remote network. Check if we know the router for it. linkService = networkRouters.get(targetNetworkNumber); if (linkService == null) handleException(new BACnetException( "Unable to find router to network " + address.getNetworkNumber().intValue())); } to... if (targetNetworkNumber != Address.LOCAL_NETWORK && targetNetworkNumber != Address.ALL_NETWORKS && targetNetworkNumber != network.getLocalNetworkNumber()) { // Going to a specific remote network. Check if we know the router for it. linkService = networkRouters.get(targetNetworkNumber); if (linkService == null) { handleException(new BACnetException( "Unable to find router to network " + address.getNetworkNumber().intValue())); return; } }
  • Zwave in m2m

    5
    0 Votes
    5 Kiriman
    2k Lihat
    P
    Hi, I test zwave module in Mango. To test I use: Z-Stick GEN5 AoenLabs RaspberryPi 2 Z-wave danfoss living connect-z thermostat. For now, I can scan network and see homeID and devices. All devices were included to home network before the tests. I can read battery levels, for now. I can't set temperature yet. I don't know how to do that, All I know, is that to set new setpoint command COMMAND_CLASS_THERMOSTAT_SETPOINT (0x43) must be sended. In point details window of zwave datasource I don't know what is "Instance" and "Index". Can someone explain this? Best regards,
  • Data file Data source - Tutorial or quick guide?

    5
    0 Votes
    5 Kiriman
    3k Lihat
    H
    Thanks for the reply Joel, I'll let you guys know if I have real trouble. Hayden
  • Mango with Raspberry pi and PLC

    13
    0 Votes
    13 Kiriman
    7k Lihat
    P
    Hi, If You ask about RS485 I assume that You want to communicate via Modbus RTU. In this case, with raspberry pi I prefer solution: Use usb/rs485 converter (like this https://www.amazon.com/JBtek-Converter-Adapter-ch340T-Supported/dp/B00NKAJGZM - it has drivers included into the kernel) or better - some industrial usb isolated usb/rs485 converter) To communicate with the PLC you have to know it's Modbus ID and registers addresses. What brand of PLC You want to communicate with? I use RPIs to communicate via rs485 with Power Meters and it works without problems. Best regards,
  • "Change" Event Detector - auto resolve?

    3
    0 Votes
    3 Kiriman
    1k Lihat
    S
    @phildunlap Thanks Phil, 'Do No Log' sounds like exactly what I need... thanks! Cheers! -Shaun
  • Can't access Mango ui page - need help

    9
    0 Votes
    9 Kiriman
    4k Lihat
    B
    Great. It's ok now. Thanks.
  • Default page to load

    4
    0 Votes
    4 Kiriman
    2k Lihat
    B
    Ok, got it. Thanks. I'm on Mango v3.2
  • Points don't seem to be in drop down list

    3
    0 Votes
    3 Kiriman
    1k Lihat
    phildunlapP
    Hi Tracey, It's really helpful to have a thread title. It's the field above the large text box for the body, above the buttons for text formatting and uploads.
  • TCP/IP data source setup value

    3
    0 Votes
    3 Kiriman
    2k Lihat
    phildunlapP
    Hi przemom, We released version 3.2.1 of the TCP/IP data source, which includes the changes from that issue to make it more robust. Give it a try!
  • Mango in productive environment

    Moved
    3
    0 Votes
    3 Kiriman
    1k Lihat
    F
    Thanks
  • Change Time Zone

    4
    0 Votes
    4 Kiriman
    2k Lihat
    phildunlapP
    Go to /system_settings.shtm in the "Mango ES Configuration" section use the timezone drop down to select a city whose timezone you wish to use, hit save! [image: r6N3gzw.png] .