├── .gitattributes ├── .gitignore ├── README.md ├── codeproject_template.htm ├── mc.omron.v1.00 ├── BytesTools.cs ├── FINSCommands │ ├── IFinsCommand.cs │ └── tcpFinsCommand.cs ├── OmronPLC.cs ├── Properties │ └── AssemblyInfo.cs ├── TransportLayer │ ├── ITransport.cs │ ├── tcpTransport.cs │ └── udpTransport.cs └── mc.Omron.v1.00.csproj ├── mcOMRON.png ├── omron_test.sln ├── test_btools ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── test_btools.csproj └── test_plc ├── App.config ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── TestPLC.Designer.cs ├── TestPLC.cs ├── TestPLC.resx └── test_plc.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/README.md -------------------------------------------------------------------------------- /codeproject_template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/codeproject_template.htm -------------------------------------------------------------------------------- /mc.omron.v1.00/BytesTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/BytesTools.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/FINSCommands/IFinsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/FINSCommands/IFinsCommand.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/FINSCommands/tcpFinsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/FINSCommands/tcpFinsCommand.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/OmronPLC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/OmronPLC.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/TransportLayer/ITransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/TransportLayer/ITransport.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/TransportLayer/tcpTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/TransportLayer/tcpTransport.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/TransportLayer/udpTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/TransportLayer/udpTransport.cs -------------------------------------------------------------------------------- /mc.omron.v1.00/mc.Omron.v1.00.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mc.omron.v1.00/mc.Omron.v1.00.csproj -------------------------------------------------------------------------------- /mcOMRON.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/mcOMRON.png -------------------------------------------------------------------------------- /omron_test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/omron_test.sln -------------------------------------------------------------------------------- /test_btools/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_btools/App.config -------------------------------------------------------------------------------- /test_btools/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_btools/Program.cs -------------------------------------------------------------------------------- /test_btools/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_btools/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test_btools/test_btools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_btools/test_btools.csproj -------------------------------------------------------------------------------- /test_plc/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/App.config -------------------------------------------------------------------------------- /test_plc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/Program.cs -------------------------------------------------------------------------------- /test_plc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test_plc/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /test_plc/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/Properties/Resources.resx -------------------------------------------------------------------------------- /test_plc/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /test_plc/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/Properties/Settings.settings -------------------------------------------------------------------------------- /test_plc/TestPLC.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/TestPLC.Designer.cs -------------------------------------------------------------------------------- /test_plc/TestPLC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/TestPLC.cs -------------------------------------------------------------------------------- /test_plc/TestPLC.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/TestPLC.resx -------------------------------------------------------------------------------- /test_plc/test_plc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcNets/mcOmron/HEAD/test_plc/test_plc.csproj --------------------------------------------------------------------------------