diff options
author | Christian Franke <nobody@nowhere.ws> | 2014-01-24 01:01:38 +0100 |
---|---|---|
committer | Christian Franke <nobody@nowhere.ws> | 2014-01-24 01:01:38 +0100 |
commit | 573a798156423707ca770c19c9cfb0b7bb6a5808 (patch) | |
tree | 735e765f9881b57f3747b9c417af64d3b9b77163 /cam_public | |
parent | 2f6e8a407e3b0e17d3f50f0d28ec08cea26778d9 (diff) |
Relay control signals
Diffstat (limited to 'cam_public')
-rw-r--r-- | cam_public/index.html | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/cam_public/index.html b/cam_public/index.html index 8bdde6e..790efca 100644 --- a/cam_public/index.html +++ b/cam_public/index.html @@ -1,2 +1,14 @@ -<h1>Hello, World!</h1> -<img src="../stream.mjpeg"></img> +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"></meta> + <script src="main.js"></script> + </head> + <body> + <img src="../stream.mjpeg"></img><br/> + <input type="submit" value="<" id="left"></input> + <input type="submit" value="A" id="up"></input> + <input type="submit" value="V" id="down"></input> + <input type="submit" value=">" id="right"></input> + </body> +</html> |