├── .editorconfig ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── examples ├── servo.js └── servo.ts ├── index.ts ├── package.json ├── src └── pca9685.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist/ 2 | /node_modules/ 3 | *.log 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | # .gitignore without /dist/ 2 | /node_modules/ 3 | *.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/README.md -------------------------------------------------------------------------------- /examples/servo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/examples/servo.js -------------------------------------------------------------------------------- /examples/servo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/examples/servo.ts -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/package.json -------------------------------------------------------------------------------- /src/pca9685.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/src/pca9685.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/101100/pca9685/HEAD/yarn.lock --------------------------------------------------------------------------------