# Type help("robolink") or help("robodk") for more information
# Press F5 to run the script
# Documentation: https://robodk.com/doc/en/RoboDK-API.html
# Reference:     https://robodk.com/doc/en/PythonAPI/index.html
# Note: It is not required to keep a copy of this file, your python script is saved with the station
from robolink import *    # RoboDK API
from robodk import *      # Robot toolbox

PARAM_SIZE_SLOTKLOS = 'SizeSlotKlos'
PARAM_SIZE_PALLET = 'SizePallet'


RDK = Robolink()

size_slotklos = RDK.getParam(PARAM_SIZE_SLOTKLOS)
size_pallet = RDK.getParam(PARAM_SIZE_PALLET)

RDK.setParam(PARAM_SIZE_SLOTKLOS, '75,315,33')
RDK.setParam(PARAM_SIZE_PALLET, '11,3,1')