Fun with Bluetooth

A presentation at Amsterdam JSNation in June 2018 in Amsterdam, Netherlands by Niels Leenheer

Slide 1

Slide 1

fun with bluetooth

Slide 2

Slide 2

why?

Slide 3

Slide 3

progressive 
 web apps

Slide 4

Slide 4

pwa’s are great !

Slide 5

Slide 5

but...

Slide 6

Slide 6

Slide 7

Slide 7

bluetooth

Slide 8

Slide 8

bluetooth sucks

Slide 9

Slide 9

classic bluetooth the reason everybody 
 hates bluetooth bluetooth low energy vs. control drones and other cool shit

Slide 10

Slide 10

bluetooth low energy also known as BLE Bluetooth LE Bluetooth Smart Bluetooth 4

Slide 11

Slide 11

bluetooth low energy also known as BLE Bluetooth LE Bluetooth Smart Bluetooth 4 and 5

Slide 12

Slide 12

10 million


 bluetooth devices 
 shipping every day

Slide 13

Slide 13

mobile phone

Slide 14

Slide 14

computer

Slide 15

Slide 15

glucose monitor somebody's hand

Slide 16

Slide 16

activity tracker

Slide 17

Slide 17

playbulb sphere playbulb

Slide 18

Slide 18

spherio bb-8

Slide 19

Slide 19

parrot mini drone

Slide 20

Slide 20

fi dget spinner

Slide 21

Slide 21

the boring theoretical stuff

Slide 22

Slide 22

central peripheral

Slide 23

Slide 23

central

Slide 24

Slide 24

generic attribute profile

Slide 25

Slide 25

generic attribute profile ?

Slide 26

Slide 26

generic attribute profile gatt, because gap was already taken

Slide 27

Slide 27

client server

central

peripheral

Slide 28

Slide 28

server service characteristic value array of objects object property value

Slide 29

Slide 29

services and characteristics are identified by uuid’s 16 bit or 128 bit

Slide 30

Slide 30

read write write without response notify each characteristic supports
one or more of these

Slide 31

Slide 31

every value is an array of bytes no fancy datatypes, just bytes

Slide 32

Slide 32

pfew...

Slide 33

Slide 33

Slide 34

Slide 34

fun

with

bluetooth boring facts 
 about

Slide 35

Slide 35

fun with bluetooth

Slide 36

Slide 36

 web


 bluetooth
api still not the fun part :-(

Slide 37

Slide 37

connecting to a device

Slide 38

Slide 38

navigator.bluetooth.requestDevice({ filters: [
{ namePrefix: 'PLAYBULB' }
], optionalServices: [ 0xff0f ] }) .then(device => device.gatt.connect()) .then(server => server.getPrimaryService(0xff0f)) .then(service => service.getCharacteristic(0xfffc)) .then(characteristic => { return characteristic.writeValue( new Uint8Array([ 0x00, r, g, b ]) ); }) we tell the browser what 
 kind of device we want

Slide 39

Slide 39

the user selects
the actual device

Slide 40

Slide 40

navigator.bluetooth.requestDevice({ filters: [
{ namePrefix: 'PLAYBULB' }
], optionalServices: [ 0xff0f ] }) .then(device => device.gatt.connect()) .then(server => server.getPrimaryService(0xff0f)) .then(service => service.getCharacteristic(0xfffc)) .then(characteristic => { return characteristic.writeValue( new Uint8Array([ 0x00, r, g, b ]) ); }) get the characteristic get the service connect to the server

Slide 41

Slide 41

writing data

Slide 42

Slide 42

navigator.bluetooth.requestDevice({ ... }) .then(device => device.gatt.connect()) .then(server => server.getPrimaryService(0xff0f)) .then(service => service.getCharacteristic(0xfffc)) .then(c => { return c.writeValue( new Uint8Array([ 0x00, r, g, b ]) ); }) write some bytes

Slide 43

Slide 43

reading data

Slide 44

Slide 44

navigator.bluetooth.requestDevice({ ... }) .then(device => device.gatt.connect()) .then(server => server.getPrimaryService(0xff0f)) .then(service => service.getCharacteristic(0xfffc)) .then(c => c.readValue()) .then(value => { let r = value.getUint8(1);
let g = value.getUint8(2); let b = value.getUint8(3); }) read some bytes

Slide 45

Slide 45

get notified of changes

Slide 46

Slide 46

navigator.bluetooth.requestDevice({ ... }) .then(device => device.gatt.connect()) .then(server => server.getPrimaryService(0xff0f)) .then(service => service.getCharacteristic(0xfffc)) .then(c => { c.addEventListener('characteristicvaluechanged', e => { let r = e.target.value.getUint8(1);
let g = e.target.value.getUint8(2); let b = e.target.value.getUint8(3); }); c.startNotifications(); }) add event listener don't forget to start listening

Slide 47

Slide 47

custom
characteristics . wtf!

Slide 48

Slide 48

insert xkcd comic about standards here

Slide 49

Slide 49

writing a value: function(r, g, b) { return new Uint8Array([ 0x00, r, g, b ]); } reading a value: function(buffer) { return { 
 r: buffer.getUint8(1), 
 g: buffer.getUint8(2), 
 b: buffer.getUint8(3) 
 } } writing to and reading 
 from the same characteristic

Slide 50

Slide 50

writing a value: function(r, g, b) { return new Uint8Array([
0x01, g, 0x01, 0x00, 0x01, 
 b, 0x01, r, 0x01, 0x00

 ]); } reading the current 
 color is not possible

Slide 51

Slide 51

writing a value: 
 function(r, g, b) { var buffer = new Uint8Array([ 
 0xaa, 0x0a, 0xfc, 0x3a, 0x86, 0x01, 0x0d, 
 0x06, 0x01, r, g, b, 0x00, 0x00, 
 (Math.random() * 1000) & 0xff, 0x55, 0x0d 
 ]); for (var i = 1; i < buffer.length - 2; i++) { buffer[15] += buffer[i]; } return buffer; } reading the current 
 color is not possible

Slide 52

Slide 52

writing a value: 
 function(r, g, b, position) { let buffer = new Uint8Array([
0x07, 0x02, position + 1, r, g, b
]); return buffer; }

Slide 53

Slide 53

writing a value: 
 function(r, g, b, position) { let buffer = new Uint8Array([
0x58, r, g, b, 0x01, position ]); ...

Slide 54

Slide 54

writing a value: 
 function(r, g, b, position) { let buffer = new Uint8Array([
0x58, r, g, b, 0x01, position ]); let payload = new Uint8Array(buffer.length + 4); payload[0] = payload.length - 2; payload[1] = payload.length - 2 >>> 8; payload.set(buffer, 2); let checksum = payload.reduce((a, b) => a + b, 0); payload[payload.length - 2] = checksum; payload[payload.length - 1] = checksum >>> 8; let extra = payload.filter(value => { 
 value === 0x01 || value === 0x02 || value == 0x03 


Slide 55

Slide 55

        message[m] = 0x03; 
        message[m + 1] = 0x05; 
        m += 2; 
    } 
    else if (payload[i] === 0x03) { 
        message[m] = 0x03; 
        message[m + 1] = 0x06; 
        m += 2; 
    } 
    else { 
        message[m] = payload[i]; 
        m++; 
    } 
} 
message[0] = 0x01; 
message[message.length - 1] = 0x02; 
return message; 

}

Slide 56

Slide 56

adafruit 
 bluetooth 
 sniffer

Slide 57

Slide 57

decompiling


 the apk don't tell anyone!

Slide 58

Slide 58

demofinally the fun part

Slide 59

Slide 59

warning experimental technology 
 setting low expectations

Slide 60

Slide 60

warning wifi interference 
 lowering them even further

Slide 61

Slide 61

Slide 62

Slide 62

https://bluetooth.rocks/lightbulb 
 https://github.com/BluetoothRocks/Lightbulb change the colour 
 of a lightbulb

Slide 63

Slide 63

https://bluetooth.rocks/pixel 
 https://github.com/BluetoothRocks/Matrix draw pixel art on 
 a led matrix display

Slide 64

Slide 64

https://bluetooth.rocks/racer https://github.com/BluetoothRocks/Racer control a lego racer 
 using a gamepad use css animations to 
 define a path

Slide 65

Slide 65

https://bluetooth.rocks/drone 
 https://github.com/BluetoothRocks/Drone control a drone 
 from your browser

Slide 66

Slide 66

https://bluetooth.rocks/pulse 
 https://github.com/BluetoothRocks/Pulsefind out your 
 current heartbeat

Slide 67

Slide 67

fun with bluetooth !

Slide 68

Slide 68

questions? @html5test