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

    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

    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
    • RE: Http sender

      First create the graphical view you want to share.
      Then set its properties to be public acessible: "Anonymous access" must be "read" or "set".

      Then use code below and adjust it to fit to your needs, something like src=yourdomain.com/public_view.htm?viewId=yourviewID

      
      <div style="position:relative;width:80px;height:150px">
      <iframe frameBorder="0" style="position:absolute;width:450px;height:300px" scrolling="no" allowTransparency="true"
              src="http://mango.serotoninsoftware.com/test/public_view.htm?viewId=3"></iframe>
      </div>
      
      posted in User help
      F
      fmunhoz
    • RE: Http sender

      You'll need an HTTP receiver listening for your publisher connection.

      So, publishers are often used to create redundant servers or to feed another system with your data.

      If you want just to share the information in other site (like a panel or frame) you may use public views.

      BR

      posted in User help
      F
      fmunhoz
    • RE: Http sender

      Not sure about what you are trying to do, but

      If you are trying to get an image available on internet take a look at HTTP Image data source.

      the data source requests information from HTTP-enabled devices, 
      and then saves the images to a protected area of the file system
      

      If you are trying to accept data delivered to the system using HTTP GET or POST methods take a look at HTTP receiver data source.

      Instead if you are trying to send data from Mango take a look at Publishers.

      BR

      posted in User help
      F
      fmunhoz
    • RE: M2M2 license update

      You must register you instance first.
      Make sure you have the correct address in env.properties file and click on the link "Update License" in "Modules" page.

      BR

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • RE: M2M2 System Settings

      Ok, it works!

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • RE: M2M2 license update

      Thank you, I was looking for that file but did not realize that there was a link there.

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • RE: M2M2 System Settings

      Core version is 0.6.0 and theese are the installed modules:
      meta 0.9.0
      modbus 0.9.0
      virtualDS 0.9.0
      watchlists 0.9.2

      Do I need an specific module to access the system settings?

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • RE: M2M2 System Settings

      I can not access the system settings, here attached you can find the error message.

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • M2M2 System Settings

      I can not access the system settings, here attached you can find the error message.

      Attachment: download link

      posted in Mango Automation general Discussion
      F
      fmunhoz
    • RE: M2M2 license update

      I have registered my M2M2 instance but could not get rid of the message "This instance is running in free mode. Time remaining: more than 7 hour(s)"

      posted in Mango Automation general Discussion
      F
      fmunhoz