Files
Transfer-Station/POCloud/Control.html
Patrick McDonagh b8c9890d34 Adds a bunch of Meshify stuff.
Can be started and stopped from Meshify
2017-06-27 16:29:26 -05:00

39 lines
1.8 KiB
HTML

<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<div class="row row-flex">
<div class="col-xs-12 text-center">
<h1>Control</h1>
</div>
<div class='col-xs-6 text-center box-me'>
<!-- Use data-confirm-message to set the exact message that pops up in the alert window. -->
<a href="#"
data-confirm-message="Are you sure you want to remotely start the transfer station?"
data-refreshpause="1"
data-command=""
data-staticsend="{'tag': 'cmd_Start', 'val': 1}"
data-channelId="<%= channels["transferstation.writeplctag"].channelId %>"
data-techname="<%=channels["transferstation.writeplctag"].techName %>"
data-name="<%= channels["transferstation.writeplctag"].name%>"
data-nodechannelcurrentId="<%= channels["transferstation.writeplctag"].nodechannelcurrentId %>"
id="<%= channels["transferstation.writeplctag"].channelId %>"
class="btn btn-large btn-theme animated confirmstatic pad15">
Start</a>
</div>
<div class='col-xs-6 text-center box-me'>
<a href="#"
data-confirm-message="Are you sure you want to remotely stop the transfer station?"
data-refreshpause="1"
data-command=""
data-staticsend="{'tag': 'cmd_Stop', 'val': 1}"
data-channelId="<%= channels["transferstation.writeplctag"].channelId %>"
data-techname="<%=channels["transferstation.writeplctag"].techName %>"
data-name="<%= channels["transferstation.writeplctag"].name%>"
data-nodechannelcurrentId="<%= channels["transferstation.writeplctag"].nodechannelcurrentId %>"
id="<%= channels["transferstation.writeplctag"].channelId %>"
class="btn btn-large btn-theme animated confirmstatic pad15">
Stop</a>
</div>
</div>