├── README.md ├── devicetypes └── tomasaxerot │ ├── bosch-motion-detector.src │ └── bosch-motion-detector.groovy │ ├── nibe-f750.src │ ├── README.md │ └── nibe-f750.groovy │ ├── ubisys-component.src │ └── ubisys-component.groovy │ ├── ubisys-power-switch-s1.src │ └── ubisys-power-switch-s1.groovy │ ├── ubisys-power-switch-s2.src │ ├── README.md │ └── ubisys-power-switch-s2.groovy │ ├── ubisys-universal-dimmer-d1.src │ └── ubisys-universal-dimmer-d1.groovy │ ├── virtual-contact-sensor.src │ └── virtual-contact-sensor.groovy │ ├── virtual-motion-sensor.src │ └── virtual-motion-sensor.groovy │ ├── virtual-multi-sensor.src │ └── virtual-multi-sensor.groovy │ └── visonic-door-window-sensor.src │ └── visonic-door-window-sensor.groovy ├── img └── screenshot_nibe_f750.png └── smartapps └── tomasaxerot ├── alarm-proxy.src └── alarm-proxy.groovy └── nibe-uplink.src ├── README.md └── nibe-uplink.groovy /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/README.md -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/bosch-motion-detector.src/bosch-motion-detector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/bosch-motion-detector.src/bosch-motion-detector.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/nibe-f750.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/nibe-f750.src/README.md -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/nibe-f750.src/nibe-f750.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/nibe-f750.src/nibe-f750.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/ubisys-component.src/ubisys-component.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/ubisys-component.src/ubisys-component.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/ubisys-power-switch-s1.src/ubisys-power-switch-s1.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/ubisys-power-switch-s1.src/ubisys-power-switch-s1.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/ubisys-power-switch-s2.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/ubisys-power-switch-s2.src/README.md -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/ubisys-power-switch-s2.src/ubisys-power-switch-s2.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/ubisys-power-switch-s2.src/ubisys-power-switch-s2.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/ubisys-universal-dimmer-d1.src/ubisys-universal-dimmer-d1.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/ubisys-universal-dimmer-d1.src/ubisys-universal-dimmer-d1.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/virtual-contact-sensor.src/virtual-contact-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/virtual-contact-sensor.src/virtual-contact-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/virtual-motion-sensor.src/virtual-motion-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/virtual-motion-sensor.src/virtual-motion-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/virtual-multi-sensor.src/virtual-multi-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/virtual-multi-sensor.src/virtual-multi-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/tomasaxerot/visonic-door-window-sensor.src/visonic-door-window-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/devicetypes/tomasaxerot/visonic-door-window-sensor.src/visonic-door-window-sensor.groovy -------------------------------------------------------------------------------- /img/screenshot_nibe_f750.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/img/screenshot_nibe_f750.png -------------------------------------------------------------------------------- /smartapps/tomasaxerot/alarm-proxy.src/alarm-proxy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/smartapps/tomasaxerot/alarm-proxy.src/alarm-proxy.groovy -------------------------------------------------------------------------------- /smartapps/tomasaxerot/nibe-uplink.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/smartapps/tomasaxerot/nibe-uplink.src/README.md -------------------------------------------------------------------------------- /smartapps/tomasaxerot/nibe-uplink.src/nibe-uplink.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomasaxerot/SmartThings/HEAD/smartapps/tomasaxerot/nibe-uplink.src/nibe-uplink.groovy --------------------------------------------------------------------------------