├── .circleci └── config.yml ├── .githooks └── pre-commit ├── .gitignore ├── README.md ├── devicetypes ├── axis │ └── axis-gear-st.src │ │ └── axis-gear-st.groovy ├── capabilities │ ├── acceleration-sensor-capability.src │ │ └── acceleration-sensor-capability.groovy │ ├── alarm-capability.src │ │ └── alarm-capability.groovy │ ├── button-capability.src │ │ └── button-capability.groovy │ ├── contact-sensor-capability.src │ │ └── contact-sensor-capability.groovy │ ├── illuminance-measurement-capability.src │ │ └── illuminance-measurement-capability.groovy │ ├── lock-capability.src │ │ └── lock-capability.groovy │ ├── momentary-capability.src │ │ └── momentary-capability.groovy │ ├── motion-sensor-capability.src │ │ └── motion-sensor-capability.groovy │ ├── presence-sensor-capability.src │ │ └── presence-sensor-capability.groovy │ ├── relative-humidity-measurement-capability.src │ │ └── relative-humidity-measurement-capability.groovy │ ├── switch-capability.src │ │ └── switch-capability.groovy │ ├── switch-level-capability.src │ │ └── switch-level-capability.groovy │ ├── temperature-measurement-capability.src │ │ └── temperature-measurement-capability.groovy │ ├── thermostat-capability.src │ │ └── thermostat-capability.groovy │ ├── three-axis-capability.src │ │ └── three-axis-capability.groovy │ └── water-sensor-capability.src │ │ └── water-sensor-capability.groovy ├── com-obycode │ ├── beaconthing.src │ │ └── beaconthing.groovy │ └── obything-music.src │ │ └── obything-music.groovy ├── curb │ └── curb-power-meter.src │ │ └── curb-power-meter.groovy ├── dianoga │ ├── netatmo-additional-module.src │ │ └── netatmo-additional-module.groovy │ ├── netatmo-basestation.src │ │ └── netatmo-basestation.groovy │ ├── netatmo-outdoor-module.src │ │ └── netatmo-outdoor-module.groovy │ └── netatmo-rain.src │ │ └── netatmo-rain.groovy ├── drzwave │ └── ezmultipli.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── ezmultipli.groovy ├── encored-technologies │ └── enertalk-energy-meter.src │ │ └── enertalk-energy-meter.groovy ├── erocm123 │ ├── inovelli-2-channel-smart-plug-mcd.src │ │ └── inovelli-2-channel-smart-plug-mcd.groovy │ ├── inovelli-2-channel-smart-plug.src │ │ └── inovelli-2-channel-smart-plug.groovy │ └── switch-child-device.src │ │ └── switch-child-device.groovy ├── fibargroup │ ├── fibaro-co-sensor-zw5.src │ │ └── fibaro-co-sensor-zw5.groovy │ ├── fibaro-dimmer-2-zw5.src │ │ └── fibaro-dimmer-2-zw5.groovy │ ├── fibaro-door-window-sensor-2.src │ │ └── fibaro-door-window-sensor-2.groovy │ ├── fibaro-door-window-sensor-zw5-with-temperature.src │ │ └── fibaro-door-window-sensor-zw5-with-temperature.groovy │ ├── fibaro-door-window-sensor-zw5.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── fibaro-door-window-sensor-zw5.groovy │ ├── fibaro-double-switch-2-usb.src │ │ └── fibaro-double-switch-2-usb.groovy │ ├── fibaro-double-switch-2-zw5.src │ │ └── fibaro-double-switch-2-zw5.groovy │ ├── fibaro-flood-sensor-zw5.src │ │ └── fibaro-flood-sensor-zw5.groovy │ ├── fibaro-motion-sensor-zw5.src │ │ └── fibaro-motion-sensor-zw5.groovy │ ├── fibaro-single-switch-2-zw5.src │ │ └── fibaro-single-switch-2-zw5.groovy │ ├── fibaro-wall-plug-eu-zw5.src │ │ └── fibaro-wall-plug-eu-zw5.groovy │ ├── fibaro-wall-plug-us-zw5.src │ │ └── fibaro-wall-plug-us-zw5.groovy │ ├── fibaro-wall-plug-usb.src │ │ └── fibaro-wall-plug-usb.groovy │ ├── fibaro-walli-dimmer-switch.src │ │ └── fibaro-walli-dimmer-switch.groovy │ ├── fibaro-walli-double-switch.src │ │ └── fibaro-walli-double-switch.groovy │ ├── fibaro-walli-roller-shutter-driver.src │ │ └── fibaro-walli-roller-shutter-driver.groovy │ ├── fibaro-walli-roller-shutter-venetian.src │ │ └── fibaro-walli-roller-shutter-venetian.groovy │ └── fibaro-walli-roller-shutter.src │ │ └── fibaro-walli-roller-shutter.groovy ├── gs │ └── gatorsystem-homewatcher.src │ │ └── gatorsystem-homewatcher.groovy ├── heltun │ ├── he-temperature.src │ │ └── he-temperature.groovy │ ├── heltun-child-relay.src │ │ └── heltun-child-relay.groovy │ ├── heltun-ft01-fan-coil-thermostat.src │ │ └── heltun-ft01-fan-coil-thermostat.groovy │ ├── heltun-hls01-switch.src │ │ └── heltun-hls01-switch.groovy │ ├── heltun-hls01-thermostat.src │ │ └── heltun-hls01-thermostat.groovy │ ├── heltun-ht01-thermostat.src │ │ └── heltun-ht01-thermostat.groovy │ ├── heltun-rs01-switch.src │ │ └── heltun-rs01-switch.groovy │ └── heltun-tps05-switch.src │ │ └── heltun-tps05-switch.groovy ├── iblinds │ └── iblinds-zwave.src │ │ └── iblinds-zwave.groovy ├── johnrucker │ └── coopboss-h3vx.src │ │ └── coopboss-h3vx.groovy ├── juano2310 │ └── jawbone-user.src │ │ └── jawbone-user.groovy ├── keen-home │ └── keen-home-smart-vent.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── keen-home-smart-vent.groovy ├── krlaframboise │ └── ecolink-chime-siren.src │ │ └── ecolink-chime-siren.groovy ├── osotech │ └── plantlink.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── plantlink.groovy ├── plaidsystems │ ├── spruce-controller.src │ │ └── spruce-controller.groovy │ ├── spruce-sensor.src │ │ └── spruce-sensor.groovy │ └── spruce-valve.src │ │ └── spruce-valve.groovy ├── qubino │ ├── qubino-3-phase-meter.src │ │ └── qubino-3-phase-meter.groovy │ ├── qubino-dimmer.src │ │ └── qubino-dimmer.groovy │ ├── qubino-flush-2-relay.src │ │ └── qubino-flush-2-relay.groovy │ ├── qubino-flush-shutter.src │ │ └── qubino-flush-shutter.groovy │ └── qubino-temperature-sensor.src │ │ └── qubino-temperature-sensor.groovy ├── roomieremote-agent │ └── simple-sync.src │ │ └── simple-sync.groovy ├── rooms-beautiful │ └── rooms-beautiful-curtain.src │ │ └── rooms-beautiful-curtain.groovy ├── samsungsds │ └── samsung-smart-doorlock.src │ │ ├── README.md │ │ ├── i18n │ │ └── messages.properties │ │ └── samsung-smart-doorlock.groovy ├── sensative │ ├── sensative-strips-drip-700.src │ │ └── sensative-strips-drip-700.groovy │ └── sensative-strips-guard-700.src │ │ └── sensative-strips-guard-700.groovy ├── shinasys │ ├── sihas-dual-motion-sensor.src │ │ └── sihas-dual-motion-sensor.groovy │ ├── sihas-multipurpose-sensor.src │ │ └── sihas-multipurpose-sensor.groovy │ ├── sihas-zigbee-metering-plug.src │ │ └── sihas-zigbee-metering-plug.groovy │ └── sihas-zigbee-power-meter.src │ │ └── sihas-zigbee-power-meter.groovy ├── sinope-technologies │ ├── dm2500zb-sinope-dimmer.src │ │ └── dm2500zb-sinope-dimmer.groovy │ ├── rm3250zb-sinope-load-controller.src │ │ └── rm3250zb-sinope-load-controller.groovy │ ├── sw2500zb-sinope-switch.src │ │ └── sw2500zb-sinope-switch.groovy │ ├── th1123zb-th1124zb-sinope-thermostat.src │ │ └── th1123zb-th1124zb-sinope-thermostat.groovy │ ├── th1300zb-sinope-thermostat.src │ │ └── th1300zb-sinope-thermostat.groovy │ ├── th1400zb-sinope-thermostat.src │ │ └── th1400zb-sinope-thermostat.groovy │ ├── th1500zb-sinope-thermostat.src │ │ └── th1500zb-sinope-thermostat.groovy │ ├── va4200wz-va4200zb-sinope-valve.src │ │ └── va4200wz-va4200zb-sinope-valve.groovy │ └── wl4200s-wl4200-sinope-water-leak-sensor.src │ │ └── wl4200s-wl4200-sinope-water-leak-sensor.groovy ├── sky-nie │ ├── evalogik-door-window-sensor.src │ │ └── evalogik-door-window-sensor.groovy │ ├── in-wall-smart-switch-dimmer.src │ │ └── in-wall-smart-switch-dimmer.groovy │ ├── in-wall-smart-switch.src │ │ └── in-wall-smart-switch.groovy │ ├── min-smart-plug-dimmer.src │ │ └── min-smart-plug-dimmer.groovy │ └── min-smart-plug.src │ │ └── min-smart-plug.groovy ├── smartenit │ ├── iot8-z-child-analog-contact-switch.src │ │ └── iot8-z-child-analog-contact-switch.groovy │ ├── iot8-z-child-contact-switch.src │ │ └── iot8-z-child-contact-switch.groovy │ ├── iot8-z.src │ │ └── iot8-z.groovy │ ├── moisture-sensor-child.src │ │ └── moisture-sensor-child.groovy │ ├── smartelek-evse.src │ │ └── smartelek-evse.groovy │ ├── smartenit-metering-dual-load-controller.src │ │ └── smartenit-metering-dual-load-controller.groovy │ ├── smartenit-moisture-sensor.src │ │ └── smartenit-moisture-sensor.groovy │ └── smartenit-zigbee-metering-outlet.src │ │ └── smartenit-zigbee-metering-outlet.groovy ├── smartthings │ ├── Orvibo-Contact-Sensor.src │ │ ├── Orvibo-Contact-Sensor.groovy │ │ └── i18n │ │ │ └── messages.properties │ ├── aeon-home-energy-meter-c3.src │ │ └── aeon-home-energy-meter-c3.groovy │ ├── aeon-home-energy-meter.src │ │ └── aeon-home-energy-meter.groovy │ ├── aeon-illuminator-module.src │ │ └── aeon-illuminator-module.groovy │ ├── aeon-key-fob.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── aeon-key-fob.groovy │ ├── aeon-led-bulb-6.src │ │ └── aeon-led-bulb-6.groovy │ ├── aeon-led-bulb.src │ │ └── aeon-led-bulb.groovy │ ├── aeon-minimote.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── aeon-minimote.groovy │ ├── aeon-multisensor-6.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── aeon-multisensor-6.groovy │ ├── aeon-multisensor-gen5.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── aeon-multisensor-gen5.groovy │ ├── aeon-multisensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── aeon-multisensor.groovy │ ├── aeon-multiwhite-bulb.src │ │ └── aeon-multiwhite-bulb.groovy │ ├── aeon-outlet.src │ │ └── aeon-outlet.groovy │ ├── aeon-siren.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── aeon-siren.groovy │ ├── aeon-smartstrip.src │ │ └── aeon-smartstrip.groovy │ ├── aeotec-doorbell-siren-6.src │ │ └── aeotec-doorbell-siren-6.groovy │ ├── aeotec-doorbell-siren-child.src │ │ └── aeotec-doorbell-siren-child.groovy │ ├── aeotec-wallmote.src │ │ └── aeotec-wallmote.groovy │ ├── arduino-thingshield.src │ │ └── arduino-thingshield.groovy │ ├── arrival-sensor-ha.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── arrival-sensor-ha.groovy │ │ └── i18n │ │ │ └── messages.properties │ ├── arrival-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── arrival-sensor.groovy │ ├── blacklisted-device.src │ │ └── blacklisted-device.groovy │ ├── bose-soundtouch.src │ │ └── bose-soundtouch.groovy │ ├── centralite-thermostat.src │ │ └── centralite-thermostat.groovy │ ├── child-button.src │ │ └── child-button.groovy │ ├── child-color-control.src │ │ └── child-color-control.groovy │ ├── child-contact-sensor.src │ │ └── child-contact-sensor.groovy │ ├── child-energy-meter.src │ │ └── child-energy-meter.groovy │ ├── child-metering-switch.src │ │ └── child-metering-switch.groovy │ ├── child-switch-health-power.src │ │ └── child-switch-health-power.groovy │ ├── child-switch-health.src │ │ └── child-switch-health.groovy │ ├── child-switch-multilevel.src │ │ └── child-switch-multilevel.groovy │ ├── child-switch.src │ │ └── child-switch.groovy │ ├── child-temperature-sensor.src │ │ └── child-temperature-sensor.groovy │ ├── child-thermostat-setpoints.src │ │ └── child-thermostat-setpoints.groovy │ ├── child-venetian-blind.src │ │ └── child-venetian-blind.groovy │ ├── cooper-rf9500.src │ │ └── cooper-rf9500.groovy │ ├── cree-bulb.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── cree-bulb.groovy │ ├── ct100-thermostat.src │ │ └── ct100-thermostat.groovy │ ├── danalock.src │ │ └── danalock.groovy │ ├── dawon-zwave-smart-plug.src │ │ └── dawon-zwave-smart-plug.groovy │ ├── dawon-zwave-wall-smart-switch.src │ │ └── dawon-zwave-wall-smart-switch.groovy │ ├── dimmer-switch.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── dimmer-switch.groovy │ ├── door-shield.src │ │ └── door-shield.groovy │ ├── eaton-5-scene-keypad.src │ │ ├── README.md │ │ └── eaton-5-scene-keypad.groovy │ ├── eaton-accessory-dimmer.src │ │ ├── README.md │ │ └── eaton-accessory-dimmer.groovy │ ├── eaton-anyplace-switch.src │ │ ├── README.md │ │ └── eaton-anyplace-switch.groovy │ ├── ecolink-water-freeze-sensor.src │ │ └── ecolink-water-freeze-sensor.groovy │ ├── ecolink-wireless-siren.src │ │ ├── README.md │ │ └── ecolink-wireless-siren.groovy │ ├── ecolink-zigbee-water-freeze-sensor.src │ │ └── ecolink-zigbee-water-freeze-sensor.groovy │ ├── econet-vent.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── econet-vent.groovy │ ├── ecosmart-4button-remote.src │ │ └── ecosmart-4button-remote.groovy │ ├── everspring-flood-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── everspring-flood-sensor.groovy │ ├── everspring-illuminance-sensor.src │ │ └── everspring-illuminance-sensor.groovy │ ├── everspring-st814.src │ │ └── everspring-st814.groovy │ ├── ezex-smart-electric-switch.src │ │ ├── ezex-smart-electric-switch.groovy │ │ └── i18n │ │ │ └── messages.properties │ ├── ezex-temp-humidity-sensor.src │ │ ├── ezex-temp-humidity-sensor.groovy │ │ └── i18n │ │ │ └── messages.properties │ ├── fibaro-dimmer.src │ │ └── fibaro-dimmer.groovy │ ├── fibaro-door-window-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── fibaro-door-window-sensor.groovy │ ├── fibaro-flood-sensor.src │ │ └── fibaro-flood-sensor.groovy │ ├── fibaro-heat-controller.src │ │ └── fibaro-heat-controller.groovy │ ├── fibaro-motion-sensor.src │ │ └── fibaro-motion-sensor.groovy │ ├── fibaro-rgbw-controller.src │ │ └── fibaro-rgbw-controller.groovy │ ├── fibaro-smoke-sensor.src │ │ ├── fibaro-smoke-sensor.groovy │ │ └── i18n │ │ │ └── messages.properties │ ├── fidure-thermostat.src │ │ └── fidure-thermostat.groovy │ ├── fortrezz-water-valve.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── fortrezz-water-valve.groovy │ ├── foscam.src │ │ └── foscam.groovy │ ├── ge-link-bulb.src │ │ └── ge-link-bulb.groovy │ ├── gentle-wake-up-controller.src │ │ └── gentle-wake-up-controller.groovy │ ├── glentronics-connection-module.src │ │ └── glentronics-connection-module.groovy │ ├── harmony-activity.src │ │ └── harmony-activity.groovy │ ├── home-energy-meter.src │ │ └── home-energy-meter.groovy │ ├── homeseer-multisensor.src │ │ └── homeseer-multisensor.groovy │ ├── hue-bloom.src │ │ └── hue-bloom.groovy │ ├── hue-bridge.src │ │ └── hue-bridge.groovy │ ├── hue-bulb.src │ │ └── hue-bulb.groovy │ ├── hue-lux-bulb.src │ │ └── hue-lux-bulb.groovy │ ├── hue-white-ambiance-bulb.src │ │ └── hue-white-ambiance-bulb.groovy │ ├── ikea-button.src │ │ └── ikea-button.groovy │ ├── ikea-motion-sensor.src │ │ └── ikea-motion-sensor.groovy │ ├── inovelli-dimmer.src │ │ └── inovelli-dimmer.groovy │ ├── leaksmart-water-sensor.src │ │ └── leaksmart-water-sensor.groovy │ ├── life360-user.src │ │ └── life360-user.groovy │ ├── light-sensor.src │ │ └── light-sensor.groovy │ ├── logitech-harmony-hub-c2c.src │ │ └── logitech-harmony-hub-c2c.groovy │ ├── mimolite-garage-door-controller.src │ │ └── mimolite-garage-door-controller.groovy │ ├── mobile-presence-occupancy.src │ │ └── mobile-presence-occupancy.groovy │ ├── mobile-presence.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── mobile-presence.groovy │ ├── momentary-button-tile.src │ │ └── momentary-button-tile.groovy │ ├── motion-detector.src │ │ └── motion-detector.groovy │ ├── nyce-motion-sensor.src │ │ └── nyce-motion-sensor.groovy │ ├── nyce-open-closed-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── nyce-open-closed-sensor.groovy │ ├── on-off-button-tile.src │ │ └── on-off-button-tile.groovy │ ├── on-off-shield.src │ │ └── on-off-shield.groovy │ ├── open-closed-sensor.src │ │ └── open-closed-sensor.groovy │ ├── orvibo-Moisture-Sensor.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── orvibo-Moisture-Sensor.groovy │ ├── orvibo-gas-detector.src │ │ ├── Orvibo-Gas-detector.groovy │ │ └── i18n │ │ │ └── messages.properties │ ├── ozom-smart-siren.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── ozom-smart-siren.groovy │ ├── particulate-detector.src │ │ └── particulate-detector.groovy │ ├── pet-feeder-shield.src │ │ └── pet-feeder-shield.groovy │ ├── philio-multiple-sound-siren.src │ │ └── philio-multiple-sound-siren.groovy │ ├── plant-link.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── plant-link.groovy │ ├── qubino-flush-thermostat.src │ │ └── qubino-flush-thermostat.groovy │ ├── rgbw-light.src │ │ └── rgbw-light.groovy │ ├── secure-dimmer.src │ │ └── secure-dimmer.groovy │ ├── smart-body-analyzer.src │ │ └── smart-body-analyzer.groovy │ ├── smartalert-siren.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── smartalert-siren.groovy │ ├── smartpower-dimming-outlet.src │ │ └── smartpower-dimming-outlet.groovy │ ├── smartpower-outlet-v1.src │ │ └── smartpower-outlet-v1.groovy │ ├── smartpower-outlet.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartpower-outlet.groovy │ ├── smartsense-button.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-button.groovy │ ├── smartsense-garage-door-multi.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-garage-door-multi.groovy │ ├── smartsense-garage-door-sensor-button.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-garage-door-sensor-button.groovy │ ├── smartsense-moisture-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-moisture-sensor.groovy │ ├── smartsense-moisture.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── smartsense-moisture.groovy │ ├── smartsense-motion-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-motion-sensor.groovy │ ├── smartsense-motion.src │ │ └── smartsense-motion.groovy │ ├── smartsense-multi-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-multi-sensor.groovy │ ├── smartsense-multi.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-multi.groovy │ ├── smartsense-open-closed-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-open-closed-sensor.groovy │ ├── smartsense-temp-humidity-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-temp-humidity-sensor.groovy │ ├── smartsense-virtual-open-closed.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── smartsense-virtual-open-closed.groovy │ ├── smartweather-station-tile.src │ │ ├── capability.stsmartweather.apparentTemperature.json │ │ ├── capability.stsmartweather.astronomicalData.json │ │ ├── capability.stsmartweather.precipitation.json │ │ ├── capability.stsmartweather.smartWeather.json │ │ ├── capability.stsmartweather.ultravioletDescription.json │ │ ├── capability.stsmartweather.weatherAlert.json │ │ ├── capability.stsmartweather.weatherForecast.json │ │ ├── capability.stsmartweather.weatherSummary.json │ │ ├── capability.stsmartweather.windDirection.json │ │ ├── capability.stsmartweather.windSpeed.json │ │ └── smartweather-station-tile.groovy │ ├── spark.src │ │ └── spark.groovy │ ├── springs-window-fashions-remote.src │ │ └── springs-window-fashions-remote.groovy │ ├── springs-window-fashions-shade.src │ │ └── springs-window-fashions-shade.groovy │ ├── sylvania-ultra-iq.src │ │ └── sylvania-ultra-iq.groovy │ ├── temperature-sensor.src │ │ └── temperature-sensor.groovy │ ├── testing │ │ ├── simulated-alarm.src │ │ │ └── simulated-alarm.groovy │ │ ├── simulated-button.src │ │ │ └── simulated-button.groovy │ │ ├── simulated-color-control.src │ │ │ └── simulated-color-control.groovy │ │ ├── simulated-contact-sensor.src │ │ │ └── simulated-contact-sensor.groovy │ │ ├── simulated-device-preferences.src │ │ │ ├── i18n │ │ │ │ └── messages.properties │ │ │ └── simulated-device-preferences.groovy │ │ ├── simulated-dimmable-bulb.src │ │ │ └── simulated-dimmable-bulb.groovy │ │ ├── simulated-dimmer-switch.src │ │ │ └── simulated-dimmer-switch.groovy │ │ ├── simulated-garage-door-opener.src │ │ │ └── simulated-garage-door-opener.groovy │ │ ├── simulated-lock.src │ │ │ └── simulated-lock.groovy │ │ ├── simulated-minimote.src │ │ │ └── simulated-minimote.groovy │ │ ├── simulated-motion-sensor.src │ │ │ └── simulated-motion-sensor.groovy │ │ ├── simulated-presence-sensor.src │ │ │ └── simulated-presence-sensor.groovy │ │ ├── simulated-refrigerator-door.src │ │ │ └── simulated-refrigerator-door.groovy │ │ ├── simulated-refrigerator-temperature-control.src │ │ │ └── simulated-refrigerator-temperature-control.groovy │ │ ├── simulated-refrigerator.src │ │ │ └── simulated-refrigerator.groovy │ │ ├── simulated-rgb-bulb.src │ │ │ └── simulated-rgb-bulb.groovy │ │ ├── simulated-rgbw-bulb.src │ │ │ └── simulated-rgbw-bulb.groovy │ │ ├── simulated-smoke-alarm.src │ │ │ └── simulated-smoke-alarm.groovy │ │ ├── simulated-switch.src │ │ │ └── simulated-switch.groovy │ │ ├── simulated-temperature-sensor.src │ │ │ └── simulated-temperature-sensor.groovy │ │ ├── simulated-thermostat.src │ │ │ └── simulated-thermostat.groovy │ │ ├── simulated-water-sensor.src │ │ │ └── simulated-water-sensor.groovy │ │ ├── simulated-water-valve.src │ │ │ └── simulated-water-valve.groovy │ │ ├── simulated-white-color-temperature-bulb.src │ │ │ └── simulated-white-color-temperature-bulb.groovy │ │ └── simulated-window-shade.src │ │ │ └── simulated-window-shade.groovy │ ├── thing.src │ │ └── thing.groovy │ ├── tile-ux │ │ ├── README.md │ │ ├── tile-basic-carousel.src │ │ │ └── tile-basic-carousel.groovy │ │ ├── tile-basic-colorwheel.src │ │ │ └── tile-basic-colorwheel.groovy │ │ ├── tile-basic-presence.src │ │ │ └── tile-basic-presence.groovy │ │ ├── tile-basic-slider.src │ │ │ └── tile-basic-slider.groovy │ │ ├── tile-basic-standard.src │ │ │ └── tile-basic-standard.groovy │ │ ├── tile-basic-value.src │ │ │ └── tile-basic-value.groovy │ │ ├── tile-multiattribute-generic.src │ │ │ └── tile-multiattribute-generic.groovy │ │ ├── tile-multiattribute-lighting.src │ │ │ └── tile-multiattribute-lighting.groovy │ │ ├── tile-multiattribute-mediaplayer.src │ │ │ └── tile-multiattribute-mediaplayer.groovy │ │ ├── tile-multiattribute-thermostat.src │ │ │ └── tile-multiattribute-thermostat.groovy │ │ └── tile-multiattribute-videoplayer.src │ │ │ └── tile-multiattribute-videoplayer.groovy │ ├── tyco-door-window-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── tyco-door-window-sensor.groovy │ ├── unknown.src │ │ └── unknown.groovy │ ├── viconics-schneider-room-controller.src │ │ └── viconics-schneider-room-controller.groovy │ ├── virtual-dimmer-switch.src │ │ └── virtual-dimmer-switch.groovy │ ├── virtual-switch.src │ │ └── virtual-switch.groovy │ ├── wattvision.src │ │ └── wattvision.groovy │ ├── wemo-bulb.src │ │ └── wemo-bulb.groovy │ ├── wemo-light-switch.src │ │ └── wemo-light-switch.groovy │ ├── wemo-motion.src │ │ └── wemo-motion.groovy │ ├── wemo-switch.src │ │ └── wemo-switch.groovy │ ├── wireless-scale.src │ │ └── wireless-scale.groovy │ ├── z-wave-binary-switch-endpoint-siren.src │ │ └── z-wave-binary-switch-endpoint-siren.groovy │ ├── zigbee-accessory-dimmer.src │ │ └── zigbee-accessory-dimmer.groovy │ ├── zigbee-battery-accessory-dimmer.src │ │ └── zigbee-battery-accessory-dimmer.groovy │ ├── zigbee-button.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zigbee-button.groovy │ ├── zigbee-ceiling-fan-light.src │ │ ├── README.md │ │ ├── itm-fan-child.groovy │ │ └── led-fan-lightings.groovy │ ├── zigbee-co-sensor.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-co-sensor.groovy │ ├── zigbee-curtain.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-curtain.groovy │ ├── zigbee-dimmer-power.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zigbee-dimmer-power.groovy │ ├── zigbee-dimmer-with-motion-sensor.src │ │ └── zigbee-dimmer-with-motion-sensor.groovy │ ├── zigbee-dimmer.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-dimmer.groovy │ ├── zigbee-lock-without-codes.src │ │ ├── README.md │ │ └── zigbee-lock-without-codes.groovy │ ├── zigbee-lock.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-lock.groovy │ ├── zigbee-metering-dimmer.src │ │ └── zigbee-metering-dimmer.groovy │ ├── zigbee-metering-plug-power-consumption-report.src │ │ └── zigbee-metering-plug-power-consumption-report.groovy │ ├── zigbee-metering-plug.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-metering-plug.groovy │ ├── zigbee-motion-detector.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-motion-detector.groovy │ ├── zigbee-motion-sensor-light.src │ │ ├── README.md │ │ ├── led-cpx-light.groovy │ │ └── led-cpx-motion-sensor-child.groovy │ ├── zigbee-motion-temp-humidity-sensor.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-motion-temp-humidity-sensor.groovy │ ├── zigbee-multi-button.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-multi-button.groovy │ ├── zigbee-multi-switch-power.src │ │ └── zigbee-multi-switch-power.groovy │ ├── zigbee-multi-switch.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-multi-switch.groovy │ ├── zigbee-non-holdable-button.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-non-holdable-button.groovy │ ├── zigbee-plugin-motion-sensor.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-plugin-motion-sensor.groovy │ ├── zigbee-power-meter.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-power-meter.groovy │ ├── zigbee-range-extender.src │ │ └── zigbee-range-extender.groovy │ ├── zigbee-rgb-bulb.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zigbee-rgb-bulb.groovy │ ├── zigbee-rgbw-bulb.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zigbee-rgbw-bulb.groovy │ ├── zigbee-scene-keypad.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-scene-keypad.groovy │ ├── zigbee-smoke-sensor.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-smoke-sensor.groovy │ ├── zigbee-sound-sensor.src │ │ └── zigbee-sound-sensor.groovy │ ├── zigbee-switch-power.src │ │ └── zigbee-switch-power.groovy │ ├── zigbee-switch.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-switch.groovy │ ├── zigbee-thermostat.src │ │ └── zigbee-thermostat.groovy │ ├── zigbee-valve.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-valve.groovy │ ├── zigbee-white-color-temperature-bulb.src │ │ ├── .st-ignore │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-white-color-temperature-bulb.groovy │ ├── zigbee-window-shade-battery.src │ │ └── zigbee-window-shade-battery.groovy │ ├── zigbee-window-shade.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zigbee-window-shade.groovy │ ├── zll-dimmer-bulb.src │ │ └── zll-dimmer-bulb.groovy │ ├── zll-rgb-bulb.src │ │ └── zll-rgb-bulb.groovy │ ├── zll-rgbw-bulb.src │ │ └── zll-rgbw-bulb.groovy │ ├── zll-white-color-temperature-bulb-5000k.src │ │ └── zll-white-color-temperature-bulb-5000k.groovy │ ├── zll-white-color-temperature-bulb.src │ │ └── zll-white-color-temperature-bulb.groovy │ ├── zooz-4-in-1-sensor.src │ │ └── zooz-4-in-1-sensor.groovy │ ├── zooz-multisiren.src │ │ └── zooz-multisiren.groovy │ ├── zooz-power-strip-outlet.src │ │ └── zooz-power-strip-outlet.groovy │ ├── zooz-power-strip.src │ │ └── zooz-power-strip.groovy │ ├── zwave-basic-heat-alarm.src │ │ ├── README.md │ │ └── zwave-basic-heat-alarm.groovy │ ├── zwave-basic-smoke-alarm.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-basic-smoke-alarm.groovy │ ├── zwave-basic-window-shade.src │ │ └── zwave-basic-window-shade.groovy │ ├── zwave-battery-thermostat.src │ │ └── zwave-battery-thermostat.groovy │ ├── zwave-binary-switch-endpoint.src │ │ └── zwave-binary-switch-endpoint.groovy │ ├── zwave-button.src │ │ └── zwave-button.groovy │ ├── zwave-controller.src │ │ └── zwave-controller.groovy │ ├── zwave-device-multichannel.src │ │ └── zwave-device-multichannel.groovy │ ├── zwave-device.src │ │ └── zwave-device.groovy │ ├── zwave-dimmer-switch-generic.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-dimmer-switch-generic.groovy │ ├── zwave-door-temp-sensor.src │ │ ├── README.md │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zwave-door-temp-sensor.groovy │ ├── zwave-door-window-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-door-window-sensor.groovy │ ├── zwave-dual-switch.src │ │ └── zwave-dual-switch.groovy │ ├── zwave-fan-controller.src │ │ └── zwave-fan-controller.groovy │ ├── zwave-garage-door-opener.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-garage-door-opener.groovy │ ├── zwave-lock-without-codes.src │ │ └── zwave-lock-without-codes.groovy │ ├── zwave-lock.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-lock.groovy │ ├── zwave-metering-dimmer.src │ │ └── zwave-metering-dimmer.groovy │ ├── zwave-metering-switch-secure.src │ │ └── zwave-metering-switch-secure.groovy │ ├── zwave-metering-switch.src │ │ └── zwave-metering-switch.groovy │ ├── zwave-mold-detector.src │ │ └── zwave-mold-detector.groovy │ ├── zwave-motion-light-sensor.src │ │ ├── README.md │ │ └── zwave-motion-light-sensor.groovy │ ├── zwave-motion-light.src │ │ └── zwave-motion-light.groovy │ ├── zwave-motion-sensor.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-motion-sensor.groovy │ ├── zwave-motion-temp-light-sensor.src │ │ └── zwave-motion-temp-light-sensor.groovy │ ├── zwave-mouse-trap.src │ │ ├── README.md │ │ └── zwave-mouse-trap.groovy │ ├── zwave-multi-button.src │ │ └── zwave-multi-button.groovy │ ├── zwave-multi-metering-switch.src │ │ └── zwave-multi-metering-switch.groovy │ ├── zwave-plus-door-window-sensor.src │ │ └── zwave-plus-door-window-sensor.groovy │ ├── zwave-plus-motion-temp-sensor.src │ │ └── zwave-plus-motion-temp-sensor.groovy │ ├── zwave-radiator-thermostat.src │ │ └── zwave-radiator-thermostat.groovy │ ├── zwave-range-extender.src │ │ └── zwave-range-extender.groovy │ ├── zwave-relay.src │ │ └── zwave-relay.groovy │ ├── zwave-remote.src │ │ └── zwave-remote.groovy │ ├── zwave-sensor.src │ │ └── zwave-sensor.groovy │ ├── zwave-siren.src │ │ ├── i18n │ │ │ └── messages.properties │ │ └── zwave-siren.groovy │ ├── zwave-smoke-alarm.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-smoke-alarm.groovy │ ├── zwave-sound-sensor.src │ │ └── zwave-sound-sensor.groovy │ ├── zwave-switch-battery.src │ │ └── zwave-switch-battery.groovy │ ├── zwave-switch-generic.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-switch-generic.groovy │ ├── zwave-switch-secure.src │ │ └── zwave-switch-secure.groovy │ ├── zwave-switch.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-switch.groovy │ ├── zwave-temp-light-sensor.src │ │ └── zwave-temp-light-sensor.groovy │ ├── zwave-thermostat.src │ │ └── zwave-thermostat.groovy │ ├── zwave-virtual-momentary-contact-switch.src │ │ └── zwave-virtual-momentary-contact-switch.groovy │ ├── zwave-water-sensor.src │ │ └── zwave-water-sensor.groovy │ ├── zwave-water-temp-humidity-sensor.src │ │ └── zwave-water-temp-humidity-sensor.groovy │ ├── zwave-water-temp-light-sensor.src │ │ └── zwave-water-temp-light-sensor.groovy │ ├── zwave-water-valve.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zwave-water-valve.groovy │ └── zwave-window-shade.src │ │ └── zwave-window-shade.groovy ├── stelpro │ ├── stelpro-ki-thermostat.src │ │ └── stelpro-ki-thermostat.groovy │ ├── stelpro-ki-zigbee-thermostat.src │ │ └── stelpro-ki-zigbee-thermostat.groovy │ └── stelpro-maestro-thermostat.src │ │ └── stelpro-maestro-thermostat.groovy ├── technisat │ ├── technisat-dimmer.src │ │ └── technisat-dimmer.groovy │ ├── technisat-on-off-switch.src │ │ └── technisat-on-off-switch.groovy │ ├── technisat-roller-shutter-switch.src │ │ └── technisat-roller-shutter-switch.groovy │ └── technisat-series-switch.src │ │ └── technisat-series-switch.groovy ├── timevalve-gaslock-t-08 │ └── timevalve-smart.src │ │ └── timevalve-smart.groovy ├── vision-kuowei │ └── vision-in-wall-2relays-switch.src │ │ └── vision-in-wall-2relays-switch.groovy ├── vision-raytseng │ └── vision-4-in-1-motion-sensor.src │ │ └── vision-4-in-1-motion-sensor.groovy ├── vision-stevenchen │ └── vision-zigbee-arrival-sensor.src │ │ └── vision-zigbee-arrival-sensor.groovy ├── vlaminck │ └── minecraft │ │ └── smart-block.src │ │ └── smart-block.groovy ├── wackford │ ├── quirky-wink-eggtray.src │ │ └── quirky-wink-eggtray.groovy │ ├── quirky-wink-nimbus.src │ │ └── quirky-wink-nimbus.groovy │ ├── quirky-wink-porkfolio.src │ │ └── quirky-wink-porkfolio.groovy │ ├── quirky-wink-powerstrip.src │ │ └── quirky-wink-powerstrip.groovy │ ├── quirky-wink-spotter.src │ │ └── quirky-wink-spotter.groovy │ └── tcp-bulb.src │ │ └── tcp-bulb.groovy ├── widomsrl │ └── widom-smart-dry-contact.src │ │ └── widom-smart-dry-contact.groovy ├── zenwithin │ └── zen-thermostat.src │ │ ├── .st-ignore │ │ ├── README.md │ │ └── zen-thermostat.groovy └── zooz │ ├── zooz-child-switch-button.src │ └── zooz-child-switch-button.groovy │ ├── zooz-double-switch-zen30.src │ └── zooz-double-switch-zen30.groovy │ ├── zooz-remote-switch-zen34.src │ └── zooz-remote-switch-zen34.groovy │ ├── zooz-zen32-scene-controller-button.src │ └── zooz-zen32-scene-controller-button.groovy │ ├── zooz-zen32-scene-controller.src │ └── zooz-zen32-scene-controller.groovy │ ├── zooz-zen51-dry-contact-relay.src │ └── zooz-zen51-dry-contact-relay.groovy │ ├── zooz-zen52-double-relay.src │ └── zooz-zen52-double-relay.groovy │ ├── zooz-zse11-q-sensor.src │ └── zooz-zse11-q-sensor.groovy │ ├── zooz-zse43-tilt-shock-xs-sensor.src │ └── zooz-zse43-tilt-shock-xs-sensor.groovy │ └── zooz-zse44-temperature-humidity-xs-sensor.src │ └── zooz-zse44-temperature-humidity-xs-sensor.groovy ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── smartapps ├── arno └── bright-when-dark-and-or-bright-after-sunset.src │ └── bright-when-dark-and-or-bright-after-sunset.groovy ├── charette-joseph-gmail-com └── good-night-house.src │ └── good-night-house.groovy ├── chrisb └── goodnight-ubi.src │ └── goodnight-ubi.groovy ├── com-andrewreitz └── jenkins-notifier.src │ └── jenkins-notifier.groovy ├── com-gidjit-smartthings-hub └── gidjit-hub.src │ └── gidjit-hub.groovy ├── com-obycode ├── beaconthings-manager.src │ └── beaconthings-manager.groovy └── obything-music-connect.src │ └── obything-music-connect.groovy ├── com-sudarkoff └── working-from-home.src │ └── working-from-home.groovy ├── com-vinli-smartthings └── vinli-home-connect.src │ ├── images │ ├── vinli_oauth_120.png │ └── vinli_oauth_60.png │ └── vinli-home-connect.groovy ├── curb ├── curb-control.src │ └── curb-control.groovy ├── curb-energy-manager.src │ └── curb-energy-manager.groovy └── curb-energy-monitor.src │ └── curb-energy-monitor.groovy ├── dianoga ├── co2-vent.src │ ├── co2-vent.groovy │ └── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties ├── netatmo-connect.src │ └── netatmo-connect.groovy ├── thermostat-auto-off.src │ └── thermostat-auto-off.groovy └── whole-house-fan.src │ └── whole-house-fan.groovy ├── docwisdom └── humidity-alert.src │ └── humidity-alert.groovy ├── dooglave └── let-there-be-dark.src │ └── let-there-be-dark.groovy ├── egid ├── smart-windows.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── smart-windows.groovy └── weather-windows.src │ └── weather-windows.groovy ├── encored-technologies └── smart-energy-service.src │ └── smart-energy-service.groovy ├── gideon-api ├── gideon-smart-home.src │ └── gideon-smart-home.groovy └── gideon.src │ └── gideon.groovy ├── hwustrack └── coffee-after-shower.src │ └── coffee-after-shower.groovy ├── imbrianj ├── door-knocker.src │ ├── door-knocker.groovy │ └── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties ├── forgiving-security.src │ └── forgiving-security.groovy ├── hall-light-welcome-home.src │ └── hall-light-welcome-home.groovy ├── nobody-home.src │ └── nobody-home.groovy ├── ready-for-rain.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── ready-for-rain.groovy ├── safe-watch.src │ └── safe-watch.groovy └── thermostat-window-check.src │ └── thermostat-window-check.groovy ├── initialstate-events └── initial-state-event-streamer.src │ └── initial-state-event-streamer.groovy ├── jls └── my-light-toggle.src │ └── my-light-toggle.groovy ├── johnrucker ├── door-jammed-notification.src │ └── door-jammed-notification.groovy └── door-state-to-color-light-hue-bulb.src │ └── door-state-to-color-light-hue-bulb.groovy ├── jonathan-a └── auto-humidity-vent.src │ └── auto-humidity-vent.groovy ├── juano2310 ├── jawbone-button-notifier.src │ └── jawbone-button-notifier.groovy └── jawbone-up-connect.src │ └── jawbone-up-connect.groovy ├── kristopherkubicki └── turn-off-with-motion.src │ └── turn-off-with-motion.groovy ├── lock-auto-super-enhanced └── enhanced-auto-lock-door.src │ ├── enhanced-auto-lock-door.groovy │ └── i18n │ ├── ar-AE.properties │ ├── bg-BG.properties │ ├── ca-ES.properties │ ├── cs-CZ.properties │ ├── da-DK.properties │ ├── de-DE.properties │ ├── el-GR.properties │ ├── en-GB.properties │ ├── en-US.properties │ ├── es-ES.properties │ ├── es-MX.properties │ ├── et-EE.properties │ ├── fi-FI.properties │ ├── fr-CA.properties │ ├── fr-FR.properties │ ├── hr-HR.properties │ ├── hu-HU.properties │ ├── it-IT.properties │ ├── ko-KR.properties │ ├── nl-NL.properties │ ├── no-NO.properties │ ├── pl-PL.properties │ ├── pt-BR.properties │ ├── pt-PT.properties │ ├── ro-RO.properties │ ├── ru-RU.properties │ ├── sk-SK.properties │ ├── sl-SI.properties │ ├── sq-AL.properties │ ├── sr-RS.properties │ ├── sv-SE.properties │ ├── th-TH.properties │ ├── tr-TR.properties │ └── zh-CN.properties ├── mager └── weather-underground-pws-connect.src │ └── weather-underground-pws-connect.groovy ├── mangioneimagery ├── medicine-management-contact-sensor.src │ └── medicine-management-contact-sensor.groovy └── medicine-management-temp-motion.src │ └── medicine-management-temp-motion.groovy ├── michaelstruck ├── color-coordinator.src │ ├── color-coordinator.groovy │ └── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties ├── smart-home-ventilation.src │ └── smart-home-ventilation.groovy ├── switch-activates-home-phrase-or-mode.src │ └── switch-activates-home-phrase-or-mode.groovy ├── switch-activates-home-phrase.src │ └── switch-activates-home-phrase.groovy ├── switch-changes-mode.src │ └── switch-changes-mode.groovy └── talking-alarm-clock.src │ ├── i18n │ ├── ar-AE.properties │ ├── bg-BG.properties │ ├── ca-ES.properties │ ├── cs-CZ.properties │ ├── da-DK.properties │ ├── de-DE.properties │ ├── el-GR.properties │ ├── en-GB.properties │ ├── en-US.properties │ ├── es-ES.properties │ ├── es-MX.properties │ ├── et-EE.properties │ ├── fi-FI.properties │ ├── fr-CA.properties │ ├── fr-FR.properties │ ├── hr-HR.properties │ ├── hu-HU.properties │ ├── it-IT.properties │ ├── ko-KR.properties │ ├── nl-NL.properties │ ├── no-NO.properties │ ├── pl-PL.properties │ ├── pt-BR.properties │ ├── pt-PT.properties │ ├── ro-RO.properties │ ├── ru-RU.properties │ ├── sk-SK.properties │ ├── sl-SI.properties │ ├── sq-AL.properties │ ├── sr-RS.properties │ ├── sv-SE.properties │ ├── th-TH.properties │ ├── tr-TR.properties │ └── zh-CN.properties │ └── talking-alarm-clock.groovy ├── naissan └── lights-off-with-no-motion-and-presence.src │ └── lights-off-with-no-motion-and-presence.groovy ├── opent2t └── opent2t-smartapp-test.src │ └── opent2t-smartapp-test.groovy ├── osotech └── plantlink-connector.src │ └── plantlink-connector.groovy ├── plaidsystems └── spruce-scheduler.src │ └── spruce-scheduler.groovy ├── pope └── smart-light-timer-x-minutes-unless-already-on.src │ └── smart-light-timer-x-minutes-unless-already-on.groovy ├── resteele └── monitor-on-sense.src │ └── monitor-on-sense.groovy ├── roomieremote-raconnect └── simple-sync-connect.src │ └── simple-sync-connect.groovy ├── roomieremote-ratrigger └── simple-sync-trigger.src │ └── simple-sync-trigger.groovy ├── roomieremote-roomieconnect └── simple-control.src │ └── simple-control.groovy ├── shabbatholidaymode └── shabbat-and-holiday-modes.src │ └── shabbat-and-holiday-modes.groovy ├── sheikhsphere └── smart-humidifier.src │ └── smart-humidifier.groovy ├── sidjohn1 └── smart-turn-it-on.src │ └── smart-turn-it-on.groovy ├── skp19 └── door-lock-code-distress-message.src │ └── door-lock-code-distress-message.groovy ├── smart-auto-lock-unlock └── smart-auto-lock-unlock.src │ └── smart-auto-lock-unlock.groovy ├── smartthings ├── beacon-control.src │ └── beacon-control.groovy ├── big-turn-off.src │ └── big-turn-off.groovy ├── big-turn-on.src │ └── big-turn-on.groovy ├── bon-voyage.src │ └── bon-voyage.groovy ├── bose-soundtouch-control.src │ ├── bose-soundtouch-control.groovy │ └── images │ │ ├── BoseST_icon.png │ │ ├── BoseST_icon@2x-1.png │ │ └── BoseST_icon@2x.png ├── brighten-dark-places.src │ └── brighten-dark-places.groovy ├── brighten-my-path.src │ └── brighten-my-path.groovy ├── button-controller.src │ └── button-controller.groovy ├── camera-power-scheduler.src │ └── camera-power-scheduler.groovy ├── cameras-on-when-im-away.src │ └── cameras-on-when-im-away.groovy ├── carpool-notifier.src │ └── carpool-notifier.groovy ├── close-the-valve.src │ └── close-the-valve.groovy ├── curling-iron.src │ └── curling-iron.groovy ├── darken-behind-me.src │ └── darken-behind-me.groovy ├── double-tap.src │ └── double-tap.groovy ├── dry-the-wetspot.src │ └── dry-the-wetspot.groovy ├── elder-care-daily-routine.src │ └── elder-care-daily-routine.groovy ├── elder-care-slip-fall.src │ └── elder-care-slip-fall.groovy ├── energy-alerts.src │ └── energy-alerts.groovy ├── energy-saver.src │ └── energy-saver.groovy ├── examples │ └── every-element.src │ │ └── every-element.groovy ├── feed-my-pet.src │ └── feed-my-pet.groovy ├── flood-alert.src │ └── flood-alert.groovy ├── foscam-connect.src │ └── foscam-connect.groovy ├── garage-door-monitor.src │ └── garage-door-monitor.groovy ├── garage-door-opener.src │ └── garage-door-opener.groovy ├── gentle-wake-up.src │ ├── gentle-wake-up.groovy │ └── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties ├── good-night.src │ └── good-night.groovy ├── greetings-earthling.src │ └── greetings-earthling.groovy ├── habit-helper.src │ └── habit-helper.groovy ├── has-barkley-been-fed.src │ └── has-barkley-been-fed.groovy ├── hub-ip-notifier.src │ └── hub-ip-notifier.groovy ├── hue-mood-lighting.src │ └── hue-mood-lighting.groovy ├── ifttt.src │ └── ifttt.groovy ├── it-moved.src │ └── it-moved.groovy ├── its-too-cold.src │ └── its-too-cold.groovy ├── its-too-hot.src │ └── its-too-hot.groovy ├── keep-me-cozy-ii.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── keep-me-cozy-ii.groovy ├── keep-me-cozy.src │ └── keep-me-cozy.groovy ├── laundry-monitor.src │ └── laundry-monitor.groovy ├── left-it-open.src │ └── left-it-open.groovy ├── let-there-be-light.src │ └── let-there-be-light.groovy ├── life360-connect.src │ └── life360-connect.groovy ├── light-follows-me.src │ └── light-follows-me.groovy ├── light-up-the-night.src │ └── light-up-the-night.groovy ├── lights-off-when-closed.src │ └── lights-off-when-closed.groovy ├── lock-it-when-i-leave.src │ └── lock-it-when-i-leave.groovy ├── logitech-harmony-connect.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── logitech-harmony-connect.groovy ├── mail-arrived.src │ └── mail-arrived.groovy ├── make-it-so.src │ └── make-it-so.groovy ├── medicine-reminder.src │ └── medicine-reminder.groovy ├── mini-hue-controller.src │ └── mini-hue-controller.groovy ├── mood-cube.src │ └── mood-cube.groovy ├── nfc-tag-toggle.src │ └── nfc-tag-toggle.groovy ├── notify-me-when-it-opens.src │ └── notify-me-when-it-opens.groovy ├── notify-me-when.src │ ├── i18n │ │ └── messages.properties │ └── notify-me-when.groovy ├── notify-me-with-hue.src │ └── notify-me-with-hue.groovy ├── once-a-day.src │ └── once-a-day.groovy ├── photo-burst-when.src │ └── photo-burst-when.groovy ├── power-allowance.src │ └── power-allowance.groovy ├── presence-change-push.src │ └── presence-change-push.groovy ├── presence-change-text.src │ └── presence-change-text.groovy ├── ridiculously-automated-garage-door.src │ └── ridiculously-automated-garage-door.groovy ├── rise-and-shine.src │ └── rise-and-shine.groovy ├── scheduled-mode-change.src │ └── scheduled-mode-change.groovy ├── send-ham-bridge-command-when.src │ └── send-ham-bridge-command-when.groovy ├── severe-weather-alert.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── severe-weather-alert.groovy ├── single-button-controller.src │ └── single-button-controller.groovy ├── sleepy-time.src │ └── sleepy-time.groovy ├── smart-care-daily-routine.src │ └── smart-care-daily-routine.groovy ├── smart-care-detect-motion.src │ └── smart-care-detect-motion.groovy ├── smart-nightlight.src │ └── smart-nightlight.groovy ├── smart-security.src │ └── smart-security.groovy ├── smartweather-station-controller.src │ └── smartweather-station-controller.groovy ├── sonos-music-modes.src │ └── sonos-music-modes.groovy ├── sonos-remote-control.src │ └── sonos-remote-control.groovy ├── speaker-control.src │ └── speaker-control.groovy ├── speaker-mood-music.src │ └── speaker-mood-music.groovy ├── speaker-notify-with-sound.src │ └── speaker-notify-with-sound.groovy ├── speaker-weather-forecast.src │ └── speaker-weather-forecast.groovy ├── step-notifier.src │ └── step-notifier.groovy ├── sunrise-sunset.src │ └── sunrise-sunset.groovy ├── tesla-connect.src │ └── tesla-connect.groovy ├── text-me-when-it-opens.src │ └── text-me-when-it-opens.groovy ├── text-me-when-theres-motion-and-im-not-here.src │ └── text-me-when-theres-motion-and-im-not-here.groovy ├── the-big-switch.src │ └── the-big-switch.groovy ├── the-flasher.src │ └── the-flasher.groovy ├── the-gun-case-moved.src │ └── the-gun-case-moved.groovy ├── thermostats.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── thermostats.groovy ├── tile-ux │ └── device-tile-controller.src │ │ └── device-tile-controller.groovy ├── turn-it-on-for-5-minutes.src │ └── turn-it-on-for-5-minutes.groovy ├── turn-it-on-when-im-here.src │ └── turn-it-on-when-im-here.groovy ├── turn-it-on-when-it-opens.src │ └── turn-it-on-when-it-opens.groovy ├── turn-on-only-if-i-arrive-after-sunset.src │ └── turn-on-only-if-i-arrive-after-sunset.groovy ├── ubi.src │ └── ubi.groovy ├── undead-early-warning.src │ └── undead-early-warning.groovy ├── unlock-it-when-i-arrive.src │ └── unlock-it-when-i-arrive.groovy ├── virtual-device-creator.src │ └── virtual-device-creator.groovy ├── virtual-thermostat.src │ └── virtual-thermostat.groovy ├── wattvision-manager.src │ └── wattvision-manager.groovy ├── when-its-going-to-rain.src │ └── when-its-going-to-rain.groovy ├── withings-manager.src │ └── withings-manager.groovy ├── withings.src │ └── withings.groovy └── yoics-connect.src │ └── yoics-connect.groovy ├── sprayercontroller └── sprayer-controller-2.src │ └── sprayer-controller-2.groovy ├── statusbits └── smart-alarm.src │ └── smart-alarm.groovy ├── stelpro └── stelpro-get-remote-temperature.src │ └── stelpro-get-remote-temperature.groovy ├── tslagle13 ├── hello-home-phrase-director.src │ └── hello-home-phrase-director.groovy ├── lighting-director.src │ └── lighting-director.groovy ├── routine-director.src │ └── routine-director.groovy ├── thermostat-mode-director.src │ ├── i18n │ │ ├── ar-AE.properties │ │ ├── bg-BG.properties │ │ ├── ca-ES.properties │ │ ├── cs-CZ.properties │ │ ├── da-DK.properties │ │ ├── de-DE.properties │ │ ├── el-GR.properties │ │ ├── en-GB.properties │ │ ├── en-US.properties │ │ ├── es-ES.properties │ │ ├── es-MX.properties │ │ ├── et-EE.properties │ │ ├── fi-FI.properties │ │ ├── fr-CA.properties │ │ ├── fr-FR.properties │ │ ├── hr-HR.properties │ │ ├── hu-HU.properties │ │ ├── it-IT.properties │ │ ├── ko-KR.properties │ │ ├── nl-NL.properties │ │ ├── no-NO.properties │ │ ├── pl-PL.properties │ │ ├── pt-BR.properties │ │ ├── pt-PT.properties │ │ ├── ro-RO.properties │ │ ├── ru-RU.properties │ │ ├── sk-SK.properties │ │ ├── sl-SI.properties │ │ ├── sq-AL.properties │ │ ├── sr-RS.properties │ │ ├── sv-SE.properties │ │ ├── th-TH.properties │ │ ├── tr-TR.properties │ │ └── zh-CN.properties │ └── thermostat-mode-director.groovy └── vacation-lighting-director.src │ └── vacation-lighting-director.groovy ├── user8798 └── lock-it-at-a-specific-time.src │ └── lock-it-at-a-specific-time.groovy ├── vlaminck ├── alfred-workflow.src │ └── alfred-workflow.groovy └── minecraft │ ├── smartblock-chat-sender.src │ └── smartblock-chat-sender.groovy │ ├── smartblock-linker.src │ └── smartblock-linker.groovy │ ├── smartblock-manager.src │ └── smartblock-manager.groovy │ └── smartblock-notifier.src │ └── smartblock-notifier.groovy ├── wackford ├── quirky-connect.src │ └── quirky-connect.groovy └── tcp-bulbs-connect.src │ └── tcp-bulbs-connect.groovy └── weatherbug └── weatherbug-home.src └── weatherbug-home.groovy /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/README.md -------------------------------------------------------------------------------- /devicetypes/axis/axis-gear-st.src/axis-gear-st.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/axis/axis-gear-st.src/axis-gear-st.groovy -------------------------------------------------------------------------------- /devicetypes/capabilities/alarm-capability.src/alarm-capability.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/capabilities/alarm-capability.src/alarm-capability.groovy -------------------------------------------------------------------------------- /devicetypes/capabilities/button-capability.src/button-capability.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/capabilities/button-capability.src/button-capability.groovy -------------------------------------------------------------------------------- /devicetypes/capabilities/lock-capability.src/lock-capability.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/capabilities/lock-capability.src/lock-capability.groovy -------------------------------------------------------------------------------- /devicetypes/capabilities/switch-capability.src/switch-capability.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/capabilities/switch-capability.src/switch-capability.groovy -------------------------------------------------------------------------------- /devicetypes/com-obycode/beaconthing.src/beaconthing.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/com-obycode/beaconthing.src/beaconthing.groovy -------------------------------------------------------------------------------- /devicetypes/com-obycode/obything-music.src/obything-music.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/com-obycode/obything-music.src/obything-music.groovy -------------------------------------------------------------------------------- /devicetypes/curb/curb-power-meter.src/curb-power-meter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/curb/curb-power-meter.src/curb-power-meter.groovy -------------------------------------------------------------------------------- /devicetypes/dianoga/netatmo-basestation.src/netatmo-basestation.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/dianoga/netatmo-basestation.src/netatmo-basestation.groovy -------------------------------------------------------------------------------- /devicetypes/dianoga/netatmo-rain.src/netatmo-rain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/dianoga/netatmo-rain.src/netatmo-rain.groovy -------------------------------------------------------------------------------- /devicetypes/drzwave/ezmultipli.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/drzwave/ezmultipli.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/drzwave/ezmultipli.src/README.md -------------------------------------------------------------------------------- /devicetypes/drzwave/ezmultipli.src/ezmultipli.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/drzwave/ezmultipli.src/ezmultipli.groovy -------------------------------------------------------------------------------- /devicetypes/erocm123/switch-child-device.src/switch-child-device.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/erocm123/switch-child-device.src/switch-child-device.groovy -------------------------------------------------------------------------------- /devicetypes/fibargroup/fibaro-door-window-sensor-zw5.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/fibargroup/fibaro-door-window-sensor-zw5.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/fibargroup/fibaro-door-window-sensor-zw5.src/README.md -------------------------------------------------------------------------------- /devicetypes/heltun/he-temperature.src/he-temperature.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/heltun/he-temperature.src/he-temperature.groovy -------------------------------------------------------------------------------- /devicetypes/heltun/heltun-child-relay.src/heltun-child-relay.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/heltun/heltun-child-relay.src/heltun-child-relay.groovy -------------------------------------------------------------------------------- /devicetypes/heltun/heltun-hls01-switch.src/heltun-hls01-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/heltun/heltun-hls01-switch.src/heltun-hls01-switch.groovy -------------------------------------------------------------------------------- /devicetypes/heltun/heltun-rs01-switch.src/heltun-rs01-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/heltun/heltun-rs01-switch.src/heltun-rs01-switch.groovy -------------------------------------------------------------------------------- /devicetypes/heltun/heltun-tps05-switch.src/heltun-tps05-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/heltun/heltun-tps05-switch.src/heltun-tps05-switch.groovy -------------------------------------------------------------------------------- /devicetypes/iblinds/iblinds-zwave.src/iblinds-zwave.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/iblinds/iblinds-zwave.src/iblinds-zwave.groovy -------------------------------------------------------------------------------- /devicetypes/johnrucker/coopboss-h3vx.src/coopboss-h3vx.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/johnrucker/coopboss-h3vx.src/coopboss-h3vx.groovy -------------------------------------------------------------------------------- /devicetypes/juano2310/jawbone-user.src/jawbone-user.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/juano2310/jawbone-user.src/jawbone-user.groovy -------------------------------------------------------------------------------- /devicetypes/keen-home/keen-home-smart-vent.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/keen-home/keen-home-smart-vent.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/keen-home/keen-home-smart-vent.src/README.md -------------------------------------------------------------------------------- /devicetypes/osotech/plantlink.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/osotech/plantlink.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/osotech/plantlink.src/README.md -------------------------------------------------------------------------------- /devicetypes/osotech/plantlink.src/plantlink.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/osotech/plantlink.src/plantlink.groovy -------------------------------------------------------------------------------- /devicetypes/plaidsystems/spruce-controller.src/spruce-controller.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/plaidsystems/spruce-controller.src/spruce-controller.groovy -------------------------------------------------------------------------------- /devicetypes/plaidsystems/spruce-sensor.src/spruce-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/plaidsystems/spruce-sensor.src/spruce-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/plaidsystems/spruce-valve.src/spruce-valve.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/plaidsystems/spruce-valve.src/spruce-valve.groovy -------------------------------------------------------------------------------- /devicetypes/qubino/qubino-3-phase-meter.src/qubino-3-phase-meter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/qubino/qubino-3-phase-meter.src/qubino-3-phase-meter.groovy -------------------------------------------------------------------------------- /devicetypes/qubino/qubino-dimmer.src/qubino-dimmer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/qubino/qubino-dimmer.src/qubino-dimmer.groovy -------------------------------------------------------------------------------- /devicetypes/qubino/qubino-flush-2-relay.src/qubino-flush-2-relay.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/qubino/qubino-flush-2-relay.src/qubino-flush-2-relay.groovy -------------------------------------------------------------------------------- /devicetypes/qubino/qubino-flush-shutter.src/qubino-flush-shutter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/qubino/qubino-flush-shutter.src/qubino-flush-shutter.groovy -------------------------------------------------------------------------------- /devicetypes/roomieremote-agent/simple-sync.src/simple-sync.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/roomieremote-agent/simple-sync.src/simple-sync.groovy -------------------------------------------------------------------------------- /devicetypes/samsungsds/samsung-smart-doorlock.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/samsungsds/samsung-smart-doorlock.src/README.md -------------------------------------------------------------------------------- /devicetypes/sky-nie/in-wall-smart-switch.src/in-wall-smart-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/sky-nie/in-wall-smart-switch.src/in-wall-smart-switch.groovy -------------------------------------------------------------------------------- /devicetypes/sky-nie/min-smart-plug.src/min-smart-plug.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/sky-nie/min-smart-plug.src/min-smart-plug.groovy -------------------------------------------------------------------------------- /devicetypes/smartenit/iot8-z.src/iot8-z.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartenit/iot8-z.src/iot8-z.groovy -------------------------------------------------------------------------------- /devicetypes/smartenit/smartelek-evse.src/smartelek-evse.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartenit/smartelek-evse.src/smartelek-evse.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-key-fob.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-key-fob.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-key-fob.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-key-fob.src/aeon-key-fob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-key-fob.src/aeon-key-fob.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-led-bulb-6.src/aeon-led-bulb-6.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-led-bulb-6.src/aeon-led-bulb-6.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-led-bulb.src/aeon-led-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-led-bulb.src/aeon-led-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-minimote.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-minimote.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-minimote.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-minimote.src/aeon-minimote.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-minimote.src/aeon-minimote.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor-6.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor-6.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-multisensor-6.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor-6.src/aeon-multisensor-6.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-multisensor-6.src/aeon-multisensor-6.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor-gen5.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor-gen5.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-multisensor-gen5.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-multisensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-multisensor.src/aeon-multisensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-multisensor.src/aeon-multisensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-outlet.src/aeon-outlet.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-outlet.src/aeon-outlet.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-siren.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-siren.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-siren.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-siren.src/aeon-siren.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-siren.src/aeon-siren.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeon-smartstrip.src/aeon-smartstrip.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeon-smartstrip.src/aeon-smartstrip.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/aeotec-wallmote.src/aeotec-wallmote.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/aeotec-wallmote.src/aeotec-wallmote.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor-ha.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor-ha.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/arrival-sensor-ha.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor-ha.src/arrival-sensor-ha.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/arrival-sensor-ha.src/arrival-sensor-ha.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor-ha.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/arrival-sensor-ha.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/arrival-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/arrival-sensor.src/arrival-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/arrival-sensor.src/arrival-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/blacklisted-device.src/blacklisted-device.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/blacklisted-device.src/blacklisted-device.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/bose-soundtouch.src/bose-soundtouch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/bose-soundtouch.src/bose-soundtouch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/child-button.src/child-button.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/child-button.src/child-button.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/child-energy-meter.src/child-energy-meter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/child-energy-meter.src/child-energy-meter.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/child-switch.src/child-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/child-switch.src/child-switch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/cooper-rf9500.src/cooper-rf9500.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/cooper-rf9500.src/cooper-rf9500.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/cree-bulb.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/cree-bulb.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/cree-bulb.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/cree-bulb.src/cree-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/cree-bulb.src/cree-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/ct100-thermostat.src/ct100-thermostat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ct100-thermostat.src/ct100-thermostat.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/danalock.src/danalock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/danalock.src/danalock.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/dimmer-switch.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/dimmer-switch.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/dimmer-switch.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/dimmer-switch.src/dimmer-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/dimmer-switch.src/dimmer-switch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/door-shield.src/door-shield.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/door-shield.src/door-shield.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/eaton-5-scene-keypad.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/eaton-5-scene-keypad.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/eaton-accessory-dimmer.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/eaton-accessory-dimmer.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/eaton-anyplace-switch.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/eaton-anyplace-switch.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/ecolink-wireless-siren.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ecolink-wireless-siren.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/econet-vent.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/econet-vent.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/econet-vent.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/econet-vent.src/econet-vent.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/econet-vent.src/econet-vent.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/everspring-flood-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/everspring-flood-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/everspring-flood-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/everspring-st814.src/everspring-st814.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/everspring-st814.src/everspring-st814.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/fibaro-dimmer.src/fibaro-dimmer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/fibaro-dimmer.src/fibaro-dimmer.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/fibaro-door-window-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/fibaro-door-window-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/fibaro-door-window-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/fibaro-smoke-sensor.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/fibaro-smoke-sensor.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/fidure-thermostat.src/fidure-thermostat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/fidure-thermostat.src/fidure-thermostat.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/fortrezz-water-valve.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/fortrezz-water-valve.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/fortrezz-water-valve.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/foscam.src/foscam.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/foscam.src/foscam.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/ge-link-bulb.src/ge-link-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ge-link-bulb.src/ge-link-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/harmony-activity.src/harmony-activity.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/harmony-activity.src/harmony-activity.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/home-energy-meter.src/home-energy-meter.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/home-energy-meter.src/home-energy-meter.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/hue-bloom.src/hue-bloom.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/hue-bloom.src/hue-bloom.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/hue-bridge.src/hue-bridge.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/hue-bridge.src/hue-bridge.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/hue-bulb.src/hue-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/hue-bulb.src/hue-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/hue-lux-bulb.src/hue-lux-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/hue-lux-bulb.src/hue-lux-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/ikea-button.src/ikea-button.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ikea-button.src/ikea-button.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/ikea-motion-sensor.src/ikea-motion-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ikea-motion-sensor.src/ikea-motion-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/inovelli-dimmer.src/inovelli-dimmer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/inovelli-dimmer.src/inovelli-dimmer.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/life360-user.src/life360-user.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/life360-user.src/life360-user.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/light-sensor.src/light-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/light-sensor.src/light-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/mobile-presence.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/mobile-presence.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/mobile-presence.src/mobile-presence.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/mobile-presence.src/mobile-presence.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/motion-detector.src/motion-detector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/motion-detector.src/motion-detector.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/nyce-motion-sensor.src/nyce-motion-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/nyce-motion-sensor.src/nyce-motion-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/nyce-open-closed-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/nyce-open-closed-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/nyce-open-closed-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/on-off-button-tile.src/on-off-button-tile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/on-off-button-tile.src/on-off-button-tile.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/on-off-shield.src/on-off-shield.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/on-off-shield.src/on-off-shield.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/open-closed-sensor.src/open-closed-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/open-closed-sensor.src/open-closed-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/orvibo-gas-detector.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/orvibo-gas-detector.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/ozom-smart-siren.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ozom-smart-siren.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/ozom-smart-siren.src/ozom-smart-siren.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/ozom-smart-siren.src/ozom-smart-siren.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/pet-feeder-shield.src/pet-feeder-shield.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/pet-feeder-shield.src/pet-feeder-shield.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/plant-link.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/plant-link.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/plant-link.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/plant-link.src/plant-link.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/plant-link.src/plant-link.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/rgbw-light.src/rgbw-light.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/rgbw-light.src/rgbw-light.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/secure-dimmer.src/secure-dimmer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/secure-dimmer.src/secure-dimmer.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/smartalert-siren.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartalert-siren.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartalert-siren.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartalert-siren.src/smartalert-siren.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartalert-siren.src/smartalert-siren.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/smartpower-outlet.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartpower-outlet.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartpower-outlet.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartpower-outlet.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartpower-outlet.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/smartpower-outlet.src/smartpower-outlet.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartpower-outlet.src/smartpower-outlet.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-button.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-button.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-moisture-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-moisture-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-moisture-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-moisture.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-moisture.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-moisture.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-motion-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-motion-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-motion-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-multi-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-multi-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-multi-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-multi.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-multi.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-multi.src/smartsense-multi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-multi.src/smartsense-multi.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-open-closed-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-open-closed-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-open-closed-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-temp-humidity-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/smartsense-temp-humidity-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/smartsense-temp-humidity-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/spark.src/spark.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/spark.src/spark.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/thing.src/thing.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/thing.src/thing.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/tile-ux/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/tile-ux/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/tyco-door-window-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/tyco-door-window-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/tyco-door-window-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/unknown.src/unknown.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/unknown.src/unknown.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/virtual-switch.src/virtual-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/virtual-switch.src/virtual-switch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/wattvision.src/wattvision.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/wattvision.src/wattvision.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/wemo-bulb.src/wemo-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/wemo-bulb.src/wemo-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/wemo-motion.src/wemo-motion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/wemo-motion.src/wemo-motion.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/wemo-switch.src/wemo-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/wemo-switch.src/wemo-switch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/wireless-scale.src/wireless-scale.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/wireless-scale.src/wireless-scale.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-button.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-button.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-button.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-button.src/zigbee-button.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-button.src/zigbee-button.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-ceiling-fan-light.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-ceiling-fan-light.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-co-sensor.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-co-sensor.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-co-sensor.src/zigbee-co-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-co-sensor.src/zigbee-co-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-curtain.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-curtain.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-curtain.src/zigbee-curtain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-curtain.src/zigbee-curtain.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-dimmer-power.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-dimmer-power.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-dimmer-power.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-dimmer.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-dimmer.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-dimmer.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-dimmer.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-dimmer.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-dimmer.src/zigbee-dimmer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-dimmer.src/zigbee-dimmer.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-lock-without-codes.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-lock-without-codes.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-lock.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-lock.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-lock.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-lock.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-lock.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-lock.src/zigbee-lock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-lock.src/zigbee-lock.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-motion-sensor-light.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-motion-sensor-light.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-rgb-bulb.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-rgb-bulb.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-rgb-bulb.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-rgb-bulb.src/zigbee-rgb-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-rgb-bulb.src/zigbee-rgb-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-rgbw-bulb.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-rgbw-bulb.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-rgbw-bulb.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-rgbw-bulb.src/zigbee-rgbw-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-rgbw-bulb.src/zigbee-rgbw-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-switch.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-switch.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-switch.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-switch.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-switch.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-switch.src/zigbee-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-switch.src/zigbee-switch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-valve.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-valve.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-valve.src/zigbee-valve.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zigbee-valve.src/zigbee-valve.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zigbee-white-color-temperature-bulb.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zll-rgb-bulb.src/zll-rgb-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zll-rgb-bulb.src/zll-rgb-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zll-rgbw-bulb.src/zll-rgbw-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zll-rgbw-bulb.src/zll-rgbw-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zooz-multisiren.src/zooz-multisiren.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zooz-multisiren.src/zooz-multisiren.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zooz-power-strip.src/zooz-power-strip.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zooz-power-strip.src/zooz-power-strip.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-basic-heat-alarm.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-basic-heat-alarm.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-basic-smoke-alarm.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-basic-smoke-alarm.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-basic-smoke-alarm.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-button.src/zwave-button.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-button.src/zwave-button.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-controller.src/zwave-controller.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-controller.src/zwave-controller.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-device.src/zwave-device.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-device.src/zwave-device.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-dimmer-switch-generic.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-dimmer-switch-generic.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-dimmer-switch-generic.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-door-temp-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-door-temp-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-door-window-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-door-window-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-door-window-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-garage-door-opener.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-garage-door-opener.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-garage-door-opener.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-lock.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-lock.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-lock.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-lock.src/zwave-lock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-lock.src/zwave-lock.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-motion-light-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-motion-light-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-motion-sensor.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-motion-sensor.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-motion-sensor.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-mouse-trap.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-mouse-trap.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-mouse-trap.src/zwave-mouse-trap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-mouse-trap.src/zwave-mouse-trap.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-relay.src/zwave-relay.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-relay.src/zwave-relay.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-remote.src/zwave-remote.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-remote.src/zwave-remote.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-sensor.src/zwave-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-sensor.src/zwave-sensor.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-siren.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-siren.src/i18n/messages.properties -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-siren.src/zwave-siren.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-siren.src/zwave-siren.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-smoke-alarm.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-smoke-alarm.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-smoke-alarm.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-switch-generic.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-switch-generic.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-switch-generic.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-switch.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-switch.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-switch.src/README.md -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-switch.src/zwave-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-switch.src/zwave-switch.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-thermostat.src/zwave-thermostat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-thermostat.src/zwave-thermostat.groovy -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-water-valve.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/smartthings/zwave-water-valve.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/smartthings/zwave-water-valve.src/README.md -------------------------------------------------------------------------------- /devicetypes/technisat/technisat-dimmer.src/technisat-dimmer.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/technisat/technisat-dimmer.src/technisat-dimmer.groovy -------------------------------------------------------------------------------- /devicetypes/vlaminck/minecraft/smart-block.src/smart-block.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/vlaminck/minecraft/smart-block.src/smart-block.groovy -------------------------------------------------------------------------------- /devicetypes/wackford/quirky-wink-nimbus.src/quirky-wink-nimbus.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/wackford/quirky-wink-nimbus.src/quirky-wink-nimbus.groovy -------------------------------------------------------------------------------- /devicetypes/wackford/tcp-bulb.src/tcp-bulb.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/wackford/tcp-bulb.src/tcp-bulb.groovy -------------------------------------------------------------------------------- /devicetypes/zenwithin/zen-thermostat.src/.st-ignore: -------------------------------------------------------------------------------- 1 | .st-ignore 2 | README.md 3 | -------------------------------------------------------------------------------- /devicetypes/zenwithin/zen-thermostat.src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/zenwithin/zen-thermostat.src/README.md -------------------------------------------------------------------------------- /devicetypes/zenwithin/zen-thermostat.src/zen-thermostat.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/zenwithin/zen-thermostat.src/zen-thermostat.groovy -------------------------------------------------------------------------------- /devicetypes/zooz/zooz-zse11-q-sensor.src/zooz-zse11-q-sensor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/devicetypes/zooz/zooz-zse11-q-sensor.src/zooz-zse11-q-sensor.groovy -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/settings.gradle -------------------------------------------------------------------------------- /smartapps/chrisb/goodnight-ubi.src/goodnight-ubi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/chrisb/goodnight-ubi.src/goodnight-ubi.groovy -------------------------------------------------------------------------------- /smartapps/com-gidjit-smartthings-hub/gidjit-hub.src/gidjit-hub.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/com-gidjit-smartthings-hub/gidjit-hub.src/gidjit-hub.groovy -------------------------------------------------------------------------------- /smartapps/curb/curb-control.src/curb-control.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/curb/curb-control.src/curb-control.groovy -------------------------------------------------------------------------------- /smartapps/curb/curb-energy-manager.src/curb-energy-manager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/curb/curb-energy-manager.src/curb-energy-manager.groovy -------------------------------------------------------------------------------- /smartapps/curb/curb-energy-monitor.src/curb-energy-monitor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/curb/curb-energy-monitor.src/curb-energy-monitor.groovy -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/co2-vent.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/co2-vent.groovy -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/dianoga/co2-vent.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/co2-vent.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/dianoga/netatmo-connect.src/netatmo-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/netatmo-connect.src/netatmo-connect.groovy -------------------------------------------------------------------------------- /smartapps/dianoga/thermostat-auto-off.src/thermostat-auto-off.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/thermostat-auto-off.src/thermostat-auto-off.groovy -------------------------------------------------------------------------------- /smartapps/dianoga/whole-house-fan.src/whole-house-fan.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dianoga/whole-house-fan.src/whole-house-fan.groovy -------------------------------------------------------------------------------- /smartapps/docwisdom/humidity-alert.src/humidity-alert.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/docwisdom/humidity-alert.src/humidity-alert.groovy -------------------------------------------------------------------------------- /smartapps/dooglave/let-there-be-dark.src/let-there-be-dark.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/dooglave/let-there-be-dark.src/let-there-be-dark.groovy -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/egid/smart-windows.src/smart-windows.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/smart-windows.src/smart-windows.groovy -------------------------------------------------------------------------------- /smartapps/egid/weather-windows.src/weather-windows.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/egid/weather-windows.src/weather-windows.groovy -------------------------------------------------------------------------------- /smartapps/gideon-api/gideon-smart-home.src/gideon-smart-home.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/gideon-api/gideon-smart-home.src/gideon-smart-home.groovy -------------------------------------------------------------------------------- /smartapps/gideon-api/gideon.src/gideon.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/gideon-api/gideon.src/gideon.groovy -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/door-knocker.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/door-knocker.groovy -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/door-knocker.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/door-knocker.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/forgiving-security.src/forgiving-security.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/forgiving-security.src/forgiving-security.groovy -------------------------------------------------------------------------------- /smartapps/imbrianj/nobody-home.src/nobody-home.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/nobody-home.src/nobody-home.groovy -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/imbrianj/ready-for-rain.src/ready-for-rain.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/ready-for-rain.src/ready-for-rain.groovy -------------------------------------------------------------------------------- /smartapps/imbrianj/safe-watch.src/safe-watch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/imbrianj/safe-watch.src/safe-watch.groovy -------------------------------------------------------------------------------- /smartapps/jls/my-light-toggle.src/my-light-toggle.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/jls/my-light-toggle.src/my-light-toggle.groovy -------------------------------------------------------------------------------- /smartapps/jonathan-a/auto-humidity-vent.src/auto-humidity-vent.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/jonathan-a/auto-humidity-vent.src/auto-humidity-vent.groovy -------------------------------------------------------------------------------- /smartapps/juano2310/jawbone-up-connect.src/jawbone-up-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/juano2310/jawbone-up-connect.src/jawbone-up-connect.groovy -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/color-coordinator.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/color-coordinator.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/michaelstruck/talking-alarm-clock.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/michaelstruck/talking-alarm-clock.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/osotech/plantlink-connector.src/plantlink-connector.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/osotech/plantlink-connector.src/plantlink-connector.groovy -------------------------------------------------------------------------------- /smartapps/plaidsystems/spruce-scheduler.src/spruce-scheduler.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/plaidsystems/spruce-scheduler.src/spruce-scheduler.groovy -------------------------------------------------------------------------------- /smartapps/resteele/monitor-on-sense.src/monitor-on-sense.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/resteele/monitor-on-sense.src/monitor-on-sense.groovy -------------------------------------------------------------------------------- /smartapps/sheikhsphere/smart-humidifier.src/smart-humidifier.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/sheikhsphere/smart-humidifier.src/smart-humidifier.groovy -------------------------------------------------------------------------------- /smartapps/sidjohn1/smart-turn-it-on.src/smart-turn-it-on.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/sidjohn1/smart-turn-it-on.src/smart-turn-it-on.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/beacon-control.src/beacon-control.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/beacon-control.src/beacon-control.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/big-turn-off.src/big-turn-off.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/big-turn-off.src/big-turn-off.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/big-turn-on.src/big-turn-on.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/big-turn-on.src/big-turn-on.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/bon-voyage.src/bon-voyage.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/bon-voyage.src/bon-voyage.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/brighten-my-path.src/brighten-my-path.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/brighten-my-path.src/brighten-my-path.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/button-controller.src/button-controller.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/button-controller.src/button-controller.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/carpool-notifier.src/carpool-notifier.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/carpool-notifier.src/carpool-notifier.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/close-the-valve.src/close-the-valve.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/close-the-valve.src/close-the-valve.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/curling-iron.src/curling-iron.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/curling-iron.src/curling-iron.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/darken-behind-me.src/darken-behind-me.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/darken-behind-me.src/darken-behind-me.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/double-tap.src/double-tap.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/double-tap.src/double-tap.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/dry-the-wetspot.src/dry-the-wetspot.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/dry-the-wetspot.src/dry-the-wetspot.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/energy-alerts.src/energy-alerts.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/energy-alerts.src/energy-alerts.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/energy-saver.src/energy-saver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/energy-saver.src/energy-saver.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/examples/every-element.src/every-element.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/examples/every-element.src/every-element.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/feed-my-pet.src/feed-my-pet.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/feed-my-pet.src/feed-my-pet.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/flood-alert.src/flood-alert.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/flood-alert.src/flood-alert.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/foscam-connect.src/foscam-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/foscam-connect.src/foscam-connect.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/gentle-wake-up.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/gentle-wake-up.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/gentle-wake-up.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/gentle-wake-up.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/smartthings/good-night.src/good-night.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/good-night.src/good-night.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/habit-helper.src/habit-helper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/habit-helper.src/habit-helper.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/hub-ip-notifier.src/hub-ip-notifier.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/hub-ip-notifier.src/hub-ip-notifier.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/hue-mood-lighting.src/hue-mood-lighting.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/hue-mood-lighting.src/hue-mood-lighting.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/ifttt.src/ifttt.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/ifttt.src/ifttt.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/it-moved.src/it-moved.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/it-moved.src/it-moved.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/its-too-cold.src/its-too-cold.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/its-too-cold.src/its-too-cold.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/its-too-hot.src/its-too-hot.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/its-too-hot.src/its-too-hot.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy-ii.src/keep-me-cozy-ii.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy-ii.src/keep-me-cozy-ii.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/keep-me-cozy.src/keep-me-cozy.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/keep-me-cozy.src/keep-me-cozy.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/laundry-monitor.src/laundry-monitor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/laundry-monitor.src/laundry-monitor.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/left-it-open.src/left-it-open.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/left-it-open.src/left-it-open.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/life360-connect.src/life360-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/life360-connect.src/life360-connect.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/light-follows-me.src/light-follows-me.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/light-follows-me.src/light-follows-me.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/mail-arrived.src/mail-arrived.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/mail-arrived.src/mail-arrived.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/make-it-so.src/make-it-so.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/make-it-so.src/make-it-so.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/medicine-reminder.src/medicine-reminder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/medicine-reminder.src/medicine-reminder.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/mood-cube.src/mood-cube.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/mood-cube.src/mood-cube.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/nfc-tag-toggle.src/nfc-tag-toggle.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/nfc-tag-toggle.src/nfc-tag-toggle.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/notify-me-when.src/i18n/messages.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/notify-me-when.src/i18n/messages.properties -------------------------------------------------------------------------------- /smartapps/smartthings/notify-me-when.src/notify-me-when.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/notify-me-when.src/notify-me-when.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/once-a-day.src/once-a-day.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/once-a-day.src/once-a-day.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/photo-burst-when.src/photo-burst-when.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/photo-burst-when.src/photo-burst-when.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/power-allowance.src/power-allowance.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/power-allowance.src/power-allowance.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/rise-and-shine.src/rise-and-shine.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/rise-and-shine.src/rise-and-shine.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/severe-weather-alert.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/severe-weather-alert.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/smartthings/sleepy-time.src/sleepy-time.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/sleepy-time.src/sleepy-time.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/smart-nightlight.src/smart-nightlight.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/smart-nightlight.src/smart-nightlight.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/smart-security.src/smart-security.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/smart-security.src/smart-security.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/sonos-music-modes.src/sonos-music-modes.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/sonos-music-modes.src/sonos-music-modes.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/speaker-control.src/speaker-control.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/speaker-control.src/speaker-control.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/step-notifier.src/step-notifier.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/step-notifier.src/step-notifier.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/sunrise-sunset.src/sunrise-sunset.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/sunrise-sunset.src/sunrise-sunset.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/tesla-connect.src/tesla-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/tesla-connect.src/tesla-connect.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/the-big-switch.src/the-big-switch.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/the-big-switch.src/the-big-switch.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/the-flasher.src/the-flasher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/the-flasher.src/the-flasher.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/ar-AE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/ar-AE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/bg-BG.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/bg-BG.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/ca-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/ca-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/cs-CZ.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/cs-CZ.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/da-DK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/da-DK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/de-DE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/de-DE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/el-GR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/el-GR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/en-GB.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/en-GB.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/en-US.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/en-US.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/es-ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/es-ES.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/es-MX.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/es-MX.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/et-EE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/et-EE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/fi-FI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/fi-FI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/fr-CA.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/fr-CA.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/fr-FR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/fr-FR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/hr-HR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/hr-HR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/hu-HU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/hu-HU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/it-IT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/it-IT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/ko-KR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/ko-KR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/nl-NL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/nl-NL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/no-NO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/no-NO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/pl-PL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/pl-PL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/pt-BR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/pt-BR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/pt-PT.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/pt-PT.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/ro-RO.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/ro-RO.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/ru-RU.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/ru-RU.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/sk-SK.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/sk-SK.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/sl-SI.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/sl-SI.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/sq-AL.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/sq-AL.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/sr-RS.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/sr-RS.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/sv-SE.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/sv-SE.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/th-TH.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/th-TH.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/tr-TR.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/tr-TR.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/i18n/zh-CN.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/i18n/zh-CN.properties -------------------------------------------------------------------------------- /smartapps/smartthings/thermostats.src/thermostats.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/thermostats.src/thermostats.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/ubi.src/ubi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/ubi.src/ubi.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/withings-manager.src/withings-manager.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/withings-manager.src/withings-manager.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/withings.src/withings.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/withings.src/withings.groovy -------------------------------------------------------------------------------- /smartapps/smartthings/yoics-connect.src/yoics-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/smartthings/yoics-connect.src/yoics-connect.groovy -------------------------------------------------------------------------------- /smartapps/statusbits/smart-alarm.src/smart-alarm.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/statusbits/smart-alarm.src/smart-alarm.groovy -------------------------------------------------------------------------------- /smartapps/tslagle13/lighting-director.src/lighting-director.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/tslagle13/lighting-director.src/lighting-director.groovy -------------------------------------------------------------------------------- /smartapps/tslagle13/routine-director.src/routine-director.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/tslagle13/routine-director.src/routine-director.groovy -------------------------------------------------------------------------------- /smartapps/vlaminck/alfred-workflow.src/alfred-workflow.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/vlaminck/alfred-workflow.src/alfred-workflow.groovy -------------------------------------------------------------------------------- /smartapps/wackford/quirky-connect.src/quirky-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/wackford/quirky-connect.src/quirky-connect.groovy -------------------------------------------------------------------------------- /smartapps/wackford/tcp-bulbs-connect.src/tcp-bulbs-connect.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/wackford/tcp-bulbs-connect.src/tcp-bulbs-connect.groovy -------------------------------------------------------------------------------- /smartapps/weatherbug/weatherbug-home.src/weatherbug-home.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SmartThingsCommunity/SmartThingsPublic/HEAD/smartapps/weatherbug/weatherbug-home.src/weatherbug-home.groovy --------------------------------------------------------------------------------