From 318bd727e2fe02e4f541dfe943f77606af41d509 Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期四, 06 二月 2025 14:30:11 +0800 Subject: [PATCH] # --- app/src/main/java/com/example/agvcontroller/protocol/AGV_A1_DOWN.java | 20 ++++++++++++++++++++ 1 files changed, 20 insertions(+), 0 deletions(-) diff --git a/app/src/main/java/com/example/agvcontroller/protocol/AGV_A1_DOWN.java b/app/src/main/java/com/example/agvcontroller/protocol/AGV_A1_DOWN.java index 7cdfe5d..0715f0b 100644 --- a/app/src/main/java/com/example/agvcontroller/protocol/AGV_A1_DOWN.java +++ b/app/src/main/java/com/example/agvcontroller/protocol/AGV_A1_DOWN.java @@ -21,8 +21,28 @@ } + public byte getAckSign() { + return ackSign; + } + + public void setAckSign(byte ackSign) { + this.ackSign = ackSign; + } + + public byte[] getTemp() { + return temp; + } + + public void setTemp(byte[] temp) { + this.temp = temp; + } + private byte ackSign = 0x11; private byte[] temp = new byte[4]; + public String getSerialNo() { + return ""; + } + } -- Gitblit v1.9.1