• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. Mark
    3. Topics

    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
    M
    • Profile
    • Following 0
    • Followers 0
    • Topics 6
    • Posts 17
    • Best 0
    • Controversial 0
    • Groups 0

    Topics created by Mark

    • M

      Dashboard designer show units

      User help
      • • • Mark
      6
      0
      Votes
      6
      Posts
      493
      Views

      MattFoxM

      @Mark you can, just wrap in <span> tags, there are other ways, but depends how technical you want to be

      Fox

    • M

      Mqtt datasource command

      How-To
      • • • Mark
      4
      0
      Votes
      4
      Posts
      978
      Views

      MattFoxM

      1)make a virtual datasource binary datapoint, add it to the script context points. Tick the checkbox that this point triggers the script.

      we shall call the context point switch.
      Then add your mqtt point to the context. We shall call it toggle. It does not need the checkbox to the right filled. Ensure the mqtt point is settable
      This is the script.

      if(switch.value===true) { toggle.set("on"); } if(switch.value===false) { toggle.set("off"); }

      See how you go. I do not use the mqtt client myself, but generally all points can be set - some which send the value back out the data source. I am hoping this is the latter...

      Hope this helps

      Fox

    • M

      Modbus heatpump readout

      User help
      • • • Mark
      2
      0
      Votes
      2
      Posts
      947
      Views

      phildunlapP

      Hi Mark,

      The Modbus read data tool in Mango displays the register result in hexadecimal, so 0x37 is 55. Might the value have changed between the readings? You can use the point locator test tool if you want to decode the register by describing the type of data in the register. Another part of the mystery is that Mango begins its addressing at 0, where associating the values in 1025 and 1026 may suggest modscan uses a base address of 1.

      Edit: Also, I find it strange you say Modbus RTU when the screenshot from Mango is of an IP data source.

    • M

      Http sender 3th party

      How-To
      • • • Mark
      12
      0
      Votes
      12
      Posts
      3.6k
      Views

      MattFoxM

      The url is inside the get call. Not the host part of the header.
      You want to 'get' calll the page, you're calling the 192.168... at the root level of the server, not the relay page.

      Secondly, your context point var is not used to correlate to being on or off. Since the point is an alphanumeric and not a numeric/binary, your parameters should be:

      var parameters = { "turn": info }

      You're calling a script but I think you are unaware of how everything works. I take it it has been a long time since you've done this.

    • M

      Zigbee module for mango 3.3

      User help
      • • • Mark
      1
      0
      Votes
      1
      Posts
      867
      Views

      No one has replied