123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="utf-8">
- <title>👾 Control Panel (`・ω・´)</title>
- <script src="./jquery.min.js"></script>
- <link rel="stylesheet" href="./main.css"/>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- </head>
- <body>
- <!-- Main contents of the webapp -->
- <div id="menu">
- <div class="container">
- <span class="logo">(`・ω・´)</span>
- </div>
- <button onclick="toggleSideMenu()" class="togglemenu button">
- <img class="btnicon" src="img/menu.svg">
- </button>
- </div>
- <div class="container">
- <div class="header">
- <img src="img/checkmark.svg" >
- <span>Useless Robot Connected<br>
- <small>IP Address: <span id="ipaddr">Unknown</span></small></span>
- </div>
- <div class="divider"></div>
- <h3>Quick Actions</h3>
- <p>Display Emoji</p>
- <select class="styled-dropdown">
- <option value="option1">Option 1</option>
- <option value="option2">Option 2</option>
- <option value="option3">Option 3</option>
- <option value="option4">Option 4</option>
- </select>
-
- <!-- Other Actions -->
- <div class="action-controls">
- <button id="coverbtn" class="button">
- <div class="header">
- <img src="img/open.svg" >
- <span>Open Cover<br>
- </div>
- </button>
- <button id="pusherbtn" class="button">
- <div class="header">
- <img src="img/push.svg" >
- <span>Push Switch<br>
- </div>
- </button>
- </div>
- <!-- Direction Controls -->
- <div class="direction-controls">
- <button id="upbtn" class="button">
- <img src="img/up.svg">
- </button>
- <button id="downbtn" class="button">
- <img src="img/down.svg">
- </button>
- <button id="leftbtn" class="button">
- <img src="img/left.svg">
- </button>
- <button id="rightbtn" class="button">
- <img src="img/right.svg">
- </button>
- </div>
- </div>
- </div>
-
-
- <!-- Side bar for other functions-->
- <div id="sidebarWrapper">
- <div id="blurcover"></div>
- <div id="sidebar">
- <div class="item">
- <b>Advance Functions</b>
- </div>
- <div class="divider"></div>
- <a class="clickable item" href="animator.html">
- <img src="img/animation.svg"> Animation Editor
- </a>
- <a class="clickable item" >
- <img src="img/action.svg"> Action Programmer
- </a>
- <a class="clickable item" href="sd.html">
- <img src="img/folder.svg"> SD Browser
- </a>
- <a class="clickable item">
- <img src="img/code.svg"> Developer Tools
- </a>
- <div class="item">
- <small>Cute Useless Robot v1.0</small>
- </div>
- </div>
- </div>
- <script>
- let coverOpen = false;
- /* Action APIS */
- function movePusher(angle=0){
- $.get(`/api/ctr/pusher?angle=${angle}`, function(data){
- });
- }
- function moveCover(open=true){
- $.get(`/api/ctr/cover?state=${open?"open":"close"}`, function(data){
- });
- }
- function moveDirection(direction, on=false){
- $.get(`/api/ctr/move?direction=${direction}&state=${on?"start":"stop"}`, function(data){
- })
- }
- /* Handle Buttons Operations */
- function openCoverStart(event) {
- event.preventDefault();
- console.log('Open Cover Start');
-
- }
- function openCoverEnd(event) {
- event.preventDefault();
- console.log('Open Cover End');
- if (!coverOpen){
- moveCover(true);
- coverOpen = true;
- }else{
- moveCover(false);
- coverOpen = false;
- }
- }
- function pushSwitchStart(event) {
- event.preventDefault();
- console.log('Push Switch Start');
- movePusher(140);
- }
- function pushSwitchEnd(event) {
- event.preventDefault();
- console.log('Push Switch End');
- // Add your code here
- movePusher(0);
- }
- // Direction Controls
- function upStart(event) {
- event.preventDefault();
- console.log('Up Start');
- moveDirection("up", true);
- }
- function upEnd(event) {
- event.preventDefault();
- console.log('Up End');
- moveDirection("up", false);
- }
- function downStart(event) {
- event.preventDefault();
- console.log('Down Start');
- moveDirection("down", true);
- }
- function downEnd(event) {
- event.preventDefault();
- console.log('Down End');
- moveDirection("down", false);
- }
- function leftStart(event) {
- event.preventDefault();
- console.log('Left Start');
- moveDirection("left", true);
- }
- function leftEnd(event) {
- event.preventDefault();
- console.log('Left End');
- moveDirection("left", false);
- }
- function rightStart(event) {
- event.preventDefault();
- console.log('Right Start');
- moveDirection("right", true);
- }
- function rightEnd(event) {
- event.preventDefault();
- console.log('Right End');
- moveDirection("right", false);
- }
- /* Button Press event handlers */
- // Bind events to Action Controls
- $('#coverbtn').on('mousedown touchstart', openCoverStart);
- $('#coverbtn').on('mouseup touchend', openCoverEnd);
- $('#pusherbtn').on('mousedown touchstart', pushSwitchStart);
- $('#pusherbtn').on('mouseup touchend', pushSwitchEnd);
- // Bind events to Direction Controls
- $('#upbtn').on('mousedown touchstart', upStart);
- $('#upbtn').on('mouseup touchend', upEnd);
- $('#downbtn').on('mousedown touchstart', downStart);
- $('#downbtn').on('mouseup touchend', downEnd);
- $('#leftbtn').on('mousedown touchstart', leftStart);
- $('#leftbtn').on('mouseup touchend', leftEnd);
- $('#rightbtn').on('mousedown touchstart', rightStart);
- $('#rightbtn').on('mouseup touchend', rightEnd);
- /* Side menu */
- function toggleSideMenu(){
- var left = $('#sidebar').offset().left; // Get the calculated left position
- if (left >= window.innerWidth || left == 0){
- //side bar is hidden
- $("#sidebarWrapper").fadeIn('fast');
- $("#sidebar").css({left:window.innerWidth + "px"}).animate({"left": (window.innerWidth - $('#sidebar').width())+ "px"}, "fast", function(){
-
- });
- }else{
- //side bar is shown
- $("#sidebar").css({left:left}).animate({"left": window.innerWidth + "px"}, "fast", function(){
- $("#sidebarWrapper").fadeOut('fast');
- });
- }
-
-
- }
- $("#blurcover").on("click", function(){
- toggleSideMenu();
- })
- //Get the device IP address
- $.get("/api/ipaddr", function(data){
- $("#ipaddr").text(data.ip);
- })
- </script>
- </body>
- </html>
|