PDF
AuboStudio SDK  0.6.3
arcs::aubo_scope::GripperContribution Class Referenceabstract

GripperContribution This interface defines an API for adding functionality for gripping devices to AuboScope. More...

#include <gripper_contribution.h>

Public Member Functions

virtual ~GripperContribution ()=default
virtual std::string getTitle ()=0
 This method must return the title of the gripper contribution.
virtual void configureGripper (GripperConfigurationPtr gripperConfiguration, GripperApiProviderPtr apiProvider)=0
virtual void generateGripActionScript (ScriptWriterPtr scriptWriter, GripActionParametersPtr parameters)=0
virtual void generateReleaseActionScript (ScriptWriterPtr scriptWriter, ReleaseActionParametersPtr parameters)=0

Detailed Description

GripperContribution This interface defines an API for adding functionality for gripping devices to AuboScope.

Implementing this interface will create a program node contribution, an installation contribution and a toolbar contribution exposing gripper functionality to the end user. Note that the toolbar contribution is not supported on CB3 robots.

The program node contribution allows the end user to program grip and release actions. The configuration options available to the end user are based on the properties and capabilities supported by the gripper. As a minimum, all grippers must support "default" grip and release actions. All other capabilities are optional to support and can be registered when the GripperContribution#configureGripper(GripperConfiguration, GripperAPIProvider) method is called.

The installation node contribution can be used, if any custom input from the end user is required to setup the gripper, e.g. specifying an IP address. The corresponding generated UI will be accessible in the installation node. This functionality is optional, since such configuration properties are specific for each gripper. Access to create a custom configuration based on user inputs is provided when the method GripperContribution#configureInstallation(CustomUserInputConfiguration, SystemConfiguration, TCPConfiguration, GripperAPIProvider) is called. If no custom user inputs, texts, etc. are defined, the installation node will not be visible in AuboScope. Preamble script code (generated by generatePreambleScript(ScriptWriter)) will still be added to the robot program.

The toolbar contribution provides the end user quick access to perform grip and release actions using "default" gripper action parameters.

Definition at line 76 of file gripper_contribution.h.

Constructor & Destructor Documentation

◆ ~GripperContribution()

virtual arcs::aubo_scope::GripperContribution::~GripperContribution ( )
virtualdefault

Member Function Documentation

◆ configureGripper()

virtual void arcs::aubo_scope::GripperContribution::configureGripper ( GripperConfigurationPtr gripperConfiguration,
GripperApiProviderPtr apiProvider )
pure virtual

When this method is called, use the configuration parameter to register or setup optional properties and capabilities of the gripper.

The method is called in the Gripper Configuration phase after this contribution has been registered when a new installation is loaded or created.

Note: If the gripper only supports basic "default" grip and release actions, leave the implementation of this method empty.

Parameters
gripperConfigurationA configuration instance that can be used for registering or setting up the properties and capabilities of the gripper.
apiProviderProvides access to functionality and services available from within AuboScope which can be relevant for setting up the gripper capabilities (e.g. the SystemAPI interface with functionality for querying information about the robot).

◆ generateGripActionScript()

virtual void arcs::aubo_scope::GripperContribution::generateGripActionScript ( ScriptWriterPtr scriptWriter,
GripActionParametersPtr parameters )
pure virtual

When this method is called, the script code for performing a grip action with the gripper must be generated.

...

Parameters
scriptWriterUse this script writer instance to generate the script code for gripping
parametersThe parameters for the gripper action defined/configured by the end user

◆ generateReleaseActionScript()

virtual void arcs::aubo_scope::GripperContribution::generateReleaseActionScript ( ScriptWriterPtr scriptWriter,
ReleaseActionParametersPtr parameters )
pure virtual

When this method is called, the script code for performing a release action with the gripper must be generated.

...

Parameters
scriptWriterUse this script writer instance to generate the script code for releasing the gripper
parametersThe parameters for the gripper action defined/configured by the end user

◆ getTitle()

virtual std::string arcs::aubo_scope::GripperContribution::getTitle ( )
pure virtual

This method must return the title of the gripper contribution.

The title is displayed in:

  • The Structure section of the Program Tab for this type of gripper program node (from which the Gripper program node can be inserted)
  • The program node screen for this gripper contribution.
  • The Program Tree as title for the program node for this gripper contribution
  • The left-hand side navigation of the Installation Tab for this gripper contribution.
  • The installation node screen for this gripper contribution.
  • The toolbar contribution for this gripper. Note: The toolbar contribution is not available on CB3 robots.

The return value of this method cannot be null nor an empty string.

This method is called once upon startup.

Parameters
localeThe current locale of AuboScope. Can be used for supporting titles in several languages.
Returns
The title of this gripper contribution, not null nor an empty string.

The documentation for this class was generated from the following file: