bravenel
(Bruce)
September 14, 2015, 3:02am
20
Light Power Allowance is missing also. The other missing feature is to select how many minutes after motion stops to turn something off. There is no input for minutes in that case in Smart Lights. That’s an omission that should be fixed. I would assume that turn off after some time missing is an oversight, and they should fix that also.
I just wrote two very small apps to do these two functions:
For Turn off after motion stops:
/**
* Turn off after motion stops
*
* Copyright 2015 Bruce Ravenel
*
* 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.
*
*/
definition(
name: "Turn off after motion stops",
namespace: "bravenel",
author: "Bruce Ravenel",
description: "Turn some switches off some minutes after motion stops",
This file has been truncated. show original
For Turn off after some minutes:
/**
* Turn off after some minutes
*
* Copyright 2015 Bruce Ravenel
*
* 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.
*
*/
definition(
name: "Turn off after some minutes",
namespace: "bravenel",
author: "Bruce Ravenel",
description: "Turn switches off after some number of minutes with restriction options",
This file has been truncated. show original
8 Likes