Mobile Philly - November 13, 2013
Presented by Don Coleman / @doncoleman

http://www.bluetooth.com/Pages/Smart-Logos.aspx
https://www.bluetooth.org/en-us/specification/adopted-specifications
https://developer.bluetooth.org/gatt/Pages/Definition-Browser.aspx
https://developer.bluetooth.org/gatt/services/Pages/ServiceViewer.aspx?u=org.bluetooth.service.heart_rate.xml
http://arduino.cc/en/Reference/SoftwareSerialConstructor
$ cordova plugin install com.megster.cordova.bluetoothserial
var macAddress = "00:00:AA:BB:CC:DD";
var connected = function() {
// connected, do something
};
var disconnected = funtion(error) {
// disconnected
};
bluetoothSerial.connect(macAddress, connected, disconnected);
var onMessage = function(data) {
console.log(data);
};
bluetoothSerial.subscribe("\n", onMessage, onFailure);
bluetoothSerial.write("Hello Arduino");
(not CoreBluetooth)
CLBeacon, CLBeaconRegion, CLLocationManagerDelegate
http://www.rfduino.com
Don Coleman

Connecting iOS and Android to Arduino with Bluetooth by Don Coleman
is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
Based on a work at https://github.com/don/.../2013-11-13-mobilephilly-bluetooth.