├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── Adafruit_BLE_Firmata.cpp ├── Adafruit_BLE_Firmata.h ├── Adafruit_BLE_Firmata_Boards.h ├── LICENSE.txt ├── README.md ├── examples ├── BluefruitLE_nrf51822 │ ├── BluefruitConfig.h │ └── BluefruitLE_nrf51822.ino ├── CircuitPlayground_nrf51822 │ ├── BluefruitConfig.h │ └── CircuitPlayground_nrf51822.ino ├── Firmata_nRF8001 │ ├── BluefruitConfig.h │ └── Firmata_nRF8001.ino └── StandardFirmata │ ├── LICENSE.txt │ ├── Makefile │ └── StandardFirmata.ino ├── keywords.txt └── library.properties /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | release.sh 3 | -------------------------------------------------------------------------------- /Adafruit_BLE_Firmata.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/Adafruit_BLE_Firmata.cpp -------------------------------------------------------------------------------- /Adafruit_BLE_Firmata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/Adafruit_BLE_Firmata.h -------------------------------------------------------------------------------- /Adafruit_BLE_Firmata_Boards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/Adafruit_BLE_Firmata_Boards.h -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/README.md -------------------------------------------------------------------------------- /examples/BluefruitLE_nrf51822/BluefruitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/BluefruitLE_nrf51822/BluefruitConfig.h -------------------------------------------------------------------------------- /examples/BluefruitLE_nrf51822/BluefruitLE_nrf51822.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/BluefruitLE_nrf51822/BluefruitLE_nrf51822.ino -------------------------------------------------------------------------------- /examples/CircuitPlayground_nrf51822/BluefruitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/CircuitPlayground_nrf51822/BluefruitConfig.h -------------------------------------------------------------------------------- /examples/CircuitPlayground_nrf51822/CircuitPlayground_nrf51822.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/CircuitPlayground_nrf51822/CircuitPlayground_nrf51822.ino -------------------------------------------------------------------------------- /examples/Firmata_nRF8001/BluefruitConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/Firmata_nRF8001/BluefruitConfig.h -------------------------------------------------------------------------------- /examples/Firmata_nRF8001/Firmata_nRF8001.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/Firmata_nRF8001/Firmata_nRF8001.ino -------------------------------------------------------------------------------- /examples/StandardFirmata/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/StandardFirmata/LICENSE.txt -------------------------------------------------------------------------------- /examples/StandardFirmata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/StandardFirmata/Makefile -------------------------------------------------------------------------------- /examples/StandardFirmata/StandardFirmata.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/examples/StandardFirmata/StandardFirmata.ino -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adafruit/Adafruit_BLE_PinIO/HEAD/library.properties --------------------------------------------------------------------------------