├── .gitignore ├── 4series-demo.rar ├── LICENSE ├── README.MD ├── crestron-node-config.html ├── crestron-node-config.js ├── crestron-node.html ├── crestron-node.js ├── demo.zip ├── demo ├── CresNode.ush ├── CresNode.usp ├── SPlsWork │ ├── CresNode.cs │ ├── CresNode.dll │ ├── CresNode.inf │ ├── ManagedUtilities.dll │ ├── ManagedUtilitiesCE.dll │ ├── NVRamUtility.exe │ ├── Newtonsoft.Json.Compact.dll │ ├── S2_CresNode.c │ ├── S2_CresNode.elf │ ├── S2_CresNode.h │ ├── S2_CresNode.map │ ├── S2_CresNode.o │ ├── S2_CresNode.spl │ ├── SPlusHeader.exe │ ├── Simpl#Config.xml │ ├── SimplSharpCustomAttributesInterface.dll │ ├── SimplSharpHelperInterface.dll │ ├── SmartThreadPoolCE.dll │ ├── SplusLibrary.dll │ ├── SplusObjects.dll │ ├── Utilities.dll │ ├── Version.ini │ └── zpcVXNlc.projectinfo ├── test.lpz ├── test.lpz.hash ├── test.sig ├── test.smft └── test.smw ├── icons └── crestron.png ├── images ├── crestron-node.png ├── edit.png ├── node-demo.jpg ├── node-test.png ├── server.png └── simpl.png └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | server.js -------------------------------------------------------------------------------- /4series-demo.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/4series-demo.rar -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/README.MD -------------------------------------------------------------------------------- /crestron-node-config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/crestron-node-config.html -------------------------------------------------------------------------------- /crestron-node-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/crestron-node-config.js -------------------------------------------------------------------------------- /crestron-node.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/crestron-node.html -------------------------------------------------------------------------------- /crestron-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/crestron-node.js -------------------------------------------------------------------------------- /demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo.zip -------------------------------------------------------------------------------- /demo/CresNode.ush: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/CresNode.ush -------------------------------------------------------------------------------- /demo/CresNode.usp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/CresNode.usp -------------------------------------------------------------------------------- /demo/SPlsWork/CresNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/CresNode.cs -------------------------------------------------------------------------------- /demo/SPlsWork/CresNode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/CresNode.dll -------------------------------------------------------------------------------- /demo/SPlsWork/CresNode.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/CresNode.inf -------------------------------------------------------------------------------- /demo/SPlsWork/ManagedUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/ManagedUtilities.dll -------------------------------------------------------------------------------- /demo/SPlsWork/ManagedUtilitiesCE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/ManagedUtilitiesCE.dll -------------------------------------------------------------------------------- /demo/SPlsWork/NVRamUtility.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/NVRamUtility.exe -------------------------------------------------------------------------------- /demo/SPlsWork/Newtonsoft.Json.Compact.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/Newtonsoft.Json.Compact.dll -------------------------------------------------------------------------------- /demo/SPlsWork/S2_CresNode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/S2_CresNode.c -------------------------------------------------------------------------------- /demo/SPlsWork/S2_CresNode.elf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/S2_CresNode.elf -------------------------------------------------------------------------------- /demo/SPlsWork/S2_CresNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/S2_CresNode.h -------------------------------------------------------------------------------- /demo/SPlsWork/S2_CresNode.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/S2_CresNode.map -------------------------------------------------------------------------------- /demo/SPlsWork/S2_CresNode.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/S2_CresNode.o -------------------------------------------------------------------------------- /demo/SPlsWork/S2_CresNode.spl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/S2_CresNode.spl -------------------------------------------------------------------------------- /demo/SPlsWork/SPlusHeader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/SPlusHeader.exe -------------------------------------------------------------------------------- /demo/SPlsWork/Simpl#Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/Simpl#Config.xml -------------------------------------------------------------------------------- /demo/SPlsWork/SimplSharpCustomAttributesInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/SimplSharpCustomAttributesInterface.dll -------------------------------------------------------------------------------- /demo/SPlsWork/SimplSharpHelperInterface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/SimplSharpHelperInterface.dll -------------------------------------------------------------------------------- /demo/SPlsWork/SmartThreadPoolCE.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/SmartThreadPoolCE.dll -------------------------------------------------------------------------------- /demo/SPlsWork/SplusLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/SplusLibrary.dll -------------------------------------------------------------------------------- /demo/SPlsWork/SplusObjects.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/SplusObjects.dll -------------------------------------------------------------------------------- /demo/SPlsWork/Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/Utilities.dll -------------------------------------------------------------------------------- /demo/SPlsWork/Version.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/Version.ini -------------------------------------------------------------------------------- /demo/SPlsWork/zpcVXNlc.projectinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/SPlsWork/zpcVXNlc.projectinfo -------------------------------------------------------------------------------- /demo/test.lpz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/test.lpz -------------------------------------------------------------------------------- /demo/test.lpz.hash: -------------------------------------------------------------------------------- 1 | 2019-12-25T12:49:23Z -------------------------------------------------------------------------------- /demo/test.sig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/test.sig -------------------------------------------------------------------------------- /demo/test.smft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/test.smft -------------------------------------------------------------------------------- /demo/test.smw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/demo/test.smw -------------------------------------------------------------------------------- /icons/crestron.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/icons/crestron.png -------------------------------------------------------------------------------- /images/crestron-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/images/crestron-node.png -------------------------------------------------------------------------------- /images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/images/edit.png -------------------------------------------------------------------------------- /images/node-demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/images/node-demo.jpg -------------------------------------------------------------------------------- /images/node-test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/images/node-test.png -------------------------------------------------------------------------------- /images/server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/images/server.png -------------------------------------------------------------------------------- /images/simpl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/images/simpl.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songzh96/node-red-contrib-crestron/HEAD/package.json --------------------------------------------------------------------------------