37 lines
872 B
HTML
37 lines
872 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
|
|
<title>PlanktonScope GUI v.1</title>
|
|
|
|
<!-- Bootstrap core CSS -->
|
|
|
|
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
|
|
<script type="text/javascript" src="pipeline.js"></script>
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<div>
|
|
nb_step
|
|
<input type="text" id="nb_step" value="1000"/>
|
|
orientation
|
|
<input type="text" id="orientation" value="up"/>
|
|
<button type="button" class="btn btn-primary" id="focus">Send</button>
|
|
</div>
|
|
volume(ml)
|
|
<input type="text" id="volume" value="1"/>
|
|
flowrate (ml/min) (from 0 to 20)
|
|
<input type="text" id="flowrate" value="3"/>
|
|
direction (foward or backward)
|
|
<input type="text" id="direction" value="foward"/>
|
|
<button type="button" class="btn btn-primary" id="pump">Send</button>
|
|
|
|
<div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|