├── BTLE.cpp ├── BTLE.h ├── LICENSE ├── README.md ├── bluez_adv.sh ├── btle.inc ├── examples ├── eddystone_url │ └── eddystone_url.ino ├── multichunk │ └── multichunk.ino ├── recv │ └── recv.ino ├── send │ └── send.ino └── temperature │ └── temperature.ino └── library.properties /BTLE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/BTLE.cpp -------------------------------------------------------------------------------- /BTLE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/BTLE.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/README.md -------------------------------------------------------------------------------- /bluez_adv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/bluez_adv.sh -------------------------------------------------------------------------------- /btle.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/btle.inc -------------------------------------------------------------------------------- /examples/eddystone_url/eddystone_url.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/examples/eddystone_url/eddystone_url.ino -------------------------------------------------------------------------------- /examples/multichunk/multichunk.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/examples/multichunk/multichunk.ino -------------------------------------------------------------------------------- /examples/recv/recv.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/examples/recv/recv.ino -------------------------------------------------------------------------------- /examples/send/send.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/examples/send/send.ino -------------------------------------------------------------------------------- /examples/temperature/temperature.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/examples/temperature/temperature.ino -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floe/BTLE/HEAD/library.properties --------------------------------------------------------------------------------