Skip to content
Snippets Groups Projects
Verified Commit bd5b8a72 authored by Erick Hitter's avatar Erick Hitter
Browse files

Initial commit

parents
No related branches found
No related tags found
No related merge requests found
dash-button-shm
===============
A node.js module to control [Samsungs SmartThings' Smart Home Monitor](https://support.smartthings.com/hc/en-us/articles/205380154-Smart-Home-Monitor) using an [Amazon Dash button](https://www.amazon.com/Dash-Buttons/b?ie=UTF8&node=10667898011).
**This library requires that SHM is accessible over MQTT, as discussed [here](https://ethitter.com/2016/08/smartthings-smart-home-monitor-shm-mqtt-home-assistant/).** In turn, it requires the [SmartThings MQTT Bridge](https://github.com/stjohnjohnson/smartthings-mqtt-bridge).
## Prerequisties
## Install
npm install
## Configuration
\ No newline at end of file
index.js 0 → 100644
'use strict';
/**
* LIBRARIES
*/
var async = require( 'async' );
var mqtt = require( 'mqtt' );
/**
* CONFIGURATION
*/
var config = require( './config.json' || './config-sample.json' );
{
"name": "dash-button-shm",
"version": "0.1.0",
"description": "Control Samsung SmartThings Home Monitor with an Amazon Dash button",
"author": "Erick Hitter <contact@ethitter.com>",
"license": "GPL-2.0+",
"main": "index.js",
"keywords": [
"smartthings",
"smart home monitor",
"shm",
"dash",
"amazon dash",
"dash button"
],
"dependencies": {
"async": "*",
"mqtt": "*",
"node-dash-button": "*"
},
"repository": {
"type": "git",
"url": "https://git.ethitter.com/open-source/dash-button-shm.git"
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment