Przeglądaj źródła

初步完成104的控制命令逻辑

xiuwei 4 lat temu
rodzic
commit
70a8601d20

+ 10 - 0
protocol-iec104/src/main/java/wei/yigulu/iec104/asdudataframe/ShortFloatCommand.java

@@ -0,0 +1,10 @@
+package wei.yigulu.iec104.asdudataframe;
+
+/**
+ * 遥测控制命令
+ *
+ * @author: xiuwei
+ * @version:
+ */
+public class ShortFloatCommand {
+}

+ 10 - 0
protocol-iec104/src/main/java/wei/yigulu/iec104/asdudataframe/typemodel/IeBooleanCommand.java

@@ -0,0 +1,10 @@
+package wei.yigulu.iec104.asdudataframe.typemodel;
+
+/**
+ * 布尔的命令值,针对单点、双点遥信,升降信号
+ *
+ * @author: xiuwei
+ * @version:
+ */
+public class IeBooleanCommand {
+}

+ 10 - 0
protocol-iec104/src/main/java/wei/yigulu/iec104/asdudataframe/typemodel/IecDataInterface.java

@@ -0,0 +1,10 @@
+package wei.yigulu.iec104.asdudataframe.typemodel;
+
+/**
+ * @program: protocol
+ * @description: iec104中使用到的数据  接口
+ * @author: xiuwei
+ * @create: 2021-05-10 15:07
+ */
+public interface IecDataInterface {
+}

+ 8 - 0
protocol-iec104/src/main/java/wei/yigulu/iec104/util/CommandWaiter.java

@@ -0,0 +1,8 @@
+package wei.yigulu.iec104.util;
+
+/**
+ * @author: xiuwei
+ * @version:
+ */
+public class CommandWaiter {
+}

+ 10 - 0
protocol-iec104/src/main/java/wei/yigulu/iec104/util/SendCommandHelper.java

@@ -0,0 +1,10 @@
+package wei.yigulu.iec104.util;
+
+/**
+ * 发送控制命令的工具类
+ *
+ * @author: xiuwei
+ * @version:
+ */
+public class SendCommandHelper {
+}