index.html 3.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="x-ua-compatible" content="ie=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>goRoku Controller</title>
  8. <!--<link rel="stylesheet" href="static/css/foundation.css">-->
  9. <link rel="stylesheet" href="css/foundation.css">
  10. </head>
  11. <body>
  12. <div class="grid-x">
  13. <h1 class="large-12 medium-12 small-12 cell text-center">goRoku Controller</h1>
  14. <div class="large-12 medium-12 small-12 cell text-center">
  15. <h3>TV:</h3>
  16. <p>
  17. <button type="button" class="alert button" onclick="sendCommandTV('power')">Power</button><br>
  18. <button type="button" class="button" onclick="sendCommandTV('back')">Back</button> <button type="button" class="button" onclick="sendCommandTV('home')">Home</button><br>
  19. <button type="button" class="button" onclick="sendCommandTV('up')">^</button><br>
  20. <button type="button" class="button" onclick="sendCommandTV('left')"><</button> <button type="button" class="success button" onclick="sendCommandTV('ok')">Ok</button> <button type="button" class="button" onclick="sendCommandTV('right')">></button><br>
  21. <button type="button" class="button" onclick="sendCommandTV('down')">V</button><br>
  22. <button type="button" class="button" onclick="sendCommandTV('reload')">🔁</button> <button type="button" class="button" onclick="sendCommandTV('star')">*</button><br>
  23. <button type="button" class="button" onclick="sendCommandTV('rewind')"><<</button> <button type="button" class="button" onclick="sendCommandTV('play-pause')">Play/Pause</button> <button type="button" class="button" onclick="sendCommandTV('fast-forward')">>></button><br>
  24. <button type="button" class="button" onclick="sendCommandTV('vol+')">Vol +</button> <button type="button" class="button" onclick="sendCommandTV('mute')">Vol Mute</button> <button type="button" class="button" onclick="sendCommandTV('vol-')">Vol -</button><br>
  25. </p>
  26. </div>
  27. <!-- <div class="large-6 medium-6 small6 cell text-center">
  28. <h3>MOVIE BOX:</h3>
  29. <p>
  30. <button type="button" class="alert button" onclick="sendCommandMB('power')">Power</button><br>
  31. <button type="button" class="button" onclick="sendCommandMB('home')">Home</button> <button type="button" class="button" onclick="sendCommandMB('back')">Back</button><br>
  32. <button type="button" class="button" onclick="sendCommandMB('up')">/\</button><br>
  33. <button type="button" class="button" onclick="sendCommandMB('left')"><</button> <button type="button" class="success button" onclick="sendCommandMB('ok')">Ok</button> <button type="button" class="button" onclick="sendCommandMB('right')">></button><br>
  34. <button type="button" class="button" onclick="sendCommandMB('down')">\/</button><br>
  35. </p>
  36. </div> -->
  37. </div>
  38. <script>
  39. function sendCommandTV(cmd) {
  40. const xhttp = new XMLHttpRequest();
  41. xhttp.onload = function() {}
  42. xhttp.open("GET", "tv/"+cmd, true);
  43. xhttp.send();
  44. }
  45. /*function sendCommandMB(cmd) {
  46. const xhttp = new XMLHttpRequest();
  47. xhttp.onload = function() {}
  48. xhttp.open("GET", "mb/"+cmd, true);
  49. xhttp.send();
  50. }*/
  51. </script>
  52. </body>
  53. </html>