選択できるのは25トピックまでです。
トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
15 行
332 B
15 行
332 B
<?php $page = 'home';
|
|
include "_start.php"; ?>
|
|
|
|
<h1>Motor Control</h1>
|
|
|
|
<div class="Box center">
|
|
<a class="button btn-blue" id="btn-rev">REV</a><span style="display:inline-block;width:2em"></span>
|
|
<a class="button btn-blue" id="btn-fwd">FWD</a>
|
|
</div>
|
|
|
|
<script>
|
|
$().ready(page_home.init);
|
|
</script>
|
|
|
|
<?php include "_end.php"; ?>
|
|
|