├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── board └── index.html ├── css ├── index.css └── spike.png ├── index.html ├── micro-repl.js ├── mpy ├── boards │ ├── nano.py │ ├── pico.py │ ├── portal.py │ └── zero.py ├── events.py ├── index.html ├── index.py ├── index.toml └── loop.py ├── package.json ├── serial.js ├── serial └── index.html ├── update.cjs ├── x.js └── xterm └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | board/ 2 | css/ 3 | mpy/ 4 | xterm/ 5 | index.html 6 | update.cjs 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/README.md -------------------------------------------------------------------------------- /board/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/board/index.html -------------------------------------------------------------------------------- /css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/css/index.css -------------------------------------------------------------------------------- /css/spike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/css/spike.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/index.html -------------------------------------------------------------------------------- /micro-repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/micro-repl.js -------------------------------------------------------------------------------- /mpy/boards/nano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/boards/nano.py -------------------------------------------------------------------------------- /mpy/boards/pico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/boards/pico.py -------------------------------------------------------------------------------- /mpy/boards/portal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/boards/portal.py -------------------------------------------------------------------------------- /mpy/boards/zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/boards/zero.py -------------------------------------------------------------------------------- /mpy/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/events.py -------------------------------------------------------------------------------- /mpy/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/index.html -------------------------------------------------------------------------------- /mpy/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/index.py -------------------------------------------------------------------------------- /mpy/index.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/index.toml -------------------------------------------------------------------------------- /mpy/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/mpy/loop.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/package.json -------------------------------------------------------------------------------- /serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/serial.js -------------------------------------------------------------------------------- /serial/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/serial/index.html -------------------------------------------------------------------------------- /update.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/update.cjs -------------------------------------------------------------------------------- /x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/x.js -------------------------------------------------------------------------------- /xterm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/micro-repl/HEAD/xterm/index.html --------------------------------------------------------------------------------