│ ├── Implement List
│ ├── Implement Details
│ │ ├── Measurement Form
│ │ ├── Vector Diagram (tap-points)
│ │ ├── Hydraulic Presets
│ │ └── PTO Presets
│ └── Add Implement
Implement List
Batwing Mower – 15ft
Chisel Plow – 12ft
Sprayer – 60ft boom
[ + Add Implement ]
Implement Detail
Title: 15ft Batwing Mower
Tabs:
————————————
• MEASUREMENTS
– Width: 15ft
– Length: 8.2ft
– Offset: 0
• VECTOR DIAGRAM
(Top-down schematic)
(Tappable points “Tap to enter measurement”)
• HYDRAULICS
– SCV #1: Raise/Lower
– SCV #2: Wings
– Flow preset dropdown
• PTO
– PTO Speed: 540 / 1000
– Preset name: “Mowing”
API-
Implement List Screen
- GET /implements
– id, name, type, working width. - POST /implements
– Create a new implement profile.
Implement Detail (Measurements + Vector) Screen
- GET /implements/{implementId}
– Core info (name, type, width). - GET /implements/{implementId}/measurements
– All dimensions for vector drawing (distances between points, offsets). - PUT /implements/{implementId}/measurements
– Save measurement form from vector tapping. - GET /implements/{implementId}/presets/hydraulics
- GET /implements/{implementId}/presets/pto
- POST /implements/{implementId}/presets/hydraulics
- POST /implements/{implementId}/presets/pto
– Create or update preset profiles per implement.