Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.51 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <title>Rpi Tank</title>
  5. <meta charset="UTF-8">
  6. <link rel="stylesheet" href="tank.css" type="text/css">
  7. </head>
  8. <body>
  9. <header>
  10. <h1>Raspberry Pie <img src="rpi-logo.png" alt="Rpi logo"> Tank Project</h1>
  11. <nav>
  12. <ul>
  13. <li><a href="#">Controls</a>
  14. <li><a href="#">Setting</a>
  15. <li><a href="#">Saved items</a>
  16. <li><a href="#">Hardware</a>
  17. <li><a href="#">About</a>
  18. </ul>
  19. </nav>
  20. </header>
  21. <main>
  22. <section id="camera">
  23. <img id="mjpeg_dest" alt="Camera" src="tank.jpg">
  24. <button id="camera_stop"> Stop camera </button>
  25. <button id="camera_nv"> Night vision </button>
  26. <button id="save_img"> Save image </button>
  27. <button id="save_video"> Save video </button>
  28. <button id="object_recognition"> Object recognition </button>
  29. </section>
  30. <section id="controls">
  31. <div id="speed">
  32. <h2>Speed: <span id="speed_value">2137</span></h2>
  33. <div class="slidecontainer">
  34. <input type="range" min="1" max="100" value="50" id="myRange">
  35. </div>
  36. </div>
  37. <div id="direction">
  38. <h2>Direction</h2>
  39. <button id="forward">↑</button>
  40. <button id="left">←</button>
  41. <button id="stop">⊠</button>
  42. <button id="right">→</button>
  43. <button id="reverse">↓</button>
  44. </div>
  45. </section>
  46. </main>
  47. <footer>
  48. <span class="info"> Camera </span>
  49. <span class="setting"> OFF </span>
  50. <span class="night_vision"> Night Vision </span>
  51. <span class="setting"> OFF </span>
  52. </footer>
  53. </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement