├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md ├── auto-merge.yml ├── dependabot.yml ├── stale.yml └── workflows │ ├── dependabot-auto-merge.yml │ └── test-and-release.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── .prettierrc.js ├── .releaseconfig.json ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG_OLD.md ├── LICENSE ├── README.md ├── admin ├── admin.d.ts ├── fully-tablet-control.png ├── img │ ├── Adapter_Offline.png │ ├── Device_test.png │ ├── Loading.png │ ├── browser-admin-login.png │ └── info-big.png ├── index_m.html ├── style.css ├── tablet-control.png ├── tsconfig.json └── words.js ├── io-package.json ├── lib ├── adapter-config.d.ts ├── object_definition.js └── tools.js ├── main.js ├── main.test.js ├── package.json ├── test ├── integration.js ├── mocha.setup.js ├── mocharc.custom.json ├── package.js └── tsconfig.json ├── tsconfig.check.json └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.github/auto-merge.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/dependabot-auto-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.github/workflows/dependabot-auto-merge.yml -------------------------------------------------------------------------------- /.github/workflows/test-and-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.github/workflows/test-and-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.releaseconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/.releaseconfig.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "dbaeumer.vscode-eslint" 4 | ] 5 | } -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "eslint.enable": true 3 | } -------------------------------------------------------------------------------- /CHANGELOG_OLD.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/CHANGELOG_OLD.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/README.md -------------------------------------------------------------------------------- /admin/admin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/admin.d.ts -------------------------------------------------------------------------------- /admin/fully-tablet-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/fully-tablet-control.png -------------------------------------------------------------------------------- /admin/img/Adapter_Offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/img/Adapter_Offline.png -------------------------------------------------------------------------------- /admin/img/Device_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/img/Device_test.png -------------------------------------------------------------------------------- /admin/img/Loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/img/Loading.png -------------------------------------------------------------------------------- /admin/img/browser-admin-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/img/browser-admin-login.png -------------------------------------------------------------------------------- /admin/img/info-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/img/info-big.png -------------------------------------------------------------------------------- /admin/index_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/index_m.html -------------------------------------------------------------------------------- /admin/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/style.css -------------------------------------------------------------------------------- /admin/tablet-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/tablet-control.png -------------------------------------------------------------------------------- /admin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/tsconfig.json -------------------------------------------------------------------------------- /admin/words.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/admin/words.js -------------------------------------------------------------------------------- /io-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/io-package.json -------------------------------------------------------------------------------- /lib/adapter-config.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/lib/adapter-config.d.ts -------------------------------------------------------------------------------- /lib/object_definition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/lib/object_definition.js -------------------------------------------------------------------------------- /lib/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/lib/tools.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/main.js -------------------------------------------------------------------------------- /main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/main.test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/package.json -------------------------------------------------------------------------------- /test/integration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/test/integration.js -------------------------------------------------------------------------------- /test/mocha.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/test/mocha.setup.js -------------------------------------------------------------------------------- /test/mocharc.custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/test/mocharc.custom.json -------------------------------------------------------------------------------- /test/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/test/package.js -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.check.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/tsconfig.check.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xXBJXx/ioBroker.fully-tablet-control/HEAD/tsconfig.json --------------------------------------------------------------------------------