summaryrefslogtreecommitdiffstats
path: root/htdocs/app/gpio-list/index.html
blob: 6c0cf1a3dc4d0ce54a24a9e4f70ba9626605fd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
	<meta name="viewport" content = "height = device-height, width = 420, user-scalable = no" /> 
	<title>WebIOPi | GPIO List</title>
	<script type="text/javascript" src="/webiopi.js"></script>
	<script type="text/javascript">
	webiopi().ready(function() {
		webiopi().Expert().createList("content");
		w().refreshGPIO(true);
	});
	</script>
	<style type="text/css">
	button {
		margin: 2px 2px 2px 2px;
		width: 50px;
	}
	
	.Description {
		display: inline;
	}
	</style>
</head>
<body>
<div id="content"></div>
</body>
</html>