Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

This model will show and can change the set point of a vav.  It also shows the site, floor, and equip.  Must be placed on an equip.

Completed Model (Basic)

Download: SetPoint.zip

...

Code Block
linenumberstrue
<div class="fin fHt vertical s-width">
    {{#mySetPoint}}
	<div class=" fin horizontal center middle">
    <div class="small-button-top fin vertical middle center">{{equipRefDis}}</div>
    </div>
    <div class="fin horizontal mlt mlh">
    <div class="s-buttons s-minus fin vertical middle center" on-click="decrement">
        <strong>-</strong>
    </div>
    <div class="s-buttons s-label fin vertical middle center">
        <strong>{{curVal}}{{unit}}</strong><span class="subText fin middle center">{{navName}}</span>
    </div>
    <div class="s-buttons s-plus fin vertical middle center" on-click="increment">
        <strong>+</strong>
    </div>
    </div>
    <br>
    <div class=" fin horizontal center middle">
    <div class="small-button-left fin vertical middle center">{{siteRefDis}}</div>
    <div class="small-button-right fin vertical middle center">{{floorRefDis}}</div>
    </div>
    {{/mySetPoint}}
</div>

Lines 16 20 and 17 21 is where the site and floor are displayed.  siteRefDis and floorRefDis can be changed to another tag to be displayed, or if not wanted lines 17-21 can be removed to just display the setpoint with the plus and minus buttons.  Lines 3-5 show the equipRefDis(line 4) and can be changed or deleted as well

...