├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Crestron CIP Tests ├── Crestron CIP Tests.csproj ├── LICENSE ├── Properties │ └── AssemblyInfo.cs ├── obj │ └── Debug │ │ └── Crestron CIP Tests.csproj.FileListAbsolute.txt └── utils │ └── StringHelperTest.cs ├── Crestron CIP.sln ├── Crestron CIP.vsmdi ├── Crestron CIP ├── CODE_OF_CONDUCT.md ├── ClassDiagram1.cd ├── Crestron CIP Server.cs ├── Crestron CIP.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── LICENSE ├── Program.cs ├── README.md ├── junk │ ├── AsyncClient.cs │ ├── SocketServer.cs │ ├── SocketServerManualSingleBuffer.cs │ ├── TestView1.cs │ ├── UiHandler.v0.1.cs │ ├── UiHandler.v0.2.cs │ └── UiWithMeta.cs ├── sockets │ ├── CircularBuffer.cs │ ├── Connection.cs │ ├── ConnectionList.cs │ └── SocketServer.cs ├── ui │ ├── AUserInterfaceEvents.cs │ ├── TestView2.cs │ └── UserInterfacePage.cs └── utils │ ├── CrestronDevice.cs │ ├── CrestronJoins.cs │ ├── Logging.cs │ └── Stringhelper.cs ├── LICENSE ├── LocalTestRun.testrunconfig ├── README.md └── UserInterface ├── CrestronCIPDemoXpan.sgd └── CrestronCIPDemoXpan.vtp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Crestron CIP Tests/Crestron CIP Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP Tests/Crestron CIP Tests.csproj -------------------------------------------------------------------------------- /Crestron CIP Tests/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP Tests/LICENSE -------------------------------------------------------------------------------- /Crestron CIP Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Crestron CIP Tests/obj/Debug/Crestron CIP Tests.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP Tests/obj/Debug/Crestron CIP Tests.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /Crestron CIP Tests/utils/StringHelperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP Tests/utils/StringHelperTest.cs -------------------------------------------------------------------------------- /Crestron CIP.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP.sln -------------------------------------------------------------------------------- /Crestron CIP.vsmdi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP.vsmdi -------------------------------------------------------------------------------- /Crestron CIP/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Crestron CIP/ClassDiagram1.cd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Crestron CIP/Crestron CIP Server.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/Crestron CIP Server.cs -------------------------------------------------------------------------------- /Crestron CIP/Crestron CIP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/Crestron CIP.csproj -------------------------------------------------------------------------------- /Crestron CIP/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/Form1.Designer.cs -------------------------------------------------------------------------------- /Crestron CIP/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/Form1.cs -------------------------------------------------------------------------------- /Crestron CIP/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/Form1.resx -------------------------------------------------------------------------------- /Crestron CIP/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/LICENSE -------------------------------------------------------------------------------- /Crestron CIP/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/Program.cs -------------------------------------------------------------------------------- /Crestron CIP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/README.md -------------------------------------------------------------------------------- /Crestron CIP/junk/AsyncClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/AsyncClient.cs -------------------------------------------------------------------------------- /Crestron CIP/junk/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/SocketServer.cs -------------------------------------------------------------------------------- /Crestron CIP/junk/SocketServerManualSingleBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/SocketServerManualSingleBuffer.cs -------------------------------------------------------------------------------- /Crestron CIP/junk/TestView1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/TestView1.cs -------------------------------------------------------------------------------- /Crestron CIP/junk/UiHandler.v0.1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/UiHandler.v0.1.cs -------------------------------------------------------------------------------- /Crestron CIP/junk/UiHandler.v0.2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/UiHandler.v0.2.cs -------------------------------------------------------------------------------- /Crestron CIP/junk/UiWithMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/junk/UiWithMeta.cs -------------------------------------------------------------------------------- /Crestron CIP/sockets/CircularBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/sockets/CircularBuffer.cs -------------------------------------------------------------------------------- /Crestron CIP/sockets/Connection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/sockets/Connection.cs -------------------------------------------------------------------------------- /Crestron CIP/sockets/ConnectionList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/sockets/ConnectionList.cs -------------------------------------------------------------------------------- /Crestron CIP/sockets/SocketServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/sockets/SocketServer.cs -------------------------------------------------------------------------------- /Crestron CIP/ui/AUserInterfaceEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/ui/AUserInterfaceEvents.cs -------------------------------------------------------------------------------- /Crestron CIP/ui/TestView2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/ui/TestView2.cs -------------------------------------------------------------------------------- /Crestron CIP/ui/UserInterfacePage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/ui/UserInterfacePage.cs -------------------------------------------------------------------------------- /Crestron CIP/utils/CrestronDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/utils/CrestronDevice.cs -------------------------------------------------------------------------------- /Crestron CIP/utils/CrestronJoins.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/utils/CrestronJoins.cs -------------------------------------------------------------------------------- /Crestron CIP/utils/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/utils/Logging.cs -------------------------------------------------------------------------------- /Crestron CIP/utils/Stringhelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/Crestron CIP/utils/Stringhelper.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/LICENSE -------------------------------------------------------------------------------- /LocalTestRun.testrunconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/LocalTestRun.testrunconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/README.md -------------------------------------------------------------------------------- /UserInterface/CrestronCIPDemoXpan.sgd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/UserInterface/CrestronCIPDemoXpan.sgd -------------------------------------------------------------------------------- /UserInterface/CrestronCIPDemoXpan.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rdriscoll/Crestron-CIP/HEAD/UserInterface/CrestronCIPDemoXpan.vtp --------------------------------------------------------------------------------