You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							20 lines
						
					
					
						
							497 B
						
					
					
				
			
		
		
	
	
							20 lines
						
					
					
						
							497 B
						
					
					
				<?php $page = 'home';
 | 
						|
include "_start.php"; ?>
 | 
						|
 | 
						|
<h1>Ovládání motoru</h1>
 | 
						|
 | 
						|
<div class="Box center">
 | 
						|
	<a class="button btn-blue" id="btn-rev"><<</a>   
 | 
						|
	<a class="button btn-red" id="btn-stop">Stop</a>   
 | 
						|
	<a class="button btn-blue" id="btn-fwd">>></a>
 | 
						|
</div>
 | 
						|
 | 
						|
<div class="Box center">
 | 
						|
	<input type="range" id="control-range" value="0" min="-100" max="100" step="0.1">
 | 
						|
</div>
 | 
						|
 | 
						|
<script>
 | 
						|
	$().ready(page_home.init);
 | 
						|
</script>
 | 
						|
 | 
						|
<?php include "_end.php"; ?>
 | 
						|
 |