├── .gitignore ├── .npmignore ├── index.js ├── mock-firmata.js ├── mock-pins.js ├── mock-serialport.js ├── package.json ├── readme.md └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/ 3 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/index.js -------------------------------------------------------------------------------- /mock-firmata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/mock-firmata.js -------------------------------------------------------------------------------- /mock-pins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/mock-pins.js -------------------------------------------------------------------------------- /mock-serialport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/mock-serialport.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/readme.md -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwaldron/mock-firmata/HEAD/test/index.js --------------------------------------------------------------------------------