公告板
版本库
filestore
活动
搜索
登录
main
/
AGV_Controller
AGV遥控器
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
#
whycq
2024-08-15
e54492fb532366faac8aa5d46ad8905ea3ff38d5
[AGV_Controller.git]
/
app
/
src
/
main
/
java
/
com
/
example
/
agvcontroller
/
protocol
/
ICommandBody.java
1
2
3
4
5
6
7
8
9
10
11
12
package com.example.agvcontroller.protocol;
/**
* 命令参数
*/
public interface ICommandBody {
byte[] writeToBytes();
void readFromBytes(byte[] messageBodyBytes);
}