├── .eslintrc ├── .gitignore ├── README.md ├── bin └── automation-bt-detect-devices ├── detect.js ├── identify.js ├── index.js └── package.json /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "airbnb-base" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/README.md -------------------------------------------------------------------------------- /bin/automation-bt-detect-devices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/bin/automation-bt-detect-devices -------------------------------------------------------------------------------- /detect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/detect.js -------------------------------------------------------------------------------- /identify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/identify.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paolotremadio/homebridge-automation-bluetooth-presence/HEAD/package.json --------------------------------------------------------------------------------