View gist:6720308
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata { | |
// simulator metadata | |
simulator { | |
// status messages | |
status "on": "on/off: 1" | |
status "off": "on/off: 0" | |
// reply messages | |
reply "zcl on-off on": "on/off: 1" | |
reply "zcl on-off off": "on/off: 0" |
View gist:6616375
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/**** | |
* Mode Change AWAY | |
* Bon Voyage with some minor additions | |
* | |
* Author: SmartThings | |
* Date: 2013-03-07 | |
* Mods by Carl Aydelotte | |
* | |
* Monitors a set of presence detectors and triggers a mode change when everyone has left plus an indicator light to display when | |
* the mode is set to AWAY |
View smartsense-virtual-open-closed.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* SmartSense Virtual OpenClosed | |
* | |
* Author: SmartThings | |
* Date: 2013-03-07 | |
*/ | |
metadata { | |
simulator { | |
status "open": "zone report :: type: 19 value: 0031" | |
status "closed": "zone report :: type: 19 value: 0030" |
View read_from_arduino.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Read From Arduino | |
* | |
* Author: urman | |
* Date: 2013-03-14 | |
* Revision 2014-07-10 | |
*/ | |
// for the UI | |
metadata { |
View Shield_on_off_hello.ino
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//***************************************************************************** | |
/// @file | |
/// @brief | |
/// Arduino SmartThings Shield LED Example | |
//***************************************************************************** | |
#include <SoftwareSerial.h> //TODO need to set due to some weird wire language linker, should we absorb this whole library into smartthings | |
#include <SmartThings.h> | |
#define PIN_THING_RX 3 |
View smartsense-garage-door-multi.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* SmartSense Garage Door Multi | |
* | |
* Author: SmartThings | |
* Date: 2013-03-09 | |
*/ | |
metadata { | |
simulator { | |
status "open": "zone report :: type: 19 value: 0031" | |
status "closed": "zone report :: type: 19 value: 0030" |
View momentary-capability.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata { | |
// simulator metadata | |
simulator { | |
// status messages | |
// none | |
// reply messages | |
reply "'on','delay 2000','off'": "switch:off" | |
} |
View lock-capability.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata { | |
simulator { | |
status "locked": "lock:locked" | |
status "unlocked": "lock:unlocked" | |
reply "lock": "lock:locked" | |
reply "unlock": "lock:unlocked" | |
} | |
tiles { |