Skip to content

Instantly share code, notes, and snippets.

metadata {
simulator {
status "locked": "lock:locked"
status "unlocked": "lock:unlocked"
reply "lock": "lock:locked"
reply "unlock": "lock:unlocked"
}
tiles {
metadata {
// simulator metadata
simulator {
// status messages
// none
// reply messages
reply "'on','delay 2000','off'": "switch:off"
}
/**
* 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"
@aurman
aurman / smartsense-virtual-open-closed.groovy
Created September 16, 2013 22:17
smartsense-virtual-open-closed.groovy
/**
* 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"
/****
* 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
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"
/**
* Aeon Door/Window Sensor
*
* Author: SmartThings
* Date: 2013-04-23
*/
// for the UI
metadata {
// simulator metadata
@aurman
aurman / centralite-dimmer.groovy
Created October 15, 2013 19:16
centralite-dimmer.groovy
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"
@aurman
aurman / Shield_on_off_hello.ino
Last active September 20, 2016 23:37
Arduino On Off Hello
//*****************************************************************************
/// @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
@aurman
aurman / ge-link-bulb.groovy
Last active January 30, 2017 04:00
GE Link Bulb Device Handler (Beta)