Working to sniff Bluetooth Low Energy with the adafruit sniffer
For more information, see this blog post
Going the python route, as described here
before installing pySerial, did ...
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8' /> | |
| <title>Earthquakes Map: Last month</title> | |
| <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
| <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.js'></script> | |
| <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.css' rel='stylesheet' /> | |
| <style> | |
| body { margin:0; padding:0; } |
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset='utf-8' /> | |
| <title>Earthquakes Map: Last month</title> | |
| <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> | |
| <script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.js'></script> | |
| <link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.12.1/mapbox-gl.css' rel='stylesheet' /> | |
| <style> | |
| body { margin:0; padding:0; } |
| <iframe frameborder="0" scrolling ="no" src="http://project.wnyc.org/toxic-nj/" width="100%" height="900" ></iframe> |
| <iframe frameborder="0" scrolling ="no" src="http://project.wnyc.org/subway-exits/" width="100%" height="900" ></iframe> |
| <iframe frameborder="0" scrolling ="no" src="http://project.wnyc.org/bike-lane-blockers/" width="100%" height="900" ></iframe> |
| #include <CapacitiveSensor.h> | |
| /* | |
| * CapitiveSense Library Demo Sketch | |
| * Paul Badger 2008 | |
| * Uses a high value resistor e.g. 10M between send pin and receive pin | |
| * Resistor effects sensitivity, experiment with values, 50K - 50M. Larger resistor values yield larger sensor values. | |
| * Receive pin is the sensor pin - try different amounts of foil/metal on this pin | |
| */ |
| var PRIVATE_KEY = 'aBcDEFgHiJKlmnoPqRsTuV'; | |
| module.exports.PRIVATE_KEY = PRIVATE_KEY; |
| var five = require(“johnny-five”); | |
| var board = new five.Board(); | |
| board.on(“ready”, function(){ | |
| // Create an Led on Pin 11 | |
| var led = new five.Led(11); | |
| // default blink rate is 100ms | |
| // otherwise, values are ms | |
| led.blink(100); |
Working to sniff Bluetooth Low Energy with the adafruit sniffer
For more information, see this blog post
Going the python route, as described here
before installing pySerial, did ...