• Recent
    • Tags
    • Popular
    • Register
    • Login
    1. Home
    2. sean
    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
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 27
    • Posts 57
    • Groups 0

    Topics

    • seanS

      How to use MySQL store pointvalues ?

      Watching Ignoring Scheduled Pinned Locked Moved User help
      1
      0 Votes
      1 Posts
      369 Views
      No one has replied
    • seanS

      Mango crash after nightly purge

      Watching Ignoring Scheduled Pinned Locked Moved User help
      1
      0 Votes
      1 Posts
      363 Views
      No one has replied
    • seanS

      Watchlist User Permissions

      Watching Ignoring Scheduled Pinned Locked Moved User help
      3
      0 Votes
      3 Posts
      667 Views
      MattFoxM
      @sean does the user have read permission for the datasource? Fox
    • seanS

      how to get PermissionHolder ?

      Watching Ignoring Scheduled Pinned Locked Moved User help
      1
      0 Votes
      1 Posts
      477 Views
      No one has replied
    • seanS

      How to query Value?

      Watching Ignoring Scheduled Pinned Locked Moved User help
      2
      0 Votes
      2 Posts
      767 Views
      MattFoxM
      @sean You cannot query values per se, that's not the intended purpose of a time series DB. One suggestion I have is generating values and filtering the output based upon the provided timeframe, the input field, and displaying those timestamps for those records entered. The other is having a dedicated virtual datasource of virtual points whose Xids align with the accessCardID numbers and updating the corresponding datapoint everytime that accessCardID is entered into the system... Fox
    • seanS

      Quest About Restful API

      Watching Ignoring Scheduled Pinned Locked Moved User help
      2
      0 Votes
      2 Posts
      711 Views
      CraigWebC
      @sean Are you providing a JWT key in the request ?
    • seanS

      point set timestamp

      Watching Ignoring Scheduled Pinned Locked Moved User help
      8
      0 Votes
      8 Posts
      2k Views
      seanS
      @CraigWeb mango version is 3.7.12 this datapoint is temperature sensor point so, recorde is normaly 2x °C so 4376.54 and 459.62 is incorrect, so I want to reset value or delete this 2 values in timestamp [PointValueTime(22.6@2023/05/24 13:30:12.836), PointValueTime(4376.54@2023/05/24 13:35:12.836), PointValueTime(459.62@2023/05/24 13:40:12.836), PointValueTime(22.8@2023/05/24 13:45:12.836), PointValueTime(22.886666666666667@2023/05/24 13:50:12.836)] time = 1684906212836 , point= PointValueTime(22.6@2023/05/24 13:30:12.836) time = 1684906512836 , point= PointValueTime(4376.54@2023/05/24 13:35:12.836) time = 1684906812836 , point= PointValueTime(459.62@2023/05/24 13:40:12.836) time = 1684907112836 , point= PointValueTime(22.8@2023/05/24 13:45:12.836) time = 1684907412836 , point= PointValueTime(22.886666666666667@2023/05/24 13:50:12.836)
    • seanS

      About magetpointvalue array's question

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      8
      0 Votes
      8 Posts
      2k Views
      MattFoxM
      Anytime
    • seanS

      Data Point Value

      Watching Ignoring Scheduled Pinned Locked Moved User help
      6
      0 Votes
      6 Posts
      1k Views
      MattFoxM
      I am with Craig now that I can see what you are trying to do. The rackspaces can be defined in a json store like he says and then pulled with a <ma-json-store> Fox
    • seanS

      Point variable use index

      Watching Ignoring Scheduled Pinned Locked Moved User help
      8
      0 Votes
      8 Posts
      1k Views
      MattFoxM
      You are over complicating it. Use what I wrote originally as your template and rather than adding html and trying to make angular js evaluate it. $sce is for outputting html, not another directive. I should have looked more closely at what you are doing.... increment a counter then make it ng-repeat n times depending on how big your number value is. app.component("pointCom", { bindings: { point: "<", qty: "@", min: "@", max: "@" }, controller: dataController, controllerAs: "dc", template:` <span>Render</span> <div ng-repeat="idx in dc.sour track by $index"> <ma-get-point-value point-xid="DP_{{idx}}_Meter_kWh" point="dc.pts['c'+idx+'_Meter_kWh']"></ma-get-point-value> <ma-get-point-value point-xid="DP_{{idx}}_Meter_V" point="dc.pts['c'+idx+'_Meter_V']"></ma-get-point-value> <ma-get-point-value point-xid="DP_{{idx}}_Meter_A" point="dc.pts['c'+idx+'_Meter_A']"></ma-get-point-value> </div> ` }); dataController.$inject = ["$scope"] function dataController($scope){ let dc = this let P = dc.point let Q = dc.qty let min = dc.min let max = dc.max let num = 0 this.$onChanges = function() { let p = dc.point dc.sour = [] max = dc.max num = dc.min console.log(school) if (max !== undefined){ Q = max } else { Q = dc.qty } if (p !== undefined){ for (let i=0; i < Q; i++){ num = Number(num) num = num.pad(3) dc.sour.push(num) } console.log(dc.sour) } } Number.prototype.pad = function(size) { let s = String(this) while (s.length < (size || 2)) {s = "0" + s;} return s } } Try that and see how you go. Haven't tested this Fox
    • seanS

      Quest about MailingListDao

      Watching Ignoring Scheduled Pinned Locked Moved User help
      1
      0 Votes
      1 Posts
      615 Views
      No one has replied
    • seanS

      About Delay quest?

      Watching Ignoring Scheduled Pinned Locked Moved Mango feedback
      1
      0 Votes
      1 Posts
      582 Views
      No one has replied
    • seanS

      Question about User Module

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      2
      0 Votes
      2 Posts
      1k Views
      MattFoxM
      As shown in the API docs, use scope.point.setValue(false)
    • seanS

      in 3.6.1 Chart decimal number question

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      3
      0 Votes
      3 Posts
      1k Views
      seanS
      @craigweb Thanks. It's work !
    • seanS

      Question about duration

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      4
      0 Votes
      4 Posts
      2k Views
      CraigWebC
      Hi Sean 1.On your original point you must make then event detector with your 2 minute duration. 2. Then create a new binary virtual point. 3. go to event handler page and make a event handler like the picture. use the meta point that you created. [image: tZ7ewyr.jpg] 4. Now use <ma-get-point-value> on the new meta point and use that for your dashboard logic.
    • seanS

      Quest about value range average ?

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      3
      0 Votes
      3 Posts
      2k Views
      seanS
      @craigweb Yes it work!
    • seanS

      Question about page include

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      13
      0 Votes
      13 Posts
      4k Views
      seanS
      @craigweb Thanks so much. It work.
    • seanS

      Question about audio

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      5
      0 Votes
      5 Posts
      2k Views
      seanS
      @jared-wiltshire Thank Jared.
    • seanS

      about link to hash

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      5
      0 Votes
      5 Posts
      2k Views
      Jared WiltshireJ
      I'm not sure what the question is @sean . If you want to implement something your self you can use a user module.
    • seanS

      About pie chart & webfont

      Watching Ignoring Scheduled Pinned Locked Moved Dashboard Designer & Custom AngularJS Pages
      3
      0 Votes
      3 Posts
      1k Views
      seanS
      @phildunlap Thank you Phildunlap it's work.