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

hada/greenhouse-transport-platform Private

[참조 MVP] 온실 이송 플랫폼 고도화 — 이송 플랫폼의 주행·적재·현장 실증 상태를 제공하는 위탁연구 참조 MVP입니다.

https://git.agrithing.ai/hada/greenhouse-transport-platform.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 819 B · 5b5f953 Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "온실 이송 플랫폼 고도화 reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "platformId",    "command",    "speedLimitMps",    "loadRatio",    "blockingReasons"  ],  "properties": {    "component": {      "const": "hada/greenhouse-transport-platform"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "mcu"    },    "platformId": {      "type": "string"    },    "command": {      "type": "string"    },    "speedLimitMps": {      "type": "number"    },    "loadRatio": {      "type": "number"    },    "blockingReasons": {      "type": "array"    }  }}