Skip to content

Commit 0a6594f

Browse files
committed
feat: add service declarations
1 parent e55a0e5 commit 0a6594f

1 file changed

Lines changed: 34 additions & 0 deletions

File tree

smartFactory/serviceTypes.pkl

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
// This module contains all service types for the CSM SmartFactory
2+
3+
//Service to move conveyor belt
4+
stMoveBelt = "moveBelt"
5+
6+
//Service to stop conveyor belt
7+
stStopBelt = "stopBelt"
8+
9+
//Service to take photo (by conveyor camera)
10+
stTakePhoto = "takePhoto"
11+
12+
//Service to scan photo (by conveyor camera)
13+
stScanPhoto = "scanPhoto"
14+
15+
//Service to pickup part (by robotic arm)
16+
stPickup = "pickUp"
17+
18+
//Service to assemble part
19+
stAssemble = "assemble"
20+
21+
//Service to return arm to start
22+
stReturnToStart = "returnToStart"
23+
24+
//Service to process email message
25+
stProcessEmail = "processEmail"
26+
27+
//Service to process sms message
28+
stProcessSms = "processSms"
29+
30+
//Service to process statistics
31+
stSendStatistics = "sendStatistics"
32+
33+
//Service to discard invalid object
34+
stDiscardObject = "discardObject"

0 commit comments

Comments
 (0)