Getting Help
Each command in the Interface Designer Python API has help as docstrings. You can view
help using the command
print(<api>.<function name>.__doc__). For
example, this command:print(design.get_gpio.__doc__)Shows the help for the
get_gpio()
function:Get GPIO block by its name
:param name: GPIO name
:return: GPIO object id. None if not found