mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-20 05:10:51 +00:00
Compare commits
12 Commits
MSA-1670-1
...
PROD_2017.
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a17971d68c | ||
|
|
076ffecd19 | ||
|
|
8db0556696 | ||
|
|
490ec329cb | ||
|
|
3109049122 | ||
|
|
930c4ed914 | ||
|
|
259516f21f | ||
|
|
b7a08a88e0 | ||
|
|
76e139153a | ||
|
|
a4bc248006 | ||
|
|
e7eb461b4e | ||
|
|
083ed7cc9a |
@@ -1,360 +0,0 @@
|
|||||||
/**
|
|
||||||
* LANnouncer Alerter (Formerly LANdroid - but Google didn't like that much.)
|
|
||||||
*
|
|
||||||
* Requires the LANnouncer android app; https://play.google.com/store/apps/details?id=com.keybounce.lannouncer
|
|
||||||
* See http://www.keybounce.com/LANdroidHowTo/LANdroid.html for full downloads and instructions.
|
|
||||||
* SmartThings thread: https://community.smartthings.com/t/android-as-a-speech-alarm-device-released/30282/12
|
|
||||||
*
|
|
||||||
* Note: Only Siren and Strobe from the U.I. or Alarm capabilities default to continuous.
|
|
||||||
*
|
|
||||||
* Version 1.25 22 July 2016
|
|
||||||
*
|
|
||||||
*
|
|
||||||
* Copyright 2015-2016 Tony McNamara
|
|
||||||
*
|
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
|
||||||
* in compliance with the License. You may obtain a copy of the License at:
|
|
||||||
*
|
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
|
||||||
*
|
|
||||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
|
|
||||||
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
|
|
||||||
* for the specific language governing permissions and limitations under the License.
|
|
||||||
*
|
|
||||||
* To Do: Add string return to Image Capture attribute
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
|
|
||||||
metadata {
|
|
||||||
definition (name: "LANnouncer Alerter", namespace: "KeyBounce", author: "Tony McNamara") {
|
|
||||||
capability "Alarm"
|
|
||||||
capability "Speech Synthesis"
|
|
||||||
capability "Notification"
|
|
||||||
capability "Tone"
|
|
||||||
capability "Image Capture"
|
|
||||||
attribute "LANdroidSMS","string"
|
|
||||||
/* Per http://docs.smartthings.com/en/latest/device-type-developers-guide/overview.html#actuator-and-sensor */
|
|
||||||
capability "Sensor"
|
|
||||||
capability "Actuator"
|
|
||||||
|
|
||||||
// Custom Commands
|
|
||||||
/** Retrieve image, formatted for SmartThings, from camera by name. */
|
|
||||||
command "chime"
|
|
||||||
command "doorbell"
|
|
||||||
command "ipCamSequence", ["number"]
|
|
||||||
command "retrieveAndWait", ["string"]
|
|
||||||
command "retrieveFirstAndWait"
|
|
||||||
command "retrieveSecondAndWait"
|
|
||||||
}
|
|
||||||
preferences {
|
|
||||||
input("DeviceLocalLan", "string", title:"Android IP Address", description:"Please enter your tablet's I.P. address", defaultValue:"" , required: false, displayDuringSetup: true)
|
|
||||||
input("DevicePort", "string", title:"Android Port", description:"Port the Android device listens on", defaultValue:"1035", required: false, displayDuringSetup: true)
|
|
||||||
input("ReplyOnEmpty", "bool", title:"Say Nothing", description:"When no speech is found, announce LANdroid? (Needed for the speech and notify tiles to work)", defaultValue: true, displayDuringSetup: true)
|
|
||||||
input("AlarmContinuous", "bool", title:"Continuous Alarm (vs 10 sec.)", description: "When on, the alarm will sound until Stop is issued.", defaultValue: false, displayDuringSetup: true)
|
|
||||||
}
|
|
||||||
|
|
||||||
simulator {
|
|
||||||
// reply messages
|
|
||||||
["strobe","siren","both","off"].each
|
|
||||||
{
|
|
||||||
reply "$it": "alarm:$it"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
tiles {
|
|
||||||
standardTile("alarm", "device.alarm", width: 2, height: 2) {
|
|
||||||
state "off", label:'off', action:'alarm.both', icon:"st.alarm.alarm.alarm", backgroundColor:"#ffffff"
|
|
||||||
state "strobe", label:'strobe!', action:'alarm.off', icon:"st.Lighting.light11", backgroundColor:"#e86d13"
|
|
||||||
state "siren", label:'siren!', action:'alarm.off', icon:"st.alarm.alarm.alarm", backgroundColor:"#e86d13"
|
|
||||||
state "both", label:'alarm!', action:'alarm.off', icon:"st.alarm.alarm.alarm", backgroundColor:"#e86d13"
|
|
||||||
}
|
|
||||||
standardTile("strobe", "device.alarm", inactiveLabel: false, decoration: "flat") {
|
|
||||||
state "default", label:'', action:"alarm.strobe", icon:"st.secondary.strobe"
|
|
||||||
}
|
|
||||||
|
|
||||||
standardTile("siren", "device.alarm", inactiveLabel: false, decoration: "flat") {
|
|
||||||
state "default", label:'', action:"alarm.siren", icon:"st.secondary.siren"
|
|
||||||
}
|
|
||||||
standardTile("off", "device.alarm", inactiveLabel: false, decoration: "flat") {
|
|
||||||
state "default", label:'Off', action:"alarm.off", icon:"st.quirky.spotter.quirky-spotter-sound-off"
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Apparently can't show image attributes on tiles. */
|
|
||||||
standardTile("take", "device.image", width: 1, height: 1, canChangeIcon: false, canChangeBackground: false)
|
|
||||||
{
|
|
||||||
state "take", label: "Take", action: "Image Capture.take", icon: "st.camera.camera", backgroundColor: "#FFFFFF", nextState:"taking"
|
|
||||||
state "taking", label:'Taking', action: "", icon: "st.camera.take-photo", backgroundColor: "#53a7c0"
|
|
||||||
state "image", label: "Take", action: "Image Capture.take", icon: "st.camera.camera", backgroundColor: "#FFFFFF", nextState:"taking"
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
standardTile("speak", "device.speech", inactiveLabel: false, decoration: "flat")
|
|
||||||
{
|
|
||||||
state "default", label:'Speak', action:"Speech Synthesis.speak", icon:"st.Electronics.electronics13"
|
|
||||||
}
|
|
||||||
standardTile("toast", "device.notification", inactiveLabel: false, decoration: "flat") {
|
|
||||||
state "default", label:'Notify', action:"notification.deviceNotification", icon:"st.Kids.kids1"
|
|
||||||
}
|
|
||||||
standardTile("beep", "device.tone", inactiveLabel: false, decoration: "flat") {
|
|
||||||
state "default", label:'Tone', action:"tone.beep", icon:"st.Entertainment.entertainment2"
|
|
||||||
}
|
|
||||||
carouselTile("cameraDetails", "device.image", width: 3, height: 2) { }
|
|
||||||
|
|
||||||
main (["alarm", "take"]);
|
|
||||||
details(["alarm","strobe","siren","off","speak", "take","toast","beep", "cameraDetails"]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Generally matches TTSServer/app/build.gradle */
|
|
||||||
String getVersion() {return "24 built July 2016";}
|
|
||||||
|
|
||||||
|
|
||||||
/** Alarm Capability, Off.
|
|
||||||
* Turns off both the strobe and the alarm.
|
|
||||||
* Necessary when in continuous mode.
|
|
||||||
*/
|
|
||||||
def off() {
|
|
||||||
log.debug "Executing 'off'"
|
|
||||||
sendEvent(name:"alarm", value:"off")
|
|
||||||
def command="&ALARM=STOP&FLASH=STOP&"+getDoneString();
|
|
||||||
return sendCommands(command)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Alarm Capability: Strobe
|
|
||||||
* Flashes the camera light, if any.
|
|
||||||
*/
|
|
||||||
def strobe() {
|
|
||||||
log.debug "Executing 'strobe'"
|
|
||||||
// For illustration, switch to siren and sendEvent after.
|
|
||||||
def command= (AlarmContinuous?"&FLASH=CONTINUOUS&":"&FLASH=STROBE&")+getDoneString();
|
|
||||||
// def command=(AlarmContinuous?"&ALARM=SIREN:CONTINUOUS&":"&ALARM=SIREN&")+getDoneString();
|
|
||||||
def hubAction = sendCommands(command)
|
|
||||||
sendEvent(name:"alarm", value:"strobe")
|
|
||||||
return hubAction;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Alarm Capability: Siren
|
|
||||||
* Sounds the siren, either continuous or for a brief period, depending on setting.
|
|
||||||
* If continuous, Stop should be called later.
|
|
||||||
*/
|
|
||||||
def siren() {
|
|
||||||
log.debug "Executing 'siren'"
|
|
||||||
sendEvent(name:"alarm", value:"siren")
|
|
||||||
def command=(AlarmContinuous?"&ALARM=SIREN:CONTINUOUS&":"&ALARM=SIREN&")+getDoneString();
|
|
||||||
return sendCommands(command);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Tone Capability: Beep
|
|
||||||
* Sounds a short beep
|
|
||||||
*/
|
|
||||||
def beep() {
|
|
||||||
log.debug "Executing 'beep'"
|
|
||||||
def command="&ALARM=CHIME&"+getDoneString()
|
|
||||||
return sendCommands(command);
|
|
||||||
}
|
|
||||||
|
|
||||||
def both() {
|
|
||||||
log.debug "Executing 'both'"
|
|
||||||
sendEvent(name:"alarm", value:"both")
|
|
||||||
def command="&ALARM=ON&FLASH=ON&"+getDoneString()
|
|
||||||
if (AlarmContinuous)
|
|
||||||
{
|
|
||||||
command="&ALARM=SIREN:CONTINUOUS&FLASH=CONTINUOUS&"+getDoneString()
|
|
||||||
}
|
|
||||||
return sendCommands(command);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** speechSynthesis Capability: Speak
|
|
||||||
*/
|
|
||||||
def speak(toSay) {
|
|
||||||
log.debug "Executing 'speak'"
|
|
||||||
if (!toSay?.trim()) {
|
|
||||||
if (ReplyOnEmpty) {
|
|
||||||
toSay = "LANnouncer Version ${version}"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (toSay?.trim()) {
|
|
||||||
def command="&SPEAK="+toSay+"&"+getDoneString()
|
|
||||||
return sendCommands(command)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Notification capability: deviceNotification
|
|
||||||
*/
|
|
||||||
def deviceNotification(toToast) {
|
|
||||||
log.debug "Executing notification with "+toToast
|
|
||||||
if (!toToast?.trim()) {
|
|
||||||
if (ReplyOnEmpty) {
|
|
||||||
toToast = "LANnouncer Version ${version}";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (toToast?.trim()) {
|
|
||||||
def command="&TOAST="+toToast+"&"+getDoneString()
|
|
||||||
return sendCommands(command)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def chime() {
|
|
||||||
log.debug "Executing 'chime'"
|
|
||||||
// TODO: handle 'siren' command
|
|
||||||
def command="&ALARM=CHIME&"+getDoneString()
|
|
||||||
return sendCommands(command)
|
|
||||||
}
|
|
||||||
|
|
||||||
def doorbell() {
|
|
||||||
log.debug "Executing 'doorbell'"
|
|
||||||
// TODO: handle 'siren' command
|
|
||||||
def command="&ALARM=DOORBELL&"+getDoneString()
|
|
||||||
return sendCommands(command)
|
|
||||||
}
|
|
||||||
|
|
||||||
def ipCamSequence(cameraNumber) {
|
|
||||||
def camera = (cameraNumber==1?"FIRST":"SECOND");
|
|
||||||
def command="&RETRIEVESEQ="+cameraNumber+"&"+getDoneString()
|
|
||||||
return sendIPCommand(command, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
def retrieveFirstAndWait() {
|
|
||||||
retrieveAndWait("FIRST");
|
|
||||||
}
|
|
||||||
def retrieveSecondAndWait() {
|
|
||||||
retrieveAndWait("SECOND");
|
|
||||||
}
|
|
||||||
def retrieveAndWait(cameraName) {
|
|
||||||
log.info("Requesting image from camera ${cameraName}");
|
|
||||||
def command="&RETRIEVE="+cameraName+"&STSHRINK=TRUE&"+getDoneString()
|
|
||||||
return sendIPCommand(command, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
def take() {
|
|
||||||
// This won't result in received file. Can't handle large or binaries in hub.
|
|
||||||
log.debug "Executing 'take'"
|
|
||||||
def command="&PHOTO=BACK&STSHRINK=TRUE&"+getDoneString()
|
|
||||||
return sendIPCommand(command, true)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Send to IP and to SMS as appropriate
|
|
||||||
* The caller MUST return the value, which is the hubAction.
|
|
||||||
* As of version 1.25, does not "send" the command so much as
|
|
||||||
* request that the calling service send it.
|
|
||||||
*/
|
|
||||||
private sendCommands(command) {
|
|
||||||
log.info "Command request: "+command
|
|
||||||
sendSMSCommand(command)
|
|
||||||
return sendIPCommand(command)
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Prepares the hubAction to be executed.
|
|
||||||
* Pre-V25, this was executed in-line.
|
|
||||||
* Now it is returned, not executed, and must be returned up the calling chain.
|
|
||||||
*/
|
|
||||||
private sendIPCommand(commandString, sendToS3 = false) {
|
|
||||||
log.info "Sending command "+ commandString+" to "+DeviceLocalLan+":"+DevicePort
|
|
||||||
if (DeviceLocalLan?.trim()) {
|
|
||||||
def hosthex = convertIPtoHex(DeviceLocalLan)
|
|
||||||
def porthex = convertPortToHex(DevicePort)
|
|
||||||
device.deviceNetworkId = "$hosthex:$porthex"
|
|
||||||
|
|
||||||
def headers = [:]
|
|
||||||
headers.put("HOST", "$DeviceLocalLan:$DevicePort")
|
|
||||||
|
|
||||||
def method = "GET"
|
|
||||||
|
|
||||||
def hubAction = new physicalgraph.device.HubAction(
|
|
||||||
method: method,
|
|
||||||
path: "/"+commandString,
|
|
||||||
headers: headers
|
|
||||||
);
|
|
||||||
if (sendToS3 == true)
|
|
||||||
{
|
|
||||||
hubAction.options = [outputMsgToS3:true];
|
|
||||||
}
|
|
||||||
log.debug hubAction
|
|
||||||
return hubAction;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private sendSMSCommand(commandString) {
|
|
||||||
def preface = "+@TTSSMS@+"
|
|
||||||
def smsValue = preface+"&"+commandString
|
|
||||||
state.lastsmscommand = smsValue
|
|
||||||
sendEvent(name: "LANdroidSMS", value: smsValue, isStateChange: true)
|
|
||||||
/*
|
|
||||||
if (SMSPhone?.trim()) {
|
|
||||||
sendSmsMessage(SMSPhone, preface+"&"+commandString)
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
private String getDoneString() {
|
|
||||||
return "@DONE@"
|
|
||||||
}
|
|
||||||
|
|
||||||
def parse(String description) {
|
|
||||||
log.debug "Parsing '${description}'"
|
|
||||||
def map = parseLanMessage(description);
|
|
||||||
log.debug "As LAN: " + map;
|
|
||||||
if ((map.headers) && (map.headers.'Content-Type' != null) && (map.headers.'Content-Type'.contains("image/jpeg")) )
|
|
||||||
{ // Store the file
|
|
||||||
if(map.body)
|
|
||||||
{
|
|
||||||
storeImage(getPictureName(), map.body);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/* 'index:0F, mac:0073E023A13A, ip:C0A80114, port:040B, requestId:f9036fb2-9637-40b8-b2c5-71ba5a09fd3e, bucket:smartthings-device-conn-temp, key:fc8e3dfd-5035-40a2-8adc-a312926f9034' */
|
|
||||||
|
|
||||||
else if (map.bucket && map.key)
|
|
||||||
{ // S3 pointer; retrieve image from it to store.
|
|
||||||
try {
|
|
||||||
def s3ObjectContent; // Needed for scope of try-catch
|
|
||||||
def imageBytes = getS3Object(map.bucket, map.key + ".jpg")
|
|
||||||
|
|
||||||
if(imageBytes)
|
|
||||||
{
|
|
||||||
log.info ("Got image bytes; saving them.")
|
|
||||||
s3ObjectContent = imageBytes.getObjectContent()
|
|
||||||
def bytes = new ByteArrayInputStream(s3ObjectContent.bytes)
|
|
||||||
storeImage(getPictureName(), bytes)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
catch(Exception e)
|
|
||||||
{
|
|
||||||
log.error e
|
|
||||||
}
|
|
||||||
finally {
|
|
||||||
//explicitly close the stream
|
|
||||||
if (s3ObjectContent) { s3ObjectContent.close() }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// Image Capture handling
|
|
||||||
/* Note that images are stored in https://graph.api.smartthings.com/api/s3/smartthings-smartsense-camera/[IMAGE-ID4],
|
|
||||||
* where [IMAGE-ID] is listed in the IDE under My Devices > [Camera] > Current States: Image. That page is updated as pictures are taken.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
private getPictureName() {
|
|
||||||
def pictureUuid = java.util.UUID.randomUUID().toString().replaceAll('-', '')
|
|
||||||
log.debug pictureUuid
|
|
||||||
def picName = device.deviceNetworkId.replaceAll(':', '') + "_$pictureUuid" + ".jpg"
|
|
||||||
return picName
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private String convertIPtoHex(ipAddress) {
|
|
||||||
String hex = ipAddress.tokenize( '.' ).collect { String.format( '%02X', it.toInteger() ) }.join()
|
|
||||||
log.debug "IP address entered is $ipAddress and the converted hex code is $hex"
|
|
||||||
return hex
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
private String convertPortToHex(port) {
|
|
||||||
String hexport = port.toString().format( '%04X', port.toInteger() )
|
|
||||||
log.debug hexport
|
|
||||||
return hexport
|
|
||||||
}
|
|
||||||
@@ -99,7 +99,7 @@ def parse(String description) {
|
|||||||
|
|
||||||
def poll() {
|
def poll() {
|
||||||
def refreshCmds = [
|
def refreshCmds = [
|
||||||
"st wattr 0x${device.deviceNetworkId} 1 8 0x10 0x21 {${state?.dOnOff ?: '0000'}}", "delay 500"
|
"st wattr 0x${device.deviceNetworkId} 1 8 0x10 0x21 {${state?.dOnOff ?: '0000'}}", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
return refreshCmds + zigbee.onOffRefresh() + zigbee.levelRefresh()
|
return refreshCmds + zigbee.onOffRefresh() + zigbee.levelRefresh()
|
||||||
@@ -197,7 +197,7 @@ def off() {
|
|||||||
|
|
||||||
def refresh() {
|
def refresh() {
|
||||||
def refreshCmds = [
|
def refreshCmds = [
|
||||||
"st wattr 0x${device.deviceNetworkId} 1 8 0x10 0x21 {${state?.dOnOff ?: '0000'}}", "delay 500"
|
"st wattr 0x${device.deviceNetworkId} 1 8 0x10 0x21 {${state?.dOnOff ?: '0000'}}", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
return refreshCmds + zigbee.onOffRefresh() + zigbee.levelRefresh() + zigbee.onOffConfig()
|
return refreshCmds + zigbee.onOffRefresh() + zigbee.levelRefresh() + zigbee.onOffConfig()
|
||||||
|
|||||||
@@ -128,9 +128,9 @@ def setLevel(value) {
|
|||||||
|
|
||||||
def refresh() {
|
def refresh() {
|
||||||
[
|
[
|
||||||
"st rattr 0x${device.deviceNetworkId} ${endpointId} 6 0", "delay 500",
|
"st rattr 0x${device.deviceNetworkId} ${endpointId} 6 0", "delay 2000",
|
||||||
"st rattr 0x${device.deviceNetworkId} ${endpointId} 8 0", "delay 500",
|
"st rattr 0x${device.deviceNetworkId} ${endpointId} 8 0", "delay 2000",
|
||||||
"st rattr 0x${device.deviceNetworkId} ${endpointId} 0x0B04 0x050B", "delay 500"
|
"st rattr 0x${device.deviceNetworkId} ${endpointId} 0x0B04 0x050B", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -313,9 +313,9 @@ def isDescriptionPower(descMap) {
|
|||||||
|
|
||||||
def onOffConfig() {
|
def onOffConfig() {
|
||||||
[
|
[
|
||||||
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 6 {${device.zigbeeId}} {}", "delay 200",
|
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 6 {${device.zigbeeId}} {}", "delay 2000",
|
||||||
"zcl global send-me-a-report 6 0 0x10 0 600 {01}",
|
"zcl global send-me-a-report 6 0 0x10 0 600 {01}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 1500"
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -323,9 +323,9 @@ def onOffConfig() {
|
|||||||
//min level change is 01
|
//min level change is 01
|
||||||
def levelConfig() {
|
def levelConfig() {
|
||||||
[
|
[
|
||||||
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 8 {${device.zigbeeId}} {}", "delay 200",
|
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 8 {${device.zigbeeId}} {}", "delay 2000",
|
||||||
"zcl global send-me-a-report 8 0 0x20 5 3600 {01}",
|
"zcl global send-me-a-report 8 0 0x20 5 3600 {01}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 1500"
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -333,9 +333,10 @@ def levelConfig() {
|
|||||||
//min change in value is 05
|
//min change in value is 05
|
||||||
def powerConfig() {
|
def powerConfig() {
|
||||||
[
|
[
|
||||||
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 0x0B04 {${device.zigbeeId}} {}", "delay 200",
|
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 0x0B04 {${device.zigbeeId}} {}", "delay 2000",
|
||||||
"zcl global send-me-a-report 0x0B04 0x050B 0x29 1 600 {05 00}", //The send-me-a-report is custom to the attribute type for CentraLite
|
"zcl global send-me-a-report 0x0B04 0x050B 0x29 1 600 {05 00}", //The send-me-a-report is custom to the attribute type for CentraLite
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 500"
|
"delay 200",
|
||||||
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -344,7 +345,10 @@ def setLevelWithRate(level, rate) {
|
|||||||
rate = "0000"
|
rate = "0000"
|
||||||
}
|
}
|
||||||
level = convertToHexString(level * 255 / 100) //Converting the 0-100 range to 0-FF range in hex
|
level = convertToHexString(level * 255 / 100) //Converting the 0-100 range to 0-FF range in hex
|
||||||
"st cmd 0x${device.deviceNetworkId} ${endpointId} 8 4 {$level $rate}"
|
[
|
||||||
|
"st cmd 0x${device.deviceNetworkId} ${endpointId} 8 4 {$level $rate}",
|
||||||
|
"delay 2000"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
String convertToHexString(value, width=2) {
|
String convertToHexString(value, width=2) {
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ def on() {
|
|||||||
'zcl on-off on',
|
'zcl on-off on',
|
||||||
'delay 200',
|
'delay 200',
|
||||||
"send 0x${zigbee.deviceNetworkId} 0x01 0x${zigbee.endpointId}",
|
"send 0x${zigbee.deviceNetworkId} 0x01 0x${zigbee.endpointId}",
|
||||||
'delay 500'
|
'delay 2000'
|
||||||
|
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -62,6 +62,6 @@ def off() {
|
|||||||
'zcl on-off off',
|
'zcl on-off off',
|
||||||
'delay 200',
|
'delay 200',
|
||||||
"send 0x${zigbee.deviceNetworkId} 0x01 0x${zigbee.endpointId}",
|
"send 0x${zigbee.deviceNetworkId} 0x01 0x${zigbee.endpointId}",
|
||||||
'delay 500'
|
'delay 2000'
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -157,9 +157,10 @@ def configure() {
|
|||||||
//min change in value is 01
|
//min change in value is 01
|
||||||
def powerConfig() {
|
def powerConfig() {
|
||||||
[
|
[
|
||||||
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 0x0B04 {${device.zigbeeId}} {}", "delay 200",
|
"zdo bind 0x${device.deviceNetworkId} 1 ${endpointId} 0x0B04 {${device.zigbeeId}} {}", "delay 2000",
|
||||||
"zcl global send-me-a-report 0x0B04 0x050B 0x29 1 600 {05 00}", //The send-me-a-report is custom to the attribute type for CentraLite
|
"zcl global send-me-a-report 0x0B04 0x050B 0x29 1 600 {05 00}", //The send-me-a-report is custom to the attribute type for CentraLite
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 500"
|
"delay 200",
|
||||||
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -29,9 +29,10 @@ metadata {
|
|||||||
command "enrollResponse"
|
command "enrollResponse"
|
||||||
|
|
||||||
|
|
||||||
fingerprint inClusters: "0000,0001,0003,0402,0500,0020,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315-S", deviceJoinName: "Water Leak Sensor"
|
fingerprint inClusters: "0000,0001,0003,0402,0500,0020,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315-S", deviceJoinName: "Water Leak Sensor"
|
||||||
fingerprint inClusters: "0000,0001,0003,0402,0500,0020,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315"
|
fingerprint inClusters: "0000,0001,0003,0402,0500,0020,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315"
|
||||||
fingerprint inClusters: "0000,0001,0003,0402,0500,0020,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315-Seu", deviceJoinName: "Water Leak Sensor"
|
fingerprint inClusters: "0000,0001,0003,0402,0500,0020,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315-Seu", deviceJoinName: "Water Leak Sensor"
|
||||||
|
fingerprint inClusters: "0000,0001,0003,0020,0402,0500,0B05", outClusters: "0019", manufacturer: "CentraLite", model: "3315-L", deviceJoinName: "Iris Smart Water Sensor"
|
||||||
fingerprint inClusters: "0000,0001,0003,000F,0020,0402,0500", outClusters: "0019", manufacturer: "SmartThings", model: "moisturev4", deviceJoinName: "Water Leak Sensor"
|
fingerprint inClusters: "0000,0001,0003,000F,0020,0402,0500", outClusters: "0019", manufacturer: "SmartThings", model: "moisturev4", deviceJoinName: "Water Leak Sensor"
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -285,8 +286,8 @@ def ping() {
|
|||||||
def refresh() {
|
def refresh() {
|
||||||
log.debug "Refreshing Temperature and Battery"
|
log.debug "Refreshing Temperature and Battery"
|
||||||
def refreshCmds = [
|
def refreshCmds = [
|
||||||
"st rattr 0x${device.deviceNetworkId} 1 0x402 0", "delay 200",
|
"st rattr 0x${device.deviceNetworkId} 1 0x402 0", "delay 2000",
|
||||||
"st rattr 0x${device.deviceNetworkId} 1 1 0x20", "delay 200"
|
"st rattr 0x${device.deviceNetworkId} 1 1 0x20", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
return refreshCmds + enrollResponse()
|
return refreshCmds + enrollResponse()
|
||||||
@@ -308,10 +309,10 @@ def enrollResponse() {
|
|||||||
[
|
[
|
||||||
//Resending the CIE in case the enroll request is sent before CIE is written
|
//Resending the CIE in case the enroll request is sent before CIE is written
|
||||||
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 500",
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000",
|
||||||
//Enroll Response
|
//Enroll Response
|
||||||
"raw 0x500 {01 23 00 00 00}",
|
"raw 0x500 {01 23 00 00 00}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 1", "delay 200"
|
"send 0x${device.deviceNetworkId} 1 1", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -298,8 +298,8 @@ def ping() {
|
|||||||
def refresh() {
|
def refresh() {
|
||||||
log.debug "refresh called"
|
log.debug "refresh called"
|
||||||
def refreshCmds = [
|
def refreshCmds = [
|
||||||
"st rattr 0x${device.deviceNetworkId} 1 0x402 0", "delay 200",
|
"st rattr 0x${device.deviceNetworkId} 1 0x402 0", "delay 2000",
|
||||||
"st rattr 0x${device.deviceNetworkId} 1 1 0x20", "delay 200"
|
"st rattr 0x${device.deviceNetworkId} 1 1 0x20", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
return refreshCmds + enrollResponse()
|
return refreshCmds + enrollResponse()
|
||||||
@@ -321,10 +321,10 @@ def enrollResponse() {
|
|||||||
[
|
[
|
||||||
//Resending the CIE in case the enroll request is sent before CIE is written
|
//Resending the CIE in case the enroll request is sent before CIE is written
|
||||||
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 500",
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000",
|
||||||
//Enroll Response
|
//Enroll Response
|
||||||
"raw 0x500 {01 23 00 00 00}",
|
"raw 0x500 {01 23 00 00 00}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 1", "delay 200"
|
"send 0x${device.deviceNetworkId} 1 1", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -428,10 +428,10 @@ def enrollResponse() {
|
|||||||
[
|
[
|
||||||
//Resending the CIE in case the enroll request is sent before CIE is written
|
//Resending the CIE in case the enroll request is sent before CIE is written
|
||||||
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 500",
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000",
|
||||||
//Enroll Response
|
//Enroll Response
|
||||||
"raw 0x500 {01 23 00 00 00}", "delay 200",
|
"raw 0x500 {01 23 00 00 00}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 1", "delay 200"
|
"send 0x${device.deviceNetworkId} 1 1", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -252,8 +252,8 @@ def ping() {
|
|||||||
def refresh() {
|
def refresh() {
|
||||||
log.debug "Refreshing Temperature and Battery"
|
log.debug "Refreshing Temperature and Battery"
|
||||||
def refreshCmds = [
|
def refreshCmds = [
|
||||||
"st rattr 0x${device.deviceNetworkId} 1 0x402 0", "delay 200",
|
"st rattr 0x${device.deviceNetworkId} 1 0x402 0", "delay 2000",
|
||||||
"st rattr 0x${device.deviceNetworkId} 1 1 0x20", "delay 200"
|
"st rattr 0x${device.deviceNetworkId} 1 1 0x20", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
return refreshCmds + enrollResponse()
|
return refreshCmds + enrollResponse()
|
||||||
@@ -277,10 +277,10 @@ def enrollResponse() {
|
|||||||
[
|
[
|
||||||
//Resending the CIE in case the enroll request is sent before CIE is written
|
//Resending the CIE in case the enroll request is sent before CIE is written
|
||||||
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
"zcl global write 0x500 0x10 0xf0 {${zigbeeEui}}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 500",
|
"send 0x${device.deviceNetworkId} 1 ${endpointId}", "delay 2000",
|
||||||
//Enroll Response
|
//Enroll Response
|
||||||
"raw 0x500 {01 23 00 00 00}",
|
"raw 0x500 {01 23 00 00 00}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 1", "delay 200"
|
"send 0x${device.deviceNetworkId} 1 1", "delay 2000"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -270,9 +270,9 @@ def configure() {
|
|||||||
|
|
||||||
log.debug "Configuring Reporting and Bindings."
|
log.debug "Configuring Reporting and Bindings."
|
||||||
def humidityConfigCmds = [
|
def humidityConfigCmds = [
|
||||||
"zdo bind 0x${device.deviceNetworkId} 1 1 0xFC45 {${device.zigbeeId}} {}", "delay 500",
|
"zdo bind 0x${device.deviceNetworkId} 1 1 0xFC45 {${device.zigbeeId}} {}", "delay 2000",
|
||||||
"zcl global send-me-a-report 0xFC45 0 0x29 30 3600 {6400}",
|
"zcl global send-me-a-report 0xFC45 0 0x29 30 3600 {6400}", "delay 200",
|
||||||
"send 0x${device.deviceNetworkId} 1 1", "delay 500"
|
"send 0x${device.deviceNetworkId} 1 1", "delay 2000"
|
||||||
]
|
]
|
||||||
|
|
||||||
// temperature minReportTime 30 seconds, maxReportTime 5 min. Reporting interval if no activity
|
// temperature minReportTime 30 seconds, maxReportTime 5 min. Reporting interval if no activity
|
||||||
|
|||||||
@@ -28,8 +28,8 @@ metadata {
|
|||||||
|
|
||||||
fingerprint inClusters: "0000, 0001, 0003, 0020, 0402, 0B05", outClusters: "0003, 0006, 0008, 0019", manufacturer: "OSRAM", model: "LIGHTIFY Dimming Switch", deviceJoinName: "OSRAM LIGHTIFY Dimming Switch"
|
fingerprint inClusters: "0000, 0001, 0003, 0020, 0402, 0B05", outClusters: "0003, 0006, 0008, 0019", manufacturer: "OSRAM", model: "LIGHTIFY Dimming Switch", deviceJoinName: "OSRAM LIGHTIFY Dimming Switch"
|
||||||
//fingerprint inClusters: "0000, 0001, 0003, 0020, 0500", outClusters: "0003,0019", manufacturer: "CentraLite", model: "3455-L", deviceJoinName: "Iris Care Pendant"
|
//fingerprint inClusters: "0000, 0001, 0003, 0020, 0500", outClusters: "0003,0019", manufacturer: "CentraLite", model: "3455-L", deviceJoinName: "Iris Care Pendant"
|
||||||
//fingerprint inClusters: "0000, 0001, 0003, 0007, 0020, 0402, 0B05", outClusters: "0003, 0006, 0019", manufacturer: "CentraLite", model: "3460-L", deviceJoinName: "Iris Smart Button"
|
fingerprint inClusters: "0000, 0001, 0003, 0007, 0020, 0402, 0B05", outClusters: "0003, 0006, 0019", manufacturer: "CentraLite", model: "3460-L", deviceJoinName: "Iris Smart Button"
|
||||||
//fingerprint inClusters: "0000, 0001, 0003, 0007, 0020, 0B05", outClusters: "0003, 0006, 0019", manufacturer: "CentraLite", model:"3450-L", deviceJoinName: "Iris KeyFob"
|
fingerprint inClusters: "0000, 0001, 0003, 0007, 0020, 0B05", outClusters: "0003, 0006, 0019", manufacturer: "CentraLite", model:"3450-L", deviceJoinName: "Iris KeyFob"
|
||||||
}
|
}
|
||||||
|
|
||||||
simulator {}
|
simulator {}
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
/**
|
/**
|
||||||
* Color Coordinator
|
* Color Coordinator
|
||||||
* Version 1.1.0 - 11/9/16
|
* Version 1.1.1 - 11/9/16
|
||||||
* By Michael Struck
|
* By Michael Struck
|
||||||
*
|
*
|
||||||
* 1.0.0 - Initial release
|
* 1.0.0 - Initial release
|
||||||
* 1.1.0 - Fixed issue where master can be part of slaves. This causes a loop that impacts SmartThings.
|
* 1.1.0 - Fixed issue where master can be part of slaves. This causes a loop that impacts SmartThings.
|
||||||
|
* 1.1.1 - Fix NPE being thrown for slave/master inputs being empty.
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
|
||||||
@@ -33,17 +34,17 @@ preferences {
|
|||||||
|
|
||||||
def mainPage() {
|
def mainPage() {
|
||||||
dynamicPage(name: "mainPage", title: "", install: true, uninstall: false) {
|
dynamicPage(name: "mainPage", title: "", install: true, uninstall: false) {
|
||||||
def masterInList = slaves.id.find{it==master.id}
|
def masterInList = slaves?.id?.find{it==master?.id}
|
||||||
if (masterInList) {
|
if (masterInList) {
|
||||||
section ("**WARNING**"){
|
section ("**WARNING**"){
|
||||||
paragraph "You have included the Master Light in the Slave Group. This will cause a loop in execution. Please remove this device from the Slave Group.", image: "https://raw.githubusercontent.com/MichaelStruck/SmartThingsPublic/master/img/caution.png"
|
paragraph "You have included the Master Light in the Slave Group. This will cause a loop in execution. Please remove this device from the Slave Group.", image: "https://raw.githubusercontent.com/MichaelStruck/SmartThingsPublic/master/img/caution.png"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
section("Master Light") {
|
section("Master Light") {
|
||||||
input "master", "capability.colorControl", title: "Colored Light"
|
input "master", "capability.colorControl", title: "Colored Light", required: true
|
||||||
}
|
}
|
||||||
section("Lights that follow the master settings") {
|
section("Lights that follow the master settings") {
|
||||||
input "slaves", "capability.colorControl", title: "Colored Lights", multiple: true, required: false, submitOnChange: true
|
input "slaves", "capability.colorControl", title: "Colored Lights", multiple: true, required: true, submitOnChange: true
|
||||||
}
|
}
|
||||||
section([mobileOnly:true], "Options") {
|
section([mobileOnly:true], "Options") {
|
||||||
input "randomYes", "bool",title: "When Master Turned On, Randomize Color", defaultValue: false
|
input "randomYes", "bool",title: "When Master Turned On, Randomize Color", defaultValue: false
|
||||||
@@ -81,40 +82,44 @@ def init() {
|
|||||||
}
|
}
|
||||||
//-----------------------------------
|
//-----------------------------------
|
||||||
def onOffHandler(evt){
|
def onOffHandler(evt){
|
||||||
if (!slaves.id.find{it==master.id}){
|
if (slaves && master) {
|
||||||
if (master.currentValue("switch") == "on"){
|
if (!slaves?.id.find{it==master?.id}){
|
||||||
if (randomYes) getRandomColorMaster()
|
if (master?.currentValue("switch") == "on"){
|
||||||
else slaves?.on()
|
if (randomYes) getRandomColorMaster()
|
||||||
}
|
else slaves?.on()
|
||||||
else {
|
}
|
||||||
slaves?.off()
|
else {
|
||||||
}
|
slaves?.off()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def colorHandler(evt) {
|
def colorHandler(evt) {
|
||||||
if (!slaves.id.find{it==master.id} && master.currentValue("switch") == "on"){
|
if (slaves && master) {
|
||||||
log.debug "Changing Slave units H,S,L"
|
if (!slaves?.id?.find{it==master?.id} && master?.currentValue("switch") == "on"){
|
||||||
def dimLevel = master.currentValue("level")
|
log.debug "Changing Slave units H,S,L"
|
||||||
def hueLevel = master.currentValue("hue")
|
def dimLevel = master?.currentValue("level")
|
||||||
def saturationLevel = master.currentValue("saturation")
|
def hueLevel = master?.currentValue("hue")
|
||||||
def newValue = [hue: hueLevel, saturation: saturationLevel, level: dimLevel as Integer]
|
def saturationLevel = master.currentValue("saturation")
|
||||||
slaves?.setColor(newValue)
|
def newValue = [hue: hueLevel, saturation: saturationLevel, level: dimLevel as Integer]
|
||||||
try {
|
slaves?.setColor(newValue)
|
||||||
log.debug "Changing Slave color temp"
|
try {
|
||||||
def tempLevel = master.currentValue("colorTemperature")
|
log.debug "Changing Slave color temp"
|
||||||
slaves?.setColorTemperature(tempLevel)
|
def tempLevel = master?.currentValue("colorTemperature")
|
||||||
}
|
slaves?.setColorTemperature(tempLevel)
|
||||||
catch (e){
|
}
|
||||||
log.debug "Color temp for master --"
|
catch (e){
|
||||||
}
|
log.debug "Color temp for master --"
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def getRandomColorMaster(){
|
def getRandomColorMaster(){
|
||||||
def hueLevel = Math.floor(Math.random() *1000)
|
def hueLevel = Math.floor(Math.random() *1000)
|
||||||
def saturationLevel = Math.floor(Math.random() * 100)
|
def saturationLevel = Math.floor(Math.random() * 100)
|
||||||
def dimLevel = master.currentValue("level")
|
def dimLevel = master?.currentValue("level")
|
||||||
def newValue = [hue: hueLevel, saturation: saturationLevel, level: dimLevel as Integer]
|
def newValue = [hue: hueLevel, saturation: saturationLevel, level: dimLevel as Integer]
|
||||||
log.debug hueLevel
|
log.debug hueLevel
|
||||||
log.debug saturationLevel
|
log.debug saturationLevel
|
||||||
@@ -123,12 +128,14 @@ def getRandomColorMaster(){
|
|||||||
}
|
}
|
||||||
|
|
||||||
def tempHandler(evt){
|
def tempHandler(evt){
|
||||||
if (!slaves.id.find{it==master.id} && master.currentValue("switch") == "on"){
|
if (slaves && master) {
|
||||||
if (evt.value != "--") {
|
if (!slaves?.id?.find{it==master?.id} && master?.currentValue("switch") == "on"){
|
||||||
log.debug "Changing Slave color temp based on Master change"
|
if (evt.value != "--") {
|
||||||
def tempLevel = master.currentValue("colorTemperature")
|
log.debug "Changing Slave color temp based on Master change"
|
||||||
slaves?.setColorTemperature(tempLevel)
|
def tempLevel = master.currentValue("colorTemperature")
|
||||||
}
|
slaves?.setColorTemperature(tempLevel)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -139,7 +146,7 @@ private def textAppName() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private def textVersion() {
|
private def textVersion() {
|
||||||
def text = "Version 1.1.0 (11/09/2016)"
|
def text = "Version 1.1.1 (12/13/2016)"
|
||||||
}
|
}
|
||||||
|
|
||||||
private def textCopyright() {
|
private def textCopyright() {
|
||||||
@@ -166,4 +173,4 @@ private def textHelp() {
|
|||||||
"This application will allow you to control the settings of multiple colored lights with one control. " +
|
"This application will allow you to control the settings of multiple colored lights with one control. " +
|
||||||
"Simply choose a master control light, and then choose the lights that will follow the settings of the master, "+
|
"Simply choose a master control light, and then choose the lights that will follow the settings of the master, "+
|
||||||
"including on/off conditions, hue, saturation, level and color temperature. Also includes a random color feature."
|
"including on/off conditions, hue, saturation, level and color temperature. Also includes a random color feature."
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user