├── .github ├── FUNDING.yml └── workflows │ ├── fediverse-action.yml │ ├── node.js.yml │ ├── nodepackage.yml │ └── npm-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── appveyor.yml ├── binding.gyp ├── examples ├── le-advertisement-test.js ├── le-connection-test.js ├── le-scan-test.js ├── list-devices-test.js └── mgmt-test.js ├── index.d.ts ├── index.js ├── lib ├── native.js ├── unsupported.js └── usb.js ├── package.json ├── src ├── BluetoothHciSocket.cpp └── BluetoothHciSocket.h └── test.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/fediverse-action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/.github/workflows/fediverse-action.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.github/workflows/nodepackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/.github/workflows/nodepackage.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/appveyor.yml -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/binding.gyp -------------------------------------------------------------------------------- /examples/le-advertisement-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/examples/le-advertisement-test.js -------------------------------------------------------------------------------- /examples/le-connection-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/examples/le-connection-test.js -------------------------------------------------------------------------------- /examples/le-scan-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/examples/le-scan-test.js -------------------------------------------------------------------------------- /examples/list-devices-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/examples/list-devices-test.js -------------------------------------------------------------------------------- /examples/mgmt-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/examples/mgmt-test.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/index.js -------------------------------------------------------------------------------- /lib/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/lib/native.js -------------------------------------------------------------------------------- /lib/unsupported.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/lib/unsupported.js -------------------------------------------------------------------------------- /lib/usb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/lib/usb.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/package.json -------------------------------------------------------------------------------- /src/BluetoothHciSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/src/BluetoothHciSocket.cpp -------------------------------------------------------------------------------- /src/BluetoothHciSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/src/BluetoothHciSocket.h -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abandonware/node-bluetooth-hci-socket/HEAD/test.js --------------------------------------------------------------------------------