├── .gitignore ├── Arduino └── bb_ble │ └── bb_ble.ino ├── LICENSE ├── README.md └── node.js ├── nrf.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node.js/node_modules/ 2 | 3 | -------------------------------------------------------------------------------- /Arduino/bb_ble/bb_ble.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandeepmistry/arduino-nRF24L01-BLE/HEAD/Arduino/bb_ble/bb_ble.ino -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandeepmistry/arduino-nRF24L01-BLE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandeepmistry/arduino-nRF24L01-BLE/HEAD/README.md -------------------------------------------------------------------------------- /node.js/nrf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandeepmistry/arduino-nRF24L01-BLE/HEAD/node.js/nrf.js -------------------------------------------------------------------------------- /node.js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandeepmistry/arduino-nRF24L01-BLE/HEAD/node.js/package.json --------------------------------------------------------------------------------