16 lines
476 B
HTML
16 lines
476 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Microdot GPIO Example</title>
|
|
</head>
|
|
<body>
|
|
<h1>Microdot GPIO Example</h1>
|
|
<form method="POST" action="">
|
|
<p>GPIO Pin: <input type="text" name="pin" size="3"></p>
|
|
<input type="submit" name="read" value="Read">
|
|
<input type="submit" name="set-low" value="Set Low">
|
|
<input type="submit" name="set-high" value="Set high">
|
|
</form>
|
|
</body>
|
|
</html>
|