├── .gitignore ├── ArduinoBLE_library_examples ├── BLECallbackTest │ └── BLECallbackTest.ino ├── BLEDuplex │ ├── CentralDuplex │ │ └── CentralDuplex.ino │ ├── PeripheralDuplex │ │ └── PeripheralDuplex.ino │ └── readme.md ├── BLE_LIS3DH_accelerometer │ └── BLE_LIS3DH_accelerometer.ino ├── BLE_RTC │ └── BLE_RTC.ino ├── BLE_String │ └── BLE_String.ino ├── BLE_accelerometer │ ├── BLE_accelerometer.ino │ ├── MKR1010_accelerometer_bb.svg │ ├── MKR1010_accelerometer_schem.png │ ├── MKR1010_accelerometer_schem.svg │ └── README.md └── readme.md ├── README.md ├── _config.yml ├── arduinoBLEperipheral ├── DynamicUriBeacon │ └── DynamicUriBeacon.ino ├── README.md ├── ledCallbackExample │ └── ledCallbackExample.ino ├── ledSwitchExample │ └── ledSwitchExample.ino ├── sensorExample │ └── sensorExample.ino └── servoMotorExample │ └── servoMotorExample.ino ├── bleno ├── battery-service │ ├── .gitignore │ ├── README.md │ ├── battery-level-characteristic.js │ ├── battery-service.js │ ├── main.js │ └── package.json ├── generic-service │ └── genericService.js ├── ibeacon │ ├── README.md │ ├── index.js │ └── package.json ├── uribeacon │ ├── README.md │ ├── index.js │ └── package.json └── volume-service │ ├── .gitignore │ ├── README.md │ ├── main.js │ ├── package.json │ ├── volume-characteristic.js │ ├── volume-service.js │ └── volume.js ├── cordova ├── README.md ├── beanNotify │ ├── beanNotify │ │ └── beanNotify.ino │ ├── config.xml │ ├── hooks │ │ └── README.md │ └── www │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ └── js │ │ └── index.js ├── beanRead │ ├── beanRead │ │ └── beanRead.ino │ ├── config.xml │ ├── hooks │ │ └── README.md │ └── www │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ └── js │ │ └── index.js ├── beanSerial │ ├── beanSerial │ │ └── beanSerial.ino │ ├── config.xml │ ├── hooks │ │ └── README.md │ └── www │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ └── js │ │ └── index.js ├── beanWrite │ ├── beanWrite │ │ └── beanWrite.ino │ ├── config.xml │ ├── hooks │ │ └── README.md │ └── www │ │ ├── css │ │ └── index.css │ │ ├── index.html │ │ └── js │ │ └── index.js ├── sensor │ ├── .gitignore │ ├── README.md │ ├── config.xml │ ├── hooks │ │ └── README.md │ └── www │ │ └── js │ │ └── index.js ├── sensortag │ ├── .gitignore │ ├── README.md │ ├── config.xml │ └── hooks │ │ └── README.md └── volume │ ├── .gitignore │ ├── README.md │ ├── config.xml │ ├── hooks │ └── README.md │ └── www │ ├── css │ └── index.css │ ├── index.html │ └── js │ └── index.js ├── noble ├── README.md ├── RoboSmartBulb │ └── robosmart.js ├── beanGetDataExample │ ├── bean.js │ └── package.json ├── beanWriteDataExample │ ├── README.md │ ├── bean.js │ ├── bean_LED │ │ └── bean_LED.ino │ └── package.json ├── browserExample │ ├── README.md │ ├── package.json │ ├── public │ │ ├── css │ │ │ └── style.css │ │ ├── index.html │ │ └── js │ │ │ └── script.js │ └── server.js ├── exploreAsync │ ├── README.md │ ├── explore.js │ └── package.json ├── exploreReadWriteExample │ ├── README.md │ ├── explore.js │ └── package.json ├── macAddressScan │ ├── index.js │ └── package.json ├── readMultimeter │ ├── README.md │ ├── ble-uart.js │ ├── bleUart │ │ └── bleUart.ino │ ├── bleUart2 │ │ └── bleUart2.ino │ ├── example.js │ ├── exampleServer.js │ ├── package-lock.json │ ├── package.json │ └── public │ │ └── index.html ├── readNotificationExample │ ├── BLEAnalogNotify │ │ └── BLEAnalogNotify.ino │ ├── README.md │ ├── package.json │ └── readNotification.js ├── readSerial │ ├── README.md │ ├── ble-uart.js │ ├── bleUart │ │ └── bleUart.ino │ ├── bleUart2 │ │ └── bleUart2.ino │ ├── example.js │ ├── exampleServer.js │ ├── package-lock.json │ ├── package.json │ └── public │ │ └── index.html ├── scanExample │ ├── README.md │ ├── package.json │ ├── scan.js │ └── signalStrength.js ├── stickNfindExample │ ├── README.md │ ├── package.json │ └── stickNfindExample.js ├── subscribeExample │ ├── test.js │ └── timerBeacon │ │ └── timerBeacon.ino └── updateRSSI │ ├── README.md │ ├── package.json │ └── updateRSSI.js ├── npm-debug.log ├── p5-web-bluetooth_examples ├── p5-web-bluetooth_multiple │ └── sketch.js └── p5-web-bluetooth_single │ ├── README.md │ ├── ble.js │ ├── index.html │ └── libraries │ ├── p5.dom.js │ ├── p5.js │ └── p5.sound.js ├── rfduino ├── ibeacon │ └── ibeacon.ino └── uribeacon │ └── uribeacon.ino ├── sensorTag ├── SensorTagWebSockets │ ├── package.json │ ├── public │ │ ├── index.html │ │ ├── libraries │ │ │ ├── p5.dom.js │ │ │ ├── p5.js │ │ │ └── p5.sound.js │ │ └── sketch.js │ └── sensortagWebSocket.js ├── sensorTagExample │ ├── accelerometerSimple.js │ ├── allSensors.js │ ├── barometricSensorSimple.js │ ├── gyroscopeSimple.js │ ├── humiditySensorSimple.js │ ├── irTempSensorSimple.js │ ├── keySimple.js │ ├── magnetometerSimple.js │ ├── package-lock.json │ ├── package.json │ ├── sensortagAccelerometer.js │ └── sensortagIRTemperature.js ├── sensorTagMadgwick │ ├── package.json │ └── sensortagMadgwick.js └── sensorTagSlideshow │ ├── left.applescript │ ├── left.scpt │ ├── package.json │ ├── play.scpt │ ├── right.applescript │ ├── right.scpt │ └── sensortagController.js └── web-bluetooth ├── readme.md ├── web-bluetooth-LED-write ├── index.html ├── script.js └── styles.css └── web-bluetooth-buttonLED-read ├── index.html └── script.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLECallbackTest/BLECallbackTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLECallbackTest/BLECallbackTest.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLEDuplex/CentralDuplex/CentralDuplex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLEDuplex/CentralDuplex/CentralDuplex.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLEDuplex/PeripheralDuplex/PeripheralDuplex.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLEDuplex/PeripheralDuplex/PeripheralDuplex.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLEDuplex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLEDuplex/readme.md -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_LIS3DH_accelerometer/BLE_LIS3DH_accelerometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_LIS3DH_accelerometer/BLE_LIS3DH_accelerometer.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_RTC/BLE_RTC.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_RTC/BLE_RTC.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_String/BLE_String.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_String/BLE_String.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_accelerometer/BLE_accelerometer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_accelerometer/BLE_accelerometer.ino -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_accelerometer/MKR1010_accelerometer_bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_accelerometer/MKR1010_accelerometer_bb.svg -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_accelerometer/MKR1010_accelerometer_schem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_accelerometer/MKR1010_accelerometer_schem.png -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_accelerometer/MKR1010_accelerometer_schem.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_accelerometer/MKR1010_accelerometer_schem.svg -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/BLE_accelerometer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/BLE_accelerometer/README.md -------------------------------------------------------------------------------- /ArduinoBLE_library_examples/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/ArduinoBLE_library_examples/readme.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/_config.yml -------------------------------------------------------------------------------- /arduinoBLEperipheral/DynamicUriBeacon/DynamicUriBeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/arduinoBLEperipheral/DynamicUriBeacon/DynamicUriBeacon.ino -------------------------------------------------------------------------------- /arduinoBLEperipheral/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/arduinoBLEperipheral/README.md -------------------------------------------------------------------------------- /arduinoBLEperipheral/ledCallbackExample/ledCallbackExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/arduinoBLEperipheral/ledCallbackExample/ledCallbackExample.ino -------------------------------------------------------------------------------- /arduinoBLEperipheral/ledSwitchExample/ledSwitchExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/arduinoBLEperipheral/ledSwitchExample/ledSwitchExample.ino -------------------------------------------------------------------------------- /arduinoBLEperipheral/sensorExample/sensorExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/arduinoBLEperipheral/sensorExample/sensorExample.ino -------------------------------------------------------------------------------- /arduinoBLEperipheral/servoMotorExample/servoMotorExample.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/arduinoBLEperipheral/servoMotorExample/servoMotorExample.ino -------------------------------------------------------------------------------- /bleno/battery-service/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /bleno/battery-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/battery-service/README.md -------------------------------------------------------------------------------- /bleno/battery-service/battery-level-characteristic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/battery-service/battery-level-characteristic.js -------------------------------------------------------------------------------- /bleno/battery-service/battery-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/battery-service/battery-service.js -------------------------------------------------------------------------------- /bleno/battery-service/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/battery-service/main.js -------------------------------------------------------------------------------- /bleno/battery-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/battery-service/package.json -------------------------------------------------------------------------------- /bleno/generic-service/genericService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/generic-service/genericService.js -------------------------------------------------------------------------------- /bleno/ibeacon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/ibeacon/README.md -------------------------------------------------------------------------------- /bleno/ibeacon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/ibeacon/index.js -------------------------------------------------------------------------------- /bleno/ibeacon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/ibeacon/package.json -------------------------------------------------------------------------------- /bleno/uribeacon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/uribeacon/README.md -------------------------------------------------------------------------------- /bleno/uribeacon/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/uribeacon/index.js -------------------------------------------------------------------------------- /bleno/uribeacon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/uribeacon/package.json -------------------------------------------------------------------------------- /bleno/volume-service/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /bleno/volume-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/volume-service/README.md -------------------------------------------------------------------------------- /bleno/volume-service/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/volume-service/main.js -------------------------------------------------------------------------------- /bleno/volume-service/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/volume-service/package.json -------------------------------------------------------------------------------- /bleno/volume-service/volume-characteristic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/volume-service/volume-characteristic.js -------------------------------------------------------------------------------- /bleno/volume-service/volume-service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/volume-service/volume-service.js -------------------------------------------------------------------------------- /bleno/volume-service/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/bleno/volume-service/volume.js -------------------------------------------------------------------------------- /cordova/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/README.md -------------------------------------------------------------------------------- /cordova/beanNotify/beanNotify/beanNotify.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanNotify/beanNotify/beanNotify.ino -------------------------------------------------------------------------------- /cordova/beanNotify/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanNotify/config.xml -------------------------------------------------------------------------------- /cordova/beanNotify/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanNotify/hooks/README.md -------------------------------------------------------------------------------- /cordova/beanNotify/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanNotify/www/css/index.css -------------------------------------------------------------------------------- /cordova/beanNotify/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanNotify/www/index.html -------------------------------------------------------------------------------- /cordova/beanNotify/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanNotify/www/js/index.js -------------------------------------------------------------------------------- /cordova/beanRead/beanRead/beanRead.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanRead/beanRead/beanRead.ino -------------------------------------------------------------------------------- /cordova/beanRead/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanRead/config.xml -------------------------------------------------------------------------------- /cordova/beanRead/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanRead/hooks/README.md -------------------------------------------------------------------------------- /cordova/beanRead/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanRead/www/css/index.css -------------------------------------------------------------------------------- /cordova/beanRead/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanRead/www/index.html -------------------------------------------------------------------------------- /cordova/beanRead/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanRead/www/js/index.js -------------------------------------------------------------------------------- /cordova/beanSerial/beanSerial/beanSerial.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanSerial/beanSerial/beanSerial.ino -------------------------------------------------------------------------------- /cordova/beanSerial/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanSerial/config.xml -------------------------------------------------------------------------------- /cordova/beanSerial/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanSerial/hooks/README.md -------------------------------------------------------------------------------- /cordova/beanSerial/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanSerial/www/css/index.css -------------------------------------------------------------------------------- /cordova/beanSerial/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanSerial/www/index.html -------------------------------------------------------------------------------- /cordova/beanSerial/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanSerial/www/js/index.js -------------------------------------------------------------------------------- /cordova/beanWrite/beanWrite/beanWrite.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanWrite/beanWrite/beanWrite.ino -------------------------------------------------------------------------------- /cordova/beanWrite/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanWrite/config.xml -------------------------------------------------------------------------------- /cordova/beanWrite/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanWrite/hooks/README.md -------------------------------------------------------------------------------- /cordova/beanWrite/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanWrite/www/css/index.css -------------------------------------------------------------------------------- /cordova/beanWrite/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanWrite/www/index.html -------------------------------------------------------------------------------- /cordova/beanWrite/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/beanWrite/www/js/index.js -------------------------------------------------------------------------------- /cordova/sensor/.gitignore: -------------------------------------------------------------------------------- 1 | platforms 2 | plugins 3 | -------------------------------------------------------------------------------- /cordova/sensor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensor/README.md -------------------------------------------------------------------------------- /cordova/sensor/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensor/config.xml -------------------------------------------------------------------------------- /cordova/sensor/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensor/hooks/README.md -------------------------------------------------------------------------------- /cordova/sensor/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensor/www/js/index.js -------------------------------------------------------------------------------- /cordova/sensortag/.gitignore: -------------------------------------------------------------------------------- 1 | platforms 2 | plugins 3 | -------------------------------------------------------------------------------- /cordova/sensortag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensortag/README.md -------------------------------------------------------------------------------- /cordova/sensortag/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensortag/config.xml -------------------------------------------------------------------------------- /cordova/sensortag/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/sensortag/hooks/README.md -------------------------------------------------------------------------------- /cordova/volume/.gitignore: -------------------------------------------------------------------------------- 1 | plugins 2 | platforms 3 | -------------------------------------------------------------------------------- /cordova/volume/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/volume/README.md -------------------------------------------------------------------------------- /cordova/volume/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/volume/config.xml -------------------------------------------------------------------------------- /cordova/volume/hooks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/volume/hooks/README.md -------------------------------------------------------------------------------- /cordova/volume/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/volume/www/css/index.css -------------------------------------------------------------------------------- /cordova/volume/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/volume/www/index.html -------------------------------------------------------------------------------- /cordova/volume/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/cordova/volume/www/js/index.js -------------------------------------------------------------------------------- /noble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/README.md -------------------------------------------------------------------------------- /noble/RoboSmartBulb/robosmart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/RoboSmartBulb/robosmart.js -------------------------------------------------------------------------------- /noble/beanGetDataExample/bean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/beanGetDataExample/bean.js -------------------------------------------------------------------------------- /noble/beanGetDataExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/beanGetDataExample/package.json -------------------------------------------------------------------------------- /noble/beanWriteDataExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/beanWriteDataExample/README.md -------------------------------------------------------------------------------- /noble/beanWriteDataExample/bean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/beanWriteDataExample/bean.js -------------------------------------------------------------------------------- /noble/beanWriteDataExample/bean_LED/bean_LED.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/beanWriteDataExample/bean_LED/bean_LED.ino -------------------------------------------------------------------------------- /noble/beanWriteDataExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/beanWriteDataExample/package.json -------------------------------------------------------------------------------- /noble/browserExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/browserExample/README.md -------------------------------------------------------------------------------- /noble/browserExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/browserExample/package.json -------------------------------------------------------------------------------- /noble/browserExample/public/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/browserExample/public/css/style.css -------------------------------------------------------------------------------- /noble/browserExample/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/browserExample/public/index.html -------------------------------------------------------------------------------- /noble/browserExample/public/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/browserExample/public/js/script.js -------------------------------------------------------------------------------- /noble/browserExample/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/browserExample/server.js -------------------------------------------------------------------------------- /noble/exploreAsync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/exploreAsync/README.md -------------------------------------------------------------------------------- /noble/exploreAsync/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/exploreAsync/explore.js -------------------------------------------------------------------------------- /noble/exploreAsync/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/exploreAsync/package.json -------------------------------------------------------------------------------- /noble/exploreReadWriteExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/exploreReadWriteExample/README.md -------------------------------------------------------------------------------- /noble/exploreReadWriteExample/explore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/exploreReadWriteExample/explore.js -------------------------------------------------------------------------------- /noble/exploreReadWriteExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/exploreReadWriteExample/package.json -------------------------------------------------------------------------------- /noble/macAddressScan/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/macAddressScan/index.js -------------------------------------------------------------------------------- /noble/macAddressScan/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/macAddressScan/package.json -------------------------------------------------------------------------------- /noble/readMultimeter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/README.md -------------------------------------------------------------------------------- /noble/readMultimeter/ble-uart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/ble-uart.js -------------------------------------------------------------------------------- /noble/readMultimeter/bleUart/bleUart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/bleUart/bleUart.ino -------------------------------------------------------------------------------- /noble/readMultimeter/bleUart2/bleUart2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/bleUart2/bleUart2.ino -------------------------------------------------------------------------------- /noble/readMultimeter/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/example.js -------------------------------------------------------------------------------- /noble/readMultimeter/exampleServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/exampleServer.js -------------------------------------------------------------------------------- /noble/readMultimeter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/package-lock.json -------------------------------------------------------------------------------- /noble/readMultimeter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/package.json -------------------------------------------------------------------------------- /noble/readMultimeter/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readMultimeter/public/index.html -------------------------------------------------------------------------------- /noble/readNotificationExample/BLEAnalogNotify/BLEAnalogNotify.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readNotificationExample/BLEAnalogNotify/BLEAnalogNotify.ino -------------------------------------------------------------------------------- /noble/readNotificationExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readNotificationExample/README.md -------------------------------------------------------------------------------- /noble/readNotificationExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readNotificationExample/package.json -------------------------------------------------------------------------------- /noble/readNotificationExample/readNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readNotificationExample/readNotification.js -------------------------------------------------------------------------------- /noble/readSerial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/README.md -------------------------------------------------------------------------------- /noble/readSerial/ble-uart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/ble-uart.js -------------------------------------------------------------------------------- /noble/readSerial/bleUart/bleUart.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/bleUart/bleUart.ino -------------------------------------------------------------------------------- /noble/readSerial/bleUart2/bleUart2.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/bleUart2/bleUart2.ino -------------------------------------------------------------------------------- /noble/readSerial/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/example.js -------------------------------------------------------------------------------- /noble/readSerial/exampleServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/exampleServer.js -------------------------------------------------------------------------------- /noble/readSerial/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/package-lock.json -------------------------------------------------------------------------------- /noble/readSerial/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/package.json -------------------------------------------------------------------------------- /noble/readSerial/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/readSerial/public/index.html -------------------------------------------------------------------------------- /noble/scanExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/scanExample/README.md -------------------------------------------------------------------------------- /noble/scanExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/scanExample/package.json -------------------------------------------------------------------------------- /noble/scanExample/scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/scanExample/scan.js -------------------------------------------------------------------------------- /noble/scanExample/signalStrength.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/scanExample/signalStrength.js -------------------------------------------------------------------------------- /noble/stickNfindExample/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/stickNfindExample/README.md -------------------------------------------------------------------------------- /noble/stickNfindExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/stickNfindExample/package.json -------------------------------------------------------------------------------- /noble/stickNfindExample/stickNfindExample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/stickNfindExample/stickNfindExample.js -------------------------------------------------------------------------------- /noble/subscribeExample/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/subscribeExample/test.js -------------------------------------------------------------------------------- /noble/subscribeExample/timerBeacon/timerBeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/subscribeExample/timerBeacon/timerBeacon.ino -------------------------------------------------------------------------------- /noble/updateRSSI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/updateRSSI/README.md -------------------------------------------------------------------------------- /noble/updateRSSI/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/updateRSSI/package.json -------------------------------------------------------------------------------- /noble/updateRSSI/updateRSSI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/noble/updateRSSI/updateRSSI.js -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/npm-debug.log -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_multiple/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_multiple/sketch.js -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_single/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_single/README.md -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_single/ble.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_single/ble.js -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_single/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_single/index.html -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_single/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_single/libraries/p5.dom.js -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_single/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_single/libraries/p5.js -------------------------------------------------------------------------------- /p5-web-bluetooth_examples/p5-web-bluetooth_single/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/p5-web-bluetooth_examples/p5-web-bluetooth_single/libraries/p5.sound.js -------------------------------------------------------------------------------- /rfduino/ibeacon/ibeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/rfduino/ibeacon/ibeacon.ino -------------------------------------------------------------------------------- /rfduino/uribeacon/uribeacon.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/rfduino/uribeacon/uribeacon.ino -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/package.json -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/public/index.html -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/public/libraries/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/public/libraries/p5.dom.js -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/public/libraries/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/public/libraries/p5.js -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/public/libraries/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/public/libraries/p5.sound.js -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/public/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/public/sketch.js -------------------------------------------------------------------------------- /sensorTag/SensorTagWebSockets/sensortagWebSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/SensorTagWebSockets/sensortagWebSocket.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/accelerometerSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/accelerometerSimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/allSensors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/allSensors.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/barometricSensorSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/barometricSensorSimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/gyroscopeSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/gyroscopeSimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/humiditySensorSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/humiditySensorSimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/irTempSensorSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/irTempSensorSimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/keySimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/keySimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/magnetometerSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/magnetometerSimple.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/package-lock.json -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/package.json -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/sensortagAccelerometer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/sensortagAccelerometer.js -------------------------------------------------------------------------------- /sensorTag/sensorTagExample/sensortagIRTemperature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagExample/sensortagIRTemperature.js -------------------------------------------------------------------------------- /sensorTag/sensorTagMadgwick/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagMadgwick/package.json -------------------------------------------------------------------------------- /sensorTag/sensorTagMadgwick/sensortagMadgwick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagMadgwick/sensortagMadgwick.js -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/left.applescript: -------------------------------------------------------------------------------- 1 | tell application "System Events" key code 112 end tell -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/left.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagSlideshow/left.scpt -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagSlideshow/package.json -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/play.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagSlideshow/play.scpt -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/right.applescript: -------------------------------------------------------------------------------- 1 | tell application "System Events" key code 124 end tell -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/right.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagSlideshow/right.scpt -------------------------------------------------------------------------------- /sensorTag/sensorTagSlideshow/sensortagController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/sensorTag/sensorTagSlideshow/sensortagController.js -------------------------------------------------------------------------------- /web-bluetooth/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/web-bluetooth/readme.md -------------------------------------------------------------------------------- /web-bluetooth/web-bluetooth-LED-write/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/web-bluetooth/web-bluetooth-LED-write/index.html -------------------------------------------------------------------------------- /web-bluetooth/web-bluetooth-LED-write/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/web-bluetooth/web-bluetooth-LED-write/script.js -------------------------------------------------------------------------------- /web-bluetooth/web-bluetooth-LED-write/styles.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /web-bluetooth/web-bluetooth-buttonLED-read/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/web-bluetooth/web-bluetooth-buttonLED-read/index.html -------------------------------------------------------------------------------- /web-bluetooth/web-bluetooth-buttonLED-read/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tigoe/BluetoothLE-Examples/HEAD/web-bluetooth/web-bluetooth-buttonLED-read/script.js --------------------------------------------------------------------------------