├── .gitignore ├── CNAME ├── LICENSE.md ├── README.md ├── css ├── keyboard.css └── style.css ├── images ├── demo.gif ├── favicon.png └── share.png ├── index.html ├── js ├── bluetooth.js ├── keyboard.js ├── main.js ├── nordicdfu.js ├── repl.js └── update.js ├── robots.txt └── sitemap.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/.gitignore -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | repl.siliconwitchery.com -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/README.md -------------------------------------------------------------------------------- /css/keyboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/css/keyboard.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/css/style.css -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/images/favicon.png -------------------------------------------------------------------------------- /images/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/images/share.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/index.html -------------------------------------------------------------------------------- /js/bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/js/bluetooth.js -------------------------------------------------------------------------------- /js/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/js/keyboard.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/js/main.js -------------------------------------------------------------------------------- /js/nordicdfu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/js/nordicdfu.js -------------------------------------------------------------------------------- /js/repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/js/repl.js -------------------------------------------------------------------------------- /js/update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/js/update.js -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/robots.txt -------------------------------------------------------------------------------- /sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siliconwitchery/web-bluetooth-repl/HEAD/sitemap.xml --------------------------------------------------------------------------------