index.html 4.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>IRremote Controller</title>
  6. </head>
  7. <body>
  8. <h1>IRremote Controller</h1>
  9. <h3>TV:</h3>
  10. <!--<p>
  11. &nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="window.location.href='action/power'">Power</button><br>
  12. <button type="button" onclick="window.location.href='action/back'">Back</button> <button type="button" onclick="window.location.href='action/home'">Home</button><br>
  13. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="window.location.href='action/up'">/\</button><br>
  14. &nbsp;<button type="button" onclick="window.location.href='action/left'"><</button> <button type="button" onclick="window.location.href='action/ok'">Ok</button> <button type="button" onclick="window.location.href='action/right'">></button><br>
  15. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="window.location.href='action/down'">\/</button><br>
  16. &nbsp;&nbsp;<button type="button" onclick="window.location.href='action/reload'">Reload</button> <button type="button" onclick="window.location.href='action/star'">*</button><br>
  17. <button type="button" onclick="window.location.href='action/rewind'"><<</button> <button type="button" onclick="window.location.href='action/play-pause'">Play/Pause</button> <button type="button" onclick="window.location.href='action/fast-forward'">>></button><br>
  18. <button type="button" onclick="window.location.href='action/vol+'">Vol +</button> <button type="button" onclick="window.location.href='action/mute'">Vol Mute</button> <button type="button" onclick="window.location.href='action/vol-'">Vol -</button><br>
  19. </p>-->
  20. <p>
  21. &nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="sendCommandTV('power')">Power</button><br>
  22. <button type="button" onclick="sendCommandTV('back')">Back</button> <button type="button" onclick="sendCommandTV('home')">Home</button><br>
  23. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="sendCommandTV('up')">/\</button><br>
  24. &nbsp;<button type="button" onclick="sendCommandTV('left')"><</button> <button type="button" onclick="sendCommandTV('ok')">Ok</button> <button type="button" onclick="sendCommandTV('right')">></button><br>
  25. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="sendCommandTV('down')">\/</button><br>
  26. &nbsp;&nbsp;<button type="button" onclick="sendCommandTV('reload')">Reload</button> <button type="button" onclick="sendCommandTV('star')">*</button><br>
  27. <button type="button" onclick="sendCommandTV('rewind')"><<</button> <button type="button" onclick="sendCommandTV('play-pause')">Play/Pause</button> <button type="button" onclick="sendCommandTV('fast-forward')">>></button><br>
  28. <button type="button" onclick="sendCommandTV('vol+')">Vol +</button> <button type="button" onclick="sendCommandTV('mute')">Vol Mute</button> <button type="button" onclick="sendCommandTV('vol-')">Vol -</button><br>
  29. </p>
  30. <h3>MOVIE BOX:</h3>
  31. <p>
  32. &nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="sendCommandMB('power')">Power</button><br>
  33. <button type="button" onclick="sendCommandMB('home')">Home</button> <button type="button" onclick="sendCommandMB('back')">Back</button><br>
  34. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="sendCommandMB('up')">/\</button><br>
  35. &nbsp;<button type="button" onclick="sendCommandMB('left')"><</button> <button type="button" onclick="sendCommandMB('ok')">Ok</button> <button type="button" onclick="sendCommandMB('right')">></button><br>
  36. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<button type="button" onclick="sendCommandMB('down')">\/</button><br>
  37. </p>
  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>