├── .gitignore ├── LICENSE ├── README.md ├── arduino └── webusb-lol.ino ├── serial.js └── web ├── index.html ├── lol.css └── lol.js /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/README.md -------------------------------------------------------------------------------- /arduino/webusb-lol.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/arduino/webusb-lol.ino -------------------------------------------------------------------------------- /serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/serial.js -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/web/index.html -------------------------------------------------------------------------------- /web/lol.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/web/lol.css -------------------------------------------------------------------------------- /web/lol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edwinm/WebUSB/HEAD/web/lol.js --------------------------------------------------------------------------------