-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtask_statements.pfdl
More file actions
62 lines (44 loc) · 886 Bytes
/
task_statements.pfdl
File metadata and controls
62 lines (44 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# SPDX-FileCopyrightText: The MF-Plugin Contributors
# SPDX-License-Identifier: MIT
Location warehouse1
id: "0x4711"
type: "pallet"
End
Location warehouse2
id: "0x4711"
type: "pallet"
End
Location production1
id: "0x4712"
type: "pallet"
End
TransportOrderStep tosWarehouse1
Location warehouse1
End
MoveOrderStep tosWarehouse2
Location warehouse2
End
TransportOrderStep tosProduction1
Location production1
End
ActionOrderStep aosWarehouse2
Parameters {"loadDirection" : "load" , "liftHeight": 0}
End
Event agvLoaded
value: true
End
Task helloWorld
StartedBy agvLoaded.value
Transport
From tosWarehouse1
To tosProduction1
Move
To tosWarehouse2
Action
Do aosWarehouse2
Constraints{"height": 10}
FinishedBy agvLoaded.value == true
End
Task mainTask
helloWorld
End