#类型帮助(“robolink”)或(“robodk”)information # Press F5 to run the script # Documentation: //m.sinclairbody.com/doc/en/RoboDK-API.html # Reference: //m.sinclairbody.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')