I have a source, Loop Conveyor and a robot that picks boxes from the conveyor and places them in the queue.
The source uses a table to load packages on the conveyor. a table like below:
Unix TimeStamp | Order Number | Total_Packages_In_Order |
1662054400 | 100 | 3 |
1662054404 |
101 | 4 |
1662054420 |
100 | 3 |
1662054430 |
102 | 2 |
1662054450 |
100 | 3 |
Each line is basically one package to source into the loop conveyor. The total Pack per order is known. for Example in the above table, the total packs in order#100 are 3. I want the robot to pick up all items belonging to an order that is complete and place them in the Queue. Eventually, I want to have multiple queues but since I am new, struggling with how to manage the first step. I appreciate your help in this sorting problem.