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

kitech/greenhouse-rail-entry-safety Private

[참조 MVP] 온실 레일 진입·안전 제어 — 온실 레일 진입 조건, 안전영역, 에너지 상태를 판정하는 참조 MVP입니다.

https://git.agrithing.ai/kitech/greenhouse-rail-entry-safety.git
4 commits
1 items · feat/concrete-mvp-v2
·/ contracts/component.interface.json
json · 760 B · 85a0d89 Download
{  "$schema": "https://json-schema.org/draft/2020-12/schema",  "title": "온실 레일 진입·안전 제어 reference interface",  "type": "object",  "required": [    "component",    "accepted",    "status",    "target",    "command",    "allowedSpeedMps",    "blockingReasons",    "energyMode"  ],  "properties": {    "component": {      "const": "kitech/greenhouse-rail-entry-safety"    },    "accepted": {      "type": "boolean"    },    "status": {      "type": "string"    },    "target": {      "const": "mcu"    },    "command": {      "type": "string"    },    "allowedSpeedMps": {      "type": "number"    },    "blockingReasons": {      "type": "array"    },    "energyMode": {      "type": "string"    }  }}