├── controll-back ├── .gitignore ├── controllers │ ├── apps.js │ ├── music.js │ └── power.js ├── index.js ├── package-lock.json ├── package.json ├── routes │ └── commands.js └── yarn.lock ├── controll-front └── controll-next │ ├── .eslintrc.json │ ├── .gitignore │ ├── README.md │ ├── components │ └── buttom │ │ └── button.js │ ├── constants │ └── constants.js │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ ├── _app.js │ ├── _document.js │ ├── api │ │ └── hello.js │ └── index.js │ ├── postcss.config.js │ ├── public │ ├── Remote.png │ ├── chrome.png │ ├── favicon.ico │ ├── icon-192x192.png │ ├── icon-256x256.png │ ├── icon-384x384.png │ ├── icon-512x512.png │ ├── manifest.json │ ├── minus.png │ ├── music.png │ ├── next.png │ ├── play.png │ ├── plus.png │ ├── power.png │ ├── prev.png │ ├── screenShot.png │ ├── sw.js │ ├── sw.js.map │ ├── vercel.svg │ ├── workbox-74d02f44.js │ └── workbox-74d02f44.js.map │ ├── styles │ ├── Home.module.css │ └── globals.css │ ├── tailwind.config.js │ └── yarn.lock └── default.txt /controll-back/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.vscode -------------------------------------------------------------------------------- /controll-back/controllers/apps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/controllers/apps.js -------------------------------------------------------------------------------- /controll-back/controllers/music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/controllers/music.js -------------------------------------------------------------------------------- /controll-back/controllers/power.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/controllers/power.js -------------------------------------------------------------------------------- /controll-back/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/index.js -------------------------------------------------------------------------------- /controll-back/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/package-lock.json -------------------------------------------------------------------------------- /controll-back/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/package.json -------------------------------------------------------------------------------- /controll-back/routes/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/routes/commands.js -------------------------------------------------------------------------------- /controll-back/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-back/yarn.lock -------------------------------------------------------------------------------- /controll-front/controll-next/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /controll-front/controll-next/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/.gitignore -------------------------------------------------------------------------------- /controll-front/controll-next/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/README.md -------------------------------------------------------------------------------- /controll-front/controll-next/components/buttom/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/components/buttom/button.js -------------------------------------------------------------------------------- /controll-front/controll-next/constants/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/constants/constants.js -------------------------------------------------------------------------------- /controll-front/controll-next/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/next.config.js -------------------------------------------------------------------------------- /controll-front/controll-next/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/package-lock.json -------------------------------------------------------------------------------- /controll-front/controll-next/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/package.json -------------------------------------------------------------------------------- /controll-front/controll-next/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/pages/_app.js -------------------------------------------------------------------------------- /controll-front/controll-next/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/pages/_document.js -------------------------------------------------------------------------------- /controll-front/controll-next/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/pages/api/hello.js -------------------------------------------------------------------------------- /controll-front/controll-next/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/pages/index.js -------------------------------------------------------------------------------- /controll-front/controll-next/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/postcss.config.js -------------------------------------------------------------------------------- /controll-front/controll-next/public/Remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/Remote.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/chrome.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/favicon.ico -------------------------------------------------------------------------------- /controll-front/controll-next/public/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/icon-192x192.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/icon-256x256.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/icon-384x384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/icon-384x384.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/icon-512x512.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/manifest.json -------------------------------------------------------------------------------- /controll-front/controll-next/public/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/minus.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/music.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/next.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/play.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/plus.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/power.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/prev.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/screenShot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/screenShot.png -------------------------------------------------------------------------------- /controll-front/controll-next/public/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/sw.js -------------------------------------------------------------------------------- /controll-front/controll-next/public/sw.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/sw.js.map -------------------------------------------------------------------------------- /controll-front/controll-next/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/vercel.svg -------------------------------------------------------------------------------- /controll-front/controll-next/public/workbox-74d02f44.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/workbox-74d02f44.js -------------------------------------------------------------------------------- /controll-front/controll-next/public/workbox-74d02f44.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/public/workbox-74d02f44.js.map -------------------------------------------------------------------------------- /controll-front/controll-next/styles/Home.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/styles/Home.module.css -------------------------------------------------------------------------------- /controll-front/controll-next/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/styles/globals.css -------------------------------------------------------------------------------- /controll-front/controll-next/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/tailwind.config.js -------------------------------------------------------------------------------- /controll-front/controll-next/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/controll-front/controll-next/yarn.lock -------------------------------------------------------------------------------- /default.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Axiean/mtRemote/HEAD/default.txt --------------------------------------------------------------------------------