Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
erocm123 committed May 3, 2018
0 parents commit 029b0e2
Show file tree
Hide file tree
Showing 109 changed files with 39,046 additions and 0 deletions.

Large diffs are not rendered by default.

Binary file not shown.
1,068 changes: 1,068 additions & 0 deletions Drivers/aeon-multisensor-6-advanced.src/aeon-multisensor-6-advanced.groovy

Large diffs are not rendered by default.

733 changes: 733 additions & 0 deletions Drivers/aeon-multisensor.src/aeon-multisensor.groovy

Large diffs are not rendered by default.

883 changes: 883 additions & 0 deletions Drivers/aeon-rgbw-bulb-advanced.src/aeon-rgbw-bulb-advanced.groovy

Large diffs are not rendered by default.

422 changes: 422 additions & 0 deletions Drivers/aeon-smartstrip-6-switch.src/aeon-smartstrip-6-switch.groovy

Large diffs are not rendered by default.

433 changes: 433 additions & 0 deletions Drivers/aeon-smartstrip.src/aeon-smartstrip.groovy

Large diffs are not rendered by default.

570 changes: 570 additions & 0 deletions Drivers/aeon-wallmote.src/aeon-wallmote.groovy

Large diffs are not rendered by default.

1,230 changes: 1,230 additions & 0 deletions Drivers/alarm-com-smart-thermostat.src/alarm-com-smart-thermostat.groovy

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Carbon Dioxide Detector Child Device
*
* Copyright 2017 Eric Maycock
*
* 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.
*
*/
metadata {
definition (name: "Carbon Dioxide Detector Child Device", namespace: "erocm123", author: "Eric Maycock") {
capability "Carbon Dioxide Measurement"
capability "Sensor"
}

tiles() {
multiAttributeTile(name:"smoke", type: "generic", width: 6, height: 4){
tileAttribute ("device.alarmState", key: "PRIMARY_CONTROL") {
attributeState("clear", label:"clear", icon:"st.alarm.smoke.clear", backgroundColor:"#ffffff")
attributeState("carbonMonoxide", label:"dioxide", icon:"st.alarm.carbon-monoxide.carbon-monoxide", backgroundColor:"#e86d13")
}
}
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Carbon Monoxide Detector Child Device
*
* Copyright 2017 Eric Maycock
*
* 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.
*
*/
metadata {
definition (name: "Carbon Monoxide Detector Child Device", namespace: "erocm123", author: "Eric Maycock") {
capability "Carbon Monoxide Detector"
capability "Sensor"
}

tiles() {
multiAttributeTile(name:"carbonMonoxide", type: "generic", width: 6, height: 4){
tileAttribute ("device.carbonMonoxide", key: "PRIMARY_CONTROL") {
attributeState("clear", label:"clear", icon:"st.alarm.smoke.clear", backgroundColor:"#ffffff")
attributeState("detected", label:"monoxide", icon:"st.alarm.carbon-monoxide.carbon-monoxide", backgroundColor:"#e86d13")
}
}
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/**
* Contact Sensor Child Device
*
* Copyright 2017 Eric Maycock
*
* 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.
*
*/
metadata {
definition (name: "Contact Sensor Child Device", namespace: "erocm123", author: "Eric Maycock") {
capability "Contact Sensor"
capability "Sensor"
}

tiles() {
multiAttributeTile(name:"contact", type: "generic"){
tileAttribute ("device.contact", key: "PRIMARY_CONTROL") {
attributeState "open", label:'${name}', icon:"st.contact.contact.open", backgroundColor:"#e86d13"
attributeState "closed", label:'${name}', icon:"st.contact.contact.closed", backgroundColor:"#00a0dc"
}
}
}

}
Loading

0 comments on commit 029b0e2

Please sign in to comment.