Hi, I have a UR10 of CB3 and I need help to create a pallet. I have to create a pallet of 2x2 boxes and 4 layers, so 16 boxes in total. In each box there I have to place 16 bottles in 4x4. The operators have to place the empty boxes on the pallet, and then the cobot places the bottles in the boxes.
I’m using the pallet function, but I can’t just simply use the ‘box’ configuration for the full pallet, or even use the ‘square’ configuration for a full layer, I have to use the ‘square’ configuration for each boxes. Right now I finished the first layer of the pallet. I made my program like this:
loop 16:
- call a function to pick up a bottle
- pallet function with square configuration (so 4 corners)
then repeat that 3 times for the 3 other boxes of the layer
so I have 4 approach points, 4 exit points and 4 pattern points.
I’d like to just put an offset on these points, and put a big loop 4 in which I would put the 4 loop 16, and everytime I finish a layer I would just add the offset to the points so I don’t have to define all the corners everytime. I just can’t find a way to do that, so maybe it’s not the best way idk. Any suggestions ?