Skip to content

Commit ade229b

Browse files
committedOct 5, 2015
[README] Fill out the README and basic API
1 parent bea2293 commit ade229b

File tree

1 file changed

+110
-2
lines changed

1 file changed

+110
-2
lines changed
 

‎README.md

+110-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,110 @@
1-
# plasma-dash
2-
A small server that reacts to Amazon Dash buttons on your WiFi network
1+
# Plasma Dash
2+
3+
Plasma Dash is a small server that reacts to Amazon Dash buttons on your WiFi network. You can write event handlers that Plasma Dash will run when it detects someone has pressed your Dash button.
4+
5+
Plasma Dash is designed to run on a Raspberry Pi. Specifically, it runs on [Raspbian](https://www.raspbian.org/) (Jessie or newer) and supports modern Node.js.
6+
7+
## Installation and Setup
8+
9+
Plasma Dash's runs on Node 4 and up on OS X and Linux. It depends on [libpcap](http://www.tcpdump.org/):
10+
11+
```
12+
# Ubuntu and Debian
13+
sudo apt-get install libpcap-dev
14+
# Fedora and CentOS
15+
sudo yum install libpcap-devel
16+
```
17+
18+
Install Plasma Dash in your project using npm:
19+
20+
```
21+
npm install --save plasma-dash
22+
```
23+
24+
You will need to configure Plasma Dash with the MAC address of each of your Dash buttons, plus code to run when you press them.
25+
26+
The examples here use ES2016. You can run them with Babel configured for Stage 0 or just manually translate the code to whatever programming language you like as long as it runs on Node.
27+
28+
### Setting Up Your Dash Button
29+
30+
Follow Amazon's instructions to add your WiFi credentials to your Dash button, but skip the last step of choosing which product to order when you press the button. Your button is correctly configured if its LED flashes white for a few seconds before turning red when you press it. Note that the Dash button throttles presses, so you may have to wait a minute if you've pressed it recently.
31+
32+
### Finding the MAC Address of Your Dash Button
33+
34+
The plasma-dash package includes a script that prints the MAC addresses of devices sending ARP probes, which the Dash button emits when pressed. Use this to learn the MAC address of your Dash button by pressing it.
35+
36+
Add a new script to the `scripts` section of your package.json file:
37+
38+
```json
39+
{
40+
"scripts": {
41+
"scan": "plasma-dash scan"
42+
}
43+
}
44+
```
45+
46+
Run it with `sudo npm run scan`:
47+
```
48+
$ sudo npm run scan
49+
```
50+
51+
By default it will listen on the first external network interface, which is commonly `en0` or `wlan0`, for example. You can listen on another interface with the `--interface` option:
52+
```
53+
sudo npm run scan -- --interface en1
54+
```
55+
56+
### Telling Plasma Dash about Your Dash Button
57+
58+
Once you know your Dash button's MAC address you need to tell Plasma Dash about it:
59+
60+
```js
61+
import PlasmaDash from 'plasma-dash';
62+
63+
const DASH_BUTTON_MAC_ADDRESS = 'xx:xx:xx:xx:xx:xx';
64+
65+
let button = new PlasmaDash(DASH_BUTTON_MAC_ADDRESS);
66+
```
67+
68+
### Running Code When You Press Your Dash Button
69+
70+
Add a listener to your button. The listener will run when you press the button.
71+
72+
```js
73+
let subscription = button.addListener(async () => {
74+
let nest = require('unofficial-nest-api');
75+
await nest.login(username, password);
76+
nest.setFanModeOn();
77+
});
78+
79+
// Later, if you want to remove the listener do so with the subscription:
80+
subscription.remove();
81+
```
82+
83+
You can add both normal and async functions. If you add an async function, Plasma Dash waits for the promise to settle before listening to new button presses.
84+
85+
## API
86+
87+
The code is the documentation for now.
88+
89+
## Help Wanted
90+
91+
### Green Light
92+
93+
The coolest feature would be to control the light on the Dash button so it turns green. Currently it turns white when broadcasting an ARP packet and then red when it doesn't receive a response from Amazon. But when you use a Dash button in the normal way, the light turns green after Amazon has placed your order. It would be great and make custom Dash apps feel more responsive if Plasma Dash could send back some kind of packet to trick the Dash button's light into turning green.
94+
95+
You probably can figure out what's going on with a packet capturing library or a tool like Wireshark. Once we know what Amazon's response looks like, then we need to spoof it.
96+
97+
### Unit Tests
98+
99+
Plasma Dash uses Jest for testing because it's all about mocking modules, which is perfect for Plasma Dash.
100+
101+
## Acknowledgements
102+
103+
These posts and projects were helpful for making Plasma Dash:
104+
- ["How I Hacked Amazon’s $5 WiFi Button to track Baby Data"](https://medium.com/@edwardbenson/how-i-hacked-amazon-s-5-wifi-button-to-track-baby-data-794214b0bdd8) by @eob
105+
- [uber-dash](https://github.com/geoffrey/uber-dash) by @geoffrey
106+
- [node_pcap](https://github.com/mranney/node_pcap) by @mranney
107+
108+
## License
109+
110+
This source code is released under [the MIT license](./LICENSE). It is not affiliated with Amazon.

0 commit comments

Comments
 (0)
Please sign in to comment.