From 8ce9ce72d3e32427d01ebe4bf8bef6aa863979ca Mon Sep 17 00:00:00 2001 From: whycq <913841844@qq.com> Date: 星期五, 17 一月 2025 15:48:36 +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