├── .babelrc ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── gitify-docs.js ├── jsdoc.conf.json ├── lib ├── dc.js ├── index.js ├── pwm.js ├── servo.js └── stepper.js ├── package.json └── test ├── .eslintrc.json ├── dc.js ├── index.js ├── pwm.js ├── servo.js ├── stepper.js ├── stepsequences ├── doubleback.json ├── doublefwd.json ├── interleavedback.json ├── interleavedfwd.json ├── micro16fwd.json ├── micro8back.json ├── micro8fwd.json ├── release.json ├── singleback.json ├── singlefwd.json └── throttling.json ├── stubi2c.js ├── stubindex.js ├── stubindexfailer.js └── stubpwm.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/_config.yml -------------------------------------------------------------------------------- /gitify-docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/gitify-docs.js -------------------------------------------------------------------------------- /jsdoc.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/jsdoc.conf.json -------------------------------------------------------------------------------- /lib/dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/lib/dc.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/pwm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/lib/pwm.js -------------------------------------------------------------------------------- /lib/servo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/lib/servo.js -------------------------------------------------------------------------------- /lib/stepper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/lib/stepper.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/dc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/dc.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/index.js -------------------------------------------------------------------------------- /test/pwm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/pwm.js -------------------------------------------------------------------------------- /test/servo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/servo.js -------------------------------------------------------------------------------- /test/stepper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepper.js -------------------------------------------------------------------------------- /test/stepsequences/doubleback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/doubleback.json -------------------------------------------------------------------------------- /test/stepsequences/doublefwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/doublefwd.json -------------------------------------------------------------------------------- /test/stepsequences/interleavedback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/interleavedback.json -------------------------------------------------------------------------------- /test/stepsequences/interleavedfwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/interleavedfwd.json -------------------------------------------------------------------------------- /test/stepsequences/micro16fwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/micro16fwd.json -------------------------------------------------------------------------------- /test/stepsequences/micro8back.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/micro8back.json -------------------------------------------------------------------------------- /test/stepsequences/micro8fwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/micro8fwd.json -------------------------------------------------------------------------------- /test/stepsequences/release.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/release.json -------------------------------------------------------------------------------- /test/stepsequences/singleback.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/singleback.json -------------------------------------------------------------------------------- /test/stepsequences/singlefwd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/singlefwd.json -------------------------------------------------------------------------------- /test/stepsequences/throttling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stepsequences/throttling.json -------------------------------------------------------------------------------- /test/stubi2c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stubi2c.js -------------------------------------------------------------------------------- /test/stubindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stubindex.js -------------------------------------------------------------------------------- /test/stubindexfailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stubindexfailer.js -------------------------------------------------------------------------------- /test/stubpwm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jcane86/motor-hat/HEAD/test/stubpwm.js --------------------------------------------------------------------------------