├── .gitignore ├── Readme.md ├── init.js ├── keyboard ├── Readme.md └── app.js ├── package.json ├── src ├── primary_banner.jpg └── slider_header.gif └── test-device └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/Readme.md -------------------------------------------------------------------------------- /init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/init.js -------------------------------------------------------------------------------- /keyboard/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/keyboard/Readme.md -------------------------------------------------------------------------------- /keyboard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/keyboard/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/package.json -------------------------------------------------------------------------------- /src/primary_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/src/primary_banner.jpg -------------------------------------------------------------------------------- /src/slider_header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/src/slider_header.gif -------------------------------------------------------------------------------- /test-device/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoRoboto/mi-band2-scripts/HEAD/test-device/test.js --------------------------------------------------------------------------------