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

via/greenhouse-fleet-control Private

[참조 MVP] 온실 이송로봇 서비스 관제 — UWB·SLAM 상태, 원격제어, UI와 OTA 작업을 연결하는 관제 참조 MVP입니다.

https://git.agrithing.ai/via/greenhouse-fleet-control.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 858 B · fbe8d7f Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "온실 이송로봇 서비스 관제 reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "missionId",    "robotId",    "fusedLocalization",    "dispatch",    "blockingReasons"  ],  "properties": {    "component": {      "const": "via/greenhouse-fleet-control"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "service"    },    "missionId": {      "type": "string"    },    "robotId": {      "type": "string"    },    "fusedLocalization": {      "type": "number"    },    "dispatch": {      "type": [        "object",        "null"      ]    },    "blockingReasons": {      "type": "array"    }  }}