├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── devicetypes └── redloro-smartthings │ ├── blink-monitor.src │ └── blink-monitor.groovy │ ├── generic-device.src │ └── generic-device.groovy │ ├── honeywell-partition.src │ └── honeywell-partition.groovy │ ├── honeywell-zone-carbonMonoxide.src │ └── honeywell-zone-carbonMonoxide.groovy │ ├── honeywell-zone-contact.src │ └── honeywell-zone-contact.groovy │ ├── honeywell-zone-motion.src │ └── honeywell-zone-motion.groovy │ ├── honeywell-zone-smoke.src │ └── honeywell-zone-smoke.groovy │ ├── honeywell-zone-water.src │ └── honeywell-zone-water.groovy │ ├── mpr6z-zone.src │ └── mpr6z-zone.groovy │ ├── musiccast-zone.src │ └── musiccast-zone.groovy │ ├── russound-zone.src │ └── russound-zone.groovy │ └── yamaha-zone.src │ └── yamaha-zone.groovy ├── docker ├── .dockerignore ├── README.md ├── config.sample ├── docker-compose.yml └── docker-entrypoint.sh ├── images ├── arrow_down.png ├── arrow_up.png ├── bass.png ├── blink.png ├── dash-button.png ├── generic.png ├── honeywell-security.png ├── indicator-dot-gray.png ├── indicator-dot-green.png ├── indicator-dot-loudness.png ├── indicator-dot-mute.png ├── indicator-dot-party.png ├── indicator-dot-party2.png ├── indicator-dot-party3.png ├── indicator-dot-party4.png ├── indicator-dot-power.png ├── indicator-template.pxm ├── label-template.pxm ├── monoprice.png ├── mute-off.png ├── mute-on.png ├── russound-rnet.png ├── treble.png └── yamaha-receiver.png ├── smartapps └── redloro-smartthings │ ├── blink-home-monitoring.src │ └── blink-home-monitoring.groovy │ ├── dash-button.src │ └── dash-button.groovy │ ├── generic.src │ └── generic.groovy │ ├── honeywell-security.src │ └── honeywell-security.groovy │ ├── monoprice-sg6z.src │ └── monoprice-sg6z.groovy │ ├── musiccast-receiver.src │ ├── YXC_API_Spec_Basic.pdf │ └── musiccast-receiver.groovy │ ├── russound-rnet.src │ ├── docs │ │ ├── Getting_Started.pdf │ │ ├── RIO Protocol for 3rd Party Integrators.pdf │ │ ├── RNET_Dual_Tuner_Protocol_V1.00.03.pdf │ │ ├── Reading RNET V1_00_03.pdf │ │ ├── Russound E5 Tuner RS232 hex codes.pdf │ │ ├── Russound RS232 docklight v2.zip │ │ ├── Russound RS232 hex codes v1_00_7.pdf │ │ ├── Russound ST2 RS232 hex codes.pdf │ │ ├── Russound controller2 and 3 rs232 hex codes v1_00_6.pdf │ │ ├── Russound vm1 rs232 Hex Codes v1_00_03.pdf │ │ ├── Russound_Controllers_Protocol_v1_00_04.pdf │ │ ├── Russound_MediaManagement_Protocol.pdf │ │ ├── russound_vm1_rs232_v1_00_00.pdf │ │ └── versions.txt │ └── russound-rnet.groovy │ └── yamaha-receiver.src │ └── yamaha-receiver.groovy └── smartthings-nodeproxy ├── avail_plugins ├── ad2usb.js ├── dash.js ├── envisalink.js ├── generic.js ├── mpr-sg6z.js └── rnet.js ├── config.json.sample ├── package.json ├── restart.me ├── server.js └── smartthings-nodeproxy.service /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | temp 3 | config.json 4 | node_modules 5 | plugins 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/README.md -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/blink-monitor.src/blink-monitor.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/blink-monitor.src/blink-monitor.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/generic-device.src/generic-device.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/generic-device.src/generic-device.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/honeywell-partition.src/honeywell-partition.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/honeywell-partition.src/honeywell-partition.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/honeywell-zone-carbonMonoxide.src/honeywell-zone-carbonMonoxide.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/honeywell-zone-carbonMonoxide.src/honeywell-zone-carbonMonoxide.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/honeywell-zone-contact.src/honeywell-zone-contact.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/honeywell-zone-contact.src/honeywell-zone-contact.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/honeywell-zone-motion.src/honeywell-zone-motion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/honeywell-zone-motion.src/honeywell-zone-motion.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/honeywell-zone-smoke.src/honeywell-zone-smoke.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/honeywell-zone-smoke.src/honeywell-zone-smoke.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/honeywell-zone-water.src/honeywell-zone-water.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/honeywell-zone-water.src/honeywell-zone-water.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/mpr6z-zone.src/mpr6z-zone.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/mpr6z-zone.src/mpr6z-zone.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/musiccast-zone.src/musiccast-zone.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/musiccast-zone.src/musiccast-zone.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/russound-zone.src/russound-zone.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/russound-zone.src/russound-zone.groovy -------------------------------------------------------------------------------- /devicetypes/redloro-smartthings/yamaha-zone.src/yamaha-zone.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/devicetypes/redloro-smartthings/yamaha-zone.src/yamaha-zone.groovy -------------------------------------------------------------------------------- /docker/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/docker/.dockerignore -------------------------------------------------------------------------------- /docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/docker/README.md -------------------------------------------------------------------------------- /docker/config.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/docker/config.sample -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/docker/docker-entrypoint.sh -------------------------------------------------------------------------------- /images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/arrow_down.png -------------------------------------------------------------------------------- /images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/arrow_up.png -------------------------------------------------------------------------------- /images/bass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/bass.png -------------------------------------------------------------------------------- /images/blink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/blink.png -------------------------------------------------------------------------------- /images/dash-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/dash-button.png -------------------------------------------------------------------------------- /images/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/generic.png -------------------------------------------------------------------------------- /images/honeywell-security.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/honeywell-security.png -------------------------------------------------------------------------------- /images/indicator-dot-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-gray.png -------------------------------------------------------------------------------- /images/indicator-dot-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-green.png -------------------------------------------------------------------------------- /images/indicator-dot-loudness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-loudness.png -------------------------------------------------------------------------------- /images/indicator-dot-mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-mute.png -------------------------------------------------------------------------------- /images/indicator-dot-party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-party.png -------------------------------------------------------------------------------- /images/indicator-dot-party2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-party2.png -------------------------------------------------------------------------------- /images/indicator-dot-party3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-party3.png -------------------------------------------------------------------------------- /images/indicator-dot-party4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-party4.png -------------------------------------------------------------------------------- /images/indicator-dot-power.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-dot-power.png -------------------------------------------------------------------------------- /images/indicator-template.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/indicator-template.pxm -------------------------------------------------------------------------------- /images/label-template.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/label-template.pxm -------------------------------------------------------------------------------- /images/monoprice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/monoprice.png -------------------------------------------------------------------------------- /images/mute-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/mute-off.png -------------------------------------------------------------------------------- /images/mute-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/mute-on.png -------------------------------------------------------------------------------- /images/russound-rnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/russound-rnet.png -------------------------------------------------------------------------------- /images/treble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/treble.png -------------------------------------------------------------------------------- /images/yamaha-receiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/images/yamaha-receiver.png -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/blink-home-monitoring.src/blink-home-monitoring.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/blink-home-monitoring.src/blink-home-monitoring.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/dash-button.src/dash-button.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/dash-button.src/dash-button.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/generic.src/generic.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/generic.src/generic.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/honeywell-security.src/honeywell-security.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/honeywell-security.src/honeywell-security.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/monoprice-sg6z.src/monoprice-sg6z.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/monoprice-sg6z.src/monoprice-sg6z.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/musiccast-receiver.src/YXC_API_Spec_Basic.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/musiccast-receiver.src/YXC_API_Spec_Basic.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/musiccast-receiver.src/musiccast-receiver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/musiccast-receiver.src/musiccast-receiver.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Getting_Started.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Getting_Started.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/RIO Protocol for 3rd Party Integrators.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/RIO Protocol for 3rd Party Integrators.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/RNET_Dual_Tuner_Protocol_V1.00.03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/RNET_Dual_Tuner_Protocol_V1.00.03.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Reading RNET V1_00_03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Reading RNET V1_00_03.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound E5 Tuner RS232 hex codes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound E5 Tuner RS232 hex codes.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound RS232 docklight v2.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound RS232 docklight v2.zip -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound RS232 hex codes v1_00_7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound RS232 hex codes v1_00_7.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound ST2 RS232 hex codes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound ST2 RS232 hex codes.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound controller2 and 3 rs232 hex codes v1_00_6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound controller2 and 3 rs232 hex codes v1_00_6.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound vm1 rs232 Hex Codes v1_00_03.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound vm1 rs232 Hex Codes v1_00_03.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound_Controllers_Protocol_v1_00_04.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound_Controllers_Protocol_v1_00_04.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/Russound_MediaManagement_Protocol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/Russound_MediaManagement_Protocol.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/russound_vm1_rs232_v1_00_00.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/russound_vm1_rs232_v1_00_00.pdf -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/docs/versions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/docs/versions.txt -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/russound-rnet.src/russound-rnet.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/russound-rnet.src/russound-rnet.groovy -------------------------------------------------------------------------------- /smartapps/redloro-smartthings/yamaha-receiver.src/yamaha-receiver.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartapps/redloro-smartthings/yamaha-receiver.src/yamaha-receiver.groovy -------------------------------------------------------------------------------- /smartthings-nodeproxy/avail_plugins/ad2usb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/avail_plugins/ad2usb.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/avail_plugins/dash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/avail_plugins/dash.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/avail_plugins/envisalink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/avail_plugins/envisalink.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/avail_plugins/generic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/avail_plugins/generic.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/avail_plugins/mpr-sg6z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/avail_plugins/mpr-sg6z.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/avail_plugins/rnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/avail_plugins/rnet.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/config.json.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/config.json.sample -------------------------------------------------------------------------------- /smartthings-nodeproxy/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/package.json -------------------------------------------------------------------------------- /smartthings-nodeproxy/restart.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/restart.me -------------------------------------------------------------------------------- /smartthings-nodeproxy/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/server.js -------------------------------------------------------------------------------- /smartthings-nodeproxy/smartthings-nodeproxy.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redloro/smartthings/HEAD/smartthings-nodeproxy/smartthings-nodeproxy.service --------------------------------------------------------------------------------