├── .gitignore ├── Bonus Apps └── lockcontrol.groovy ├── Dockerfile ├── NAP-demo ├── app.js ├── config.js └── package.json ├── README.md ├── _old_stuff_dont_use └── _old_dont_use_dscPanelDeviceSmartthings.groovy ├── devicetypes ├── DSCAlarmThing.groovy ├── DSCPanel.groovy ├── DSCZoneContact.groovy ├── DSCZoneMotion.groovy ├── DSCZoneSmoke.groovy └── KwiksetLock.groovy └── smartapp └── dscAlarmIntegrationSmarththingsApp.groovy /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/.gitignore -------------------------------------------------------------------------------- /Bonus Apps/lockcontrol.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/Bonus Apps/lockcontrol.groovy -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/Dockerfile -------------------------------------------------------------------------------- /NAP-demo/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/NAP-demo/app.js -------------------------------------------------------------------------------- /NAP-demo/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/NAP-demo/config.js -------------------------------------------------------------------------------- /NAP-demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/NAP-demo/package.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/README.md -------------------------------------------------------------------------------- /_old_stuff_dont_use/_old_dont_use_dscPanelDeviceSmartthings.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/_old_stuff_dont_use/_old_dont_use_dscPanelDeviceSmartthings.groovy -------------------------------------------------------------------------------- /devicetypes/DSCAlarmThing.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/devicetypes/DSCAlarmThing.groovy -------------------------------------------------------------------------------- /devicetypes/DSCPanel.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/devicetypes/DSCPanel.groovy -------------------------------------------------------------------------------- /devicetypes/DSCZoneContact.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/devicetypes/DSCZoneContact.groovy -------------------------------------------------------------------------------- /devicetypes/DSCZoneMotion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/devicetypes/DSCZoneMotion.groovy -------------------------------------------------------------------------------- /devicetypes/DSCZoneSmoke.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/devicetypes/DSCZoneSmoke.groovy -------------------------------------------------------------------------------- /devicetypes/KwiksetLock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/devicetypes/KwiksetLock.groovy -------------------------------------------------------------------------------- /smartapp/dscAlarmIntegrationSmarththingsApp.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martzmakes/SmartDSC/HEAD/smartapp/dscAlarmIntegrationSmarththingsApp.groovy --------------------------------------------------------------------------------