• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. fmunhoz

    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
    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 28
    • Best 0
    • Controversial 0
    • Groups 0

    fmunhoz

    @fmunhoz

    0
    Reputation
    916
    Profile views
    28
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    fmunhoz Unfollow Follow

    Latest posts made by fmunhoz

    • RE: Interactive graphical view

      I think you may create a custom page, you should start look at CustomViewExample.jsp.

      posted in User help
      F
      fmunhoz
    • RE: Step by step to build Mango

      If you have the sources look at this topic.

      http://mango.serotoninsoftware.com/forum/posts/list/268.page#1223

      If not, try ScadaBR.

      posted in BACnet4J general discussion
      F
      fmunhoz
    • RE: OPC connection

      It seems that Mango M2M and Mango M2M2 are already retired and with no stable version and also no sources, so You'd better using Scadabr, it is a fork from Mango.
      Scadabr's forum is only in portuguese but you can post english messages there.
      Their suport is not good as the Mango used to be but there are sources available and it seems to work fine. There are lot of bugs also but the team is still active.

      http://sourceforge.net/projects/scadabr

      Also take a look at this:

      http://sourceforge.net/projects/scadabr/files/Software/Docs/OPC Configuration ScadaBR.pdf/download

      and this

      http://mango.serotoninsoftware.com/forum/posts/list/15/599.page

      posted in User help
      F
      fmunhoz
    • RE: Here are some view component examples

      Very useful examples, I would like to set an RTC clock using two select combobox: Hours 0-23 and Minutes 0-59.
      The datapoint must be set in seconds, so I need two combos performing some scripting like get the value of hours3600 plus minutes60.
      I am trying but could not do it yet.
      Here is my code, it works outside mango, but could not set the datapoint from this, anyone could help?

      
      <script language="JavaScript">
      
      function checar() {
      
      campo1 = document.form.select1;
      campo2 = document.form.select2;
      
      if(campo1.value!="") {
      valor1=campo1.value;
      } else {
      valor1=""; 
      }
      
      
      if(campo2.value!="") {
      valor2=campo2.value;
      } else {
      valor2=""; 
      }
      
      um = valor1*3600; // hour to seconds
      dois = valor2*60; // minutes to seconds
      totalSec = um+dois;
      
      if(um=="" && dois=="") {
      document.form.total.value=""; 
      } else {
      document.form.total.value=totalSec; 
      //mango.view.setPoint("+ point.id +", \""+ pointComponent.id +"\", "+totalSec+" )'>"; 
      }
      
      }
      
      </script>
      
      
      <form name="form">
      <select name="select1" onChange="checar()">
      <option></option>
      <option value="1">1</option>
      <option value="0">...</option>
      <option value="23">23</option>
      </select>
      
      <select name="select2" onChange="checar()">
      <option></option>
      <option value="1">1</option>
      <option value="0">...</option>
      <option value="59">59</option>
      </select>
      <input type="text" name="total" value="">
      </form> 
      
      
      posted in User help
      F
      fmunhoz
    • RE: Remote viewing of graphic views

      Also make sure you have allowed an exception to the firewall.

      posted in User help
      F
      fmunhoz
    • RE: HTTP Retriever Stops Working [update: all data sources hang not just HTTP]

      What database are you using, Derby or MySQL?

      posted in User help
      F
      fmunhoz
    • RE: Invalid slave id

      As I recall Modbus only has an 8-bit address, so one master can only talk to 255 slaves via 1 port, so valid addresses are in the range 0..247 where 0 is used as a broadcast address.

      However you can use another port, though.

      If have any doubts about it I recommend you google for modbus documentation.

      posted in Modbus4J general discussion
      F
      fmunhoz
    • RE: M2M vs. M2M2

      hmmm interesting, thank you craig for making it clear for us, actually english is my second language :)

      Anyway, will M2M2 be open source?

      I guess the answer is not and if so what will be the future of Mango M2M?

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • RE: Http sender

      That's it, you are almost there.

      Actually I think (not sure) you can use the unique ID as a graphical view ID, but if have not changed it should look like GV_123456.

      Anyway, you can also find (and it works) the graphical view ID by acessing it from your Mango instance and looking at the URL of your browser. You'll see something like http://192.168.1.16:8080/mango/views.shtm?viewId=1

      BR

      posted in User help
      F
      fmunhoz
    • RE: M2M vs. M2M2

      I can't see enough developers to develop and maintain a open source mango.

      Actually there is an existing fork, called ScadaBR, and I believe they are going fast and on the right way.

      It's heavilly based on mango but has lot of other great features.

      posted in Mango Automation general Discussion
      F
      fmunhoz