├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── api_classic.md ├── api_web-bluetooth.md ├── bower.json ├── circle.yml ├── dist ├── adapter-template.js ├── adapter.evothings.js ├── adapter.noble.js ├── api.classic.js ├── api.web-bluetooth.js ├── bluetooth.helpers.js ├── classic.evothings.min.js ├── classic.noble.min.js ├── web-bluetooth.evothings.min.js └── web-bluetooth.noble.min.js ├── examples ├── example_evothings.html ├── example_node_classic.js ├── example_node_eddystone.js ├── example_node_heartrate.js ├── example_node_selector.js ├── example_requirejs.html └── example_requirejs │ ├── main.js │ └── require.min.js ├── gulpfile.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .DS_Store 3 | node_modules 4 | *.sublime-* -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "validthis": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/README.md -------------------------------------------------------------------------------- /api_classic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/api_classic.md -------------------------------------------------------------------------------- /api_web-bluetooth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/api_web-bluetooth.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/bower.json -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/circle.yml -------------------------------------------------------------------------------- /dist/adapter-template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/adapter-template.js -------------------------------------------------------------------------------- /dist/adapter.evothings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/adapter.evothings.js -------------------------------------------------------------------------------- /dist/adapter.noble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/adapter.noble.js -------------------------------------------------------------------------------- /dist/api.classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/api.classic.js -------------------------------------------------------------------------------- /dist/api.web-bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/api.web-bluetooth.js -------------------------------------------------------------------------------- /dist/bluetooth.helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/bluetooth.helpers.js -------------------------------------------------------------------------------- /dist/classic.evothings.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/classic.evothings.min.js -------------------------------------------------------------------------------- /dist/classic.noble.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/classic.noble.min.js -------------------------------------------------------------------------------- /dist/web-bluetooth.evothings.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/web-bluetooth.evothings.min.js -------------------------------------------------------------------------------- /dist/web-bluetooth.noble.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/dist/web-bluetooth.noble.min.js -------------------------------------------------------------------------------- /examples/example_evothings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_evothings.html -------------------------------------------------------------------------------- /examples/example_node_classic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_node_classic.js -------------------------------------------------------------------------------- /examples/example_node_eddystone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_node_eddystone.js -------------------------------------------------------------------------------- /examples/example_node_heartrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_node_heartrate.js -------------------------------------------------------------------------------- /examples/example_node_selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_node_selector.js -------------------------------------------------------------------------------- /examples/example_requirejs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_requirejs.html -------------------------------------------------------------------------------- /examples/example_requirejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_requirejs/main.js -------------------------------------------------------------------------------- /examples/example_requirejs/require.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/examples/example_requirejs/require.min.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thegecko/bleat/HEAD/package.json --------------------------------------------------------------------------------