├── .gitattributes ├── .gitignore ├── ConsoleTest ├── ConsoleTest.csproj └── Program.cs ├── LICENSE ├── Ping9719.IoT.Avalonia ├── Device │ ├── DaZhuMarkView.axaml │ └── DaZhuMarkView.axaml.cs ├── Ping9719.IoT.Avalonia.csproj └── docs │ ├── README.md │ ├── README_en-US.md │ └── VERSION.md ├── Ping9719.IoT.Hid ├── BleClient.cs ├── Ping9719.IoT.Hid.csproj ├── UsbHidClient.cs └── docs │ ├── README.md │ ├── README_en-US.md │ └── VERSION.md ├── Ping9719.IoT.WPF ├── Device │ ├── BeiJiaFuRfidView.xaml │ ├── BeiJiaFuRfidView.xaml.cs │ ├── CosmoAirtightView.xaml │ ├── CosmoAirtightView.xaml.cs │ ├── DaZhuMarkView.xaml │ ├── DaZhuMarkView.xaml.cs │ ├── HuaPuMarkView.xaml │ ├── HuaPuMarkView.xaml.cs │ ├── RfidView.xaml │ ├── RfidView.xaml.cs │ ├── ScannerView.xaml │ ├── ScannerView.xaml.cs │ ├── TaiHeSenRfidView.xaml │ ├── TaiHeSenRfidView.xaml.cs │ ├── WanQuanRfidView.xaml │ └── WanQuanRfidView.xaml.cs ├── Ping9719.IoT.WPF.csproj ├── Properties │ └── AssemblyInfo.cs └── docs │ ├── README.md │ ├── README_en-US.md │ ├── VERSION.md │ └── img │ └── RfidView.png ├── Ping9719.IoT.sln ├── Ping9719.IoT ├── Algorithm │ ├── AveragePoint.cs │ ├── CRC.cs │ ├── FFTFilter.cs │ ├── GaleShapleyAlgorithm.cs │ ├── LRC.cs │ └── LinearRegression.cs ├── Common │ ├── DataConvert.cs │ ├── EndianConversion.cs │ ├── EnumerableExtension.cs │ ├── JsonUtil.cs │ └── WordHelp.cs ├── Communication │ ├── ClientBase.cs │ ├── Http │ │ └── HttpService.cs │ ├── Interfaces │ │ ├── IDataProcessor.cs │ │ └── INetwork.cs │ ├── Models │ │ ├── DataProcessor │ │ │ ├── EndAddValueDataProcessor.cs │ │ │ ├── EndClearValueDataProcessor.cs │ │ │ ├── PadLeftDataProcessor.cs │ │ │ ├── PadRightDataProcessor.cs │ │ │ ├── StartAddValueDataProcessor.cs │ │ │ ├── StartClearValueDataProcessor.cs │ │ │ ├── TrimDataProcessor.cs │ │ │ ├── TrimEndDataProcessor.cs │ │ │ └── TrimStartDataProcessor.cs │ │ └── QueueByteFixed.cs │ ├── SerialPort │ │ └── SerialPortClient.cs │ ├── ServiceBase.cs │ ├── TCP │ │ ├── TcpClient.cs │ │ └── TcpService.cs │ └── UDP │ │ └── UdpClient.cs ├── Device │ ├── Airtight │ │ └── CosmoAirtight.cs │ ├── Fct │ │ └── MengXunFct.cs │ ├── Mark │ │ ├── DaZhuMark.cs │ │ └── HuaPuMark.cs │ ├── Rfid │ │ ├── BeiJiaFuRfid.cs │ │ ├── DongJiRfid.cs │ │ ├── Models │ │ │ ├── RfidAddress.cs │ │ │ └── RfidArea.cs │ │ ├── TaiHeSenRfid.cs │ │ └── WanQuanRfid.cs │ ├── Scanner │ │ ├── HoneywellScanner.cs │ │ ├── IScannerBase.cs │ │ └── MindeoScanner.cs │ ├── Screw │ │ ├── KuaiKeDeskScrew.cs │ │ ├── KuaiKeScrew.cs │ │ ├── KuaiKeTcpScrew.cs │ │ └── MiLeScrew.cs │ ├── TemperatureControl │ │ └── KuaiKeTemperatureControl.cs │ └── Weld │ │ └── KuaiKeWeld.cs ├── Enums │ ├── DataTypeEnum.cs │ ├── EncodingEnum.cs │ └── EndianFormat.cs ├── Interfaces │ ├── IClient.cs │ ├── IClientData.cs │ └── IReadWrite.cs ├── IoTResult.cs ├── Modbus │ ├── ModbusAsciiClient.cs │ ├── ModbusRtuClient.cs │ ├── ModbusTcpClient.cs │ └── Models │ │ ├── ModbusCode.cs │ │ ├── ModbusErr.cs │ │ └── ModbusInfo.cs ├── PLC │ ├── AllenBradleyCipClient.cs │ ├── Enums │ │ ├── CipVariableType.cs │ │ ├── MitsubishiVersion.cs │ │ └── SiemensVersion.cs │ ├── InovanceModbusTcpClient.cs │ ├── MitsubishiMcClient.cs │ ├── Models │ │ ├── AllenBradleyAddress.cs │ │ ├── MitsubishiMCAddress.cs │ │ ├── OmronFinsAddress.cs │ │ └── SiemensAddress.cs │ ├── OmronCipClient.cs │ ├── OmronFinsClient.cs │ └── SiemensS7Client.cs ├── Ping9719.IoT.csproj ├── ReadWriteBase.cs ├── Robot │ └── EpsonRobot.cs └── docs │ ├── README.md │ ├── README_en-US.md │ └── VERSION.md ├── README.md ├── README_en-US.md └── img ├── bao.png ├── frame.drawio └── frame.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/.gitignore -------------------------------------------------------------------------------- /ConsoleTest/ConsoleTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/ConsoleTest/ConsoleTest.csproj -------------------------------------------------------------------------------- /ConsoleTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/ConsoleTest/Program.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/LICENSE -------------------------------------------------------------------------------- /Ping9719.IoT.Avalonia/Device/DaZhuMarkView.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Avalonia/Device/DaZhuMarkView.axaml -------------------------------------------------------------------------------- /Ping9719.IoT.Avalonia/Device/DaZhuMarkView.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Avalonia/Device/DaZhuMarkView.axaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.Avalonia/Ping9719.IoT.Avalonia.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Avalonia/Ping9719.IoT.Avalonia.csproj -------------------------------------------------------------------------------- /Ping9719.IoT.Avalonia/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Avalonia/docs/README.md -------------------------------------------------------------------------------- /Ping9719.IoT.Avalonia/docs/README_en-US.md: -------------------------------------------------------------------------------- 1 | ... -------------------------------------------------------------------------------- /Ping9719.IoT.Avalonia/docs/VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Avalonia/docs/VERSION.md -------------------------------------------------------------------------------- /Ping9719.IoT.Hid/BleClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Hid/BleClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT.Hid/Ping9719.IoT.Hid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Hid/Ping9719.IoT.Hid.csproj -------------------------------------------------------------------------------- /Ping9719.IoT.Hid/UsbHidClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Hid/UsbHidClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT.Hid/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Hid/docs/README.md -------------------------------------------------------------------------------- /Ping9719.IoT.Hid/docs/README_en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Hid/docs/README_en-US.md -------------------------------------------------------------------------------- /Ping9719.IoT.Hid/docs/VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.Hid/docs/VERSION.md -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/BeiJiaFuRfidView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/BeiJiaFuRfidView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/BeiJiaFuRfidView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/BeiJiaFuRfidView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/CosmoAirtightView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/CosmoAirtightView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/CosmoAirtightView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/CosmoAirtightView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/DaZhuMarkView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/DaZhuMarkView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/DaZhuMarkView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/DaZhuMarkView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/HuaPuMarkView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/HuaPuMarkView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/HuaPuMarkView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/HuaPuMarkView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/RfidView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/RfidView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/RfidView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/RfidView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/ScannerView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/ScannerView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/ScannerView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/ScannerView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/TaiHeSenRfidView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/TaiHeSenRfidView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/TaiHeSenRfidView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/TaiHeSenRfidView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/WanQuanRfidView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/WanQuanRfidView.xaml -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Device/WanQuanRfidView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Device/WanQuanRfidView.xaml.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Ping9719.IoT.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Ping9719.IoT.WPF.csproj -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/docs/README.md -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/docs/README_en-US.md: -------------------------------------------------------------------------------- 1 | ... -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/docs/VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/docs/VERSION.md -------------------------------------------------------------------------------- /Ping9719.IoT.WPF/docs/img/RfidView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.WPF/docs/img/RfidView.png -------------------------------------------------------------------------------- /Ping9719.IoT.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT.sln -------------------------------------------------------------------------------- /Ping9719.IoT/Algorithm/AveragePoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Algorithm/AveragePoint.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Algorithm/CRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Algorithm/CRC.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Algorithm/FFTFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Algorithm/FFTFilter.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Algorithm/GaleShapleyAlgorithm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Algorithm/GaleShapleyAlgorithm.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Algorithm/LRC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Algorithm/LRC.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Algorithm/LinearRegression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Algorithm/LinearRegression.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Common/DataConvert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Common/DataConvert.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Common/EndianConversion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Common/EndianConversion.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Common/EnumerableExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Common/EnumerableExtension.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Common/JsonUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Common/JsonUtil.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Common/WordHelp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Common/WordHelp.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/ClientBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/ClientBase.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Http/HttpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Http/HttpService.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Interfaces/IDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Interfaces/IDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Interfaces/INetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Interfaces/INetwork.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/EndAddValueDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/EndAddValueDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/EndClearValueDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/EndClearValueDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/PadLeftDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/PadLeftDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/PadRightDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/PadRightDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/StartAddValueDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/StartAddValueDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/StartClearValueDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/StartClearValueDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/TrimDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/TrimDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/TrimEndDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/TrimEndDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/DataProcessor/TrimStartDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/DataProcessor/TrimStartDataProcessor.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/Models/QueueByteFixed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/Models/QueueByteFixed.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/SerialPort/SerialPortClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/SerialPort/SerialPortClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/ServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/ServiceBase.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/TCP/TcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/TCP/TcpClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/TCP/TcpService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/TCP/TcpService.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Communication/UDP/UdpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Communication/UDP/UdpClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Airtight/CosmoAirtight.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Airtight/CosmoAirtight.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Fct/MengXunFct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Fct/MengXunFct.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Mark/DaZhuMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Mark/DaZhuMark.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Mark/HuaPuMark.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Mark/HuaPuMark.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Rfid/BeiJiaFuRfid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Rfid/BeiJiaFuRfid.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Rfid/DongJiRfid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Rfid/DongJiRfid.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Rfid/Models/RfidAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Rfid/Models/RfidAddress.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Rfid/Models/RfidArea.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Rfid/Models/RfidArea.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Rfid/TaiHeSenRfid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Rfid/TaiHeSenRfid.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Rfid/WanQuanRfid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Rfid/WanQuanRfid.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Scanner/HoneywellScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Scanner/HoneywellScanner.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Scanner/IScannerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Scanner/IScannerBase.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Scanner/MindeoScanner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Scanner/MindeoScanner.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Screw/KuaiKeDeskScrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Screw/KuaiKeDeskScrew.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Screw/KuaiKeScrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Screw/KuaiKeScrew.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Screw/KuaiKeTcpScrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Screw/KuaiKeTcpScrew.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Screw/MiLeScrew.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Screw/MiLeScrew.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/TemperatureControl/KuaiKeTemperatureControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/TemperatureControl/KuaiKeTemperatureControl.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Device/Weld/KuaiKeWeld.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Device/Weld/KuaiKeWeld.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Enums/DataTypeEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Enums/DataTypeEnum.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Enums/EncodingEnum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Enums/EncodingEnum.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Enums/EndianFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Enums/EndianFormat.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Interfaces/IClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Interfaces/IClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Interfaces/IClientData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Interfaces/IClientData.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Interfaces/IReadWrite.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Interfaces/IReadWrite.cs -------------------------------------------------------------------------------- /Ping9719.IoT/IoTResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/IoTResult.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Modbus/ModbusAsciiClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Modbus/ModbusAsciiClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Modbus/ModbusRtuClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Modbus/ModbusRtuClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Modbus/ModbusTcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Modbus/ModbusTcpClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Modbus/Models/ModbusCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Modbus/Models/ModbusCode.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Modbus/Models/ModbusErr.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Modbus/Models/ModbusErr.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Modbus/Models/ModbusInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Modbus/Models/ModbusInfo.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/AllenBradleyCipClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/AllenBradleyCipClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Enums/CipVariableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Enums/CipVariableType.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Enums/MitsubishiVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Enums/MitsubishiVersion.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Enums/SiemensVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Enums/SiemensVersion.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/InovanceModbusTcpClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/InovanceModbusTcpClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/MitsubishiMcClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/MitsubishiMcClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Models/AllenBradleyAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Models/AllenBradleyAddress.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Models/MitsubishiMCAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Models/MitsubishiMCAddress.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Models/OmronFinsAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Models/OmronFinsAddress.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/Models/SiemensAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/Models/SiemensAddress.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/OmronCipClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/OmronCipClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/OmronFinsClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/OmronFinsClient.cs -------------------------------------------------------------------------------- /Ping9719.IoT/PLC/SiemensS7Client.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/PLC/SiemensS7Client.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Ping9719.IoT.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Ping9719.IoT.csproj -------------------------------------------------------------------------------- /Ping9719.IoT/ReadWriteBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/ReadWriteBase.cs -------------------------------------------------------------------------------- /Ping9719.IoT/Robot/EpsonRobot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/Robot/EpsonRobot.cs -------------------------------------------------------------------------------- /Ping9719.IoT/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/docs/README.md -------------------------------------------------------------------------------- /Ping9719.IoT/docs/README_en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/docs/README_en-US.md -------------------------------------------------------------------------------- /Ping9719.IoT/docs/VERSION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/Ping9719.IoT/docs/VERSION.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/README.md -------------------------------------------------------------------------------- /README_en-US.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/README_en-US.md -------------------------------------------------------------------------------- /img/bao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/img/bao.png -------------------------------------------------------------------------------- /img/frame.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/img/frame.drawio -------------------------------------------------------------------------------- /img/frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ping9719/IoT/HEAD/img/frame.png --------------------------------------------------------------------------------