Broken Buttons: Difference between revisions
Jump to navigation
Jump to search
| Line 23: | Line 23: | ||
** Restart wlan0 using ifdown and ifup to obtain IP address | ** Restart wlan0 using ifdown and ifup to obtain IP address | ||
* Step 5: Update & Upgrade | * Step 5: Update & Upgrade | ||
** sudo apt-get update | ** <pre>sudo apt-get update</pre> | ||
** sudo apt-get upgrade | ** <pre>sudo apt-get upgrade</pre> | ||
* Step 6: Install Node 4.0.0 | * Step 6: Install Node 4.0.0 | ||
** http://blog.wia.io/installing-node-js-v4-0-0-on-a-raspberry-pi/ | ** http://blog.wia.io/installing-node-js-v4-0-0-on-a-raspberry-pi/ | ||
* Step 7: Install git and libpcap-dev | * Step 7: Install git and libpcap-dev | ||
** sudo apt-get install git libpcap-dev | ** <pre>sudo apt-get install git libpcap-dev</pre> | ||
* Step 8: Create directory ~/dash and cd there | * Step 8: Create directory ~/dash and cd there | ||
** mkdir ~/dash | ** <pre>mkdir ~/dash</pre> | ||
** cd ~/dash | ** <pre>cd ~/dash</pre> | ||
* Step 9: Install nodemailer (version 0.7.1, 1.0.0 (default) is broken at time of writing) | * Step 9: Install nodemailer (version 0.7.1, 1.0.0 (default) is broken at time of writing) | ||
** npm install nodemailer@0.7.1 | ** <pre>npm install nodemailer@0.7.1</pre> | ||
* Step 10: Install dash button library | * Step 10: Install dash button library | ||
** https://github.com/hortinstein/node-dash-button | ** https://github.com/hortinstein/node-dash-button | ||
* Step 11: Run node-dash-button's findbutton app | * Step 11: Run node-dash-button's findbutton app | ||
** cd ~/dash/node_modules/node-dash-button | ** <pre>cd ~/dash/node_modules/node-dash-button</pre> | ||
** sudo node bin/findbutton | ** <pre>sudo node bin/findbutton</pre> | ||
* Step 12: Configure Amazon Dash Button | * Step 12: Configure Amazon Dash Button | ||
** Follow the instructions given to you in the box BUT STOP BEFORE YOU SELECT A PRODUCT TO ORDER (hit the back button on your phone, exit the app, etc) | ** Follow the instructions given to you in the box BUT STOP BEFORE YOU SELECT A PRODUCT TO ORDER (hit the back button on your phone, exit the app, etc) | ||
* Step 13: Press the Amazon Dash button once, watch raspberry pi terminal for the button's MAC address | * Step 13: Press the Amazon Dash button once, watch raspberry pi terminal for the button's MAC address | ||
* Step 14: Create application | * Step 14: Create application | ||
** nano dash.js | ** <pre>nano dash.js</pre> | ||
** Enter this code: | ** Enter this code: | ||
<pre> | <pre> | ||
| Line 75: | Line 75: | ||
</pre> | </pre> | ||
Step 15: Run application | Step 15: Run application | ||
** sudo node dash.js | ** <pre>sudo node dash.js</pre> | ||
Revision as of 11:17, 11 January 2016
What's going on here?
- Problem: People don't email broken@lvl1.org every time something breaks.
- Why?: My guess, no quick access to email/computer to email the group.
- Solution: Deploy a number of Amazon Dash Buttons around equipment. If something breaks or we're out of stock of something, instruct patrons to press the corresponding button.
Setup
As of January 11, 2016:
Hardware
- Raspberry Pi B+
- 4GB+ SD Card
- Dash Button
- Monitor & Keyboard
Steps
- Step 1: Download Raspbian Jessie Lite
- Step 2: Install image to SD card using Win32DiskImager
- Step 3: Insert SD card to Raspberry Pi, connect monitor & keyboard, boot Raspberry Pi
- Step 4: Configure wifi
- https://www.raspberrypi.org/documentation/configuration/wireless/wireless-cli.md
- Save wifi settings to wpa_supplicant.conf
- Restart wlan0 using ifdown and ifup to obtain IP address
- Step 5: Update & Upgrade
sudo apt-get update
sudo apt-get upgrade
- Step 6: Install Node 4.0.0
- Step 7: Install git and libpcap-dev
sudo apt-get install git libpcap-dev
- Step 8: Create directory ~/dash and cd there
mkdir ~/dash
cd ~/dash
- Step 9: Install nodemailer (version 0.7.1, 1.0.0 (default) is broken at time of writing)
npm install nodemailer@0.7.1
- Step 10: Install dash button library
- Step 11: Run node-dash-button's findbutton app
cd ~/dash/node_modules/node-dash-button
sudo node bin/findbutton
- Step 12: Configure Amazon Dash Button
- Follow the instructions given to you in the box BUT STOP BEFORE YOU SELECT A PRODUCT TO ORDER (hit the back button on your phone, exit the app, etc)
- Step 13: Press the Amazon Dash button once, watch raspberry pi terminal for the button's MAC address
- Step 14: Create application
nano dash.js
- Enter this code:
var dashbutton = require('node-dash-button');
var nodemailer = require('nodemailer');
var smtpTransport = nodemailer.createTransport("SMTP",{
service: "Gmail",
auth: {
user: "your@gmail.com",
pass: "yourpassword"
}
});
var dashTest = dashbutton("a0:02:dc:d2:f5:67");
dashTest.on("detected", function(){
console.log("Found button");
smtpTransport.sendMail({
from: "your@gmail.com", // sender address
to: "some_other@email.com", // comma separated list of receivers
subject: "Something is Broken! - This is a test.", // Subject line
text: "Something is broken!"
}, function(error, response){
if(error){
console.log(error);
}else{
console.log("Message sent: " + response.message);
}
});
});
Step 15: Run application
sudo node dash.js