From edcbc2ebc45717bf5b94c6e94ceba5d932b61759 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Chsc=E2=80=9D?= <“huangsucan@kaiyili-lab.com”> Date: Tue, 9 Jun 2026 16:16:33 +0800 Subject: [PATCH] =?UTF-8?q?THC1100=E8=AE=BE=E5=A4=87=E6=B7=BB=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DeviceCommand/DeviceCommand.csproj | 4 ---- DeviceCommand/Devices/THC1100.cs | 14 ++++++++++++++ 2 files changed, 14 insertions(+), 4 deletions(-) create mode 100644 DeviceCommand/Devices/THC1100.cs diff --git a/DeviceCommand/DeviceCommand.csproj b/DeviceCommand/DeviceCommand.csproj index 90ec535..6c99400 100644 --- a/DeviceCommand/DeviceCommand.csproj +++ b/DeviceCommand/DeviceCommand.csproj @@ -17,8 +17,4 @@ - - - - diff --git a/DeviceCommand/Devices/THC1100.cs b/DeviceCommand/Devices/THC1100.cs new file mode 100644 index 0000000..3e916ba --- /dev/null +++ b/DeviceCommand/Devices/THC1100.cs @@ -0,0 +1,14 @@ +using DeviceCommand.Base; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DeviceCommand.Devices +{ + public class THC1100:S7Device + { + + } +}