A-SW Hub / Repositories
Local Gitea · READ ONLY
← 저장소 Repositories
REPOSITORY

cwsfa/following-transport-amr Private

[참조 MVP] 작업자 추종 이송 AMR — 작업자 목표와 적재·배터리 상태를 이송 플랫폼 명령으로 결합하는 참조 MVP입니다.

https://git.agrithing.ai/cwsfa/following-transport-amr.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 738 B · e8f9237 Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "작업자 추종 이송 AMR reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "workerTrackId",    "speedMps",    "command",    "blockingReasons"  ],  "properties": {    "component": {      "const": "cwsfa/following-transport-amr"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "acu"    },    "workerTrackId": {      "type": "string"    },    "speedMps": {      "type": "number"    },    "command": {      "type": "string"    },    "blockingReasons": {      "type": "array"    }  }}