x=raamboGET([cmd])
cmd : | command list same as raamboSET |
x : | result devlivered by the raambo firmware |
The function raamboGET
is designed to interact with a robotic system, specifically to retrieve information without setting any values. It is a part of the SG-Library and was introduced in SolidGeometry 5.4. The function has been removed from the library as of April 5, 2024, and will not be part of the final release.
raamboSET
function. It specifies the actions or queries to be performed on the robotic system.The function raamboGET
operates by calling another function, raamboSET
, with the same input parameters. The key difference is that raamboGET
is intended for retrieving data rather than setting it. The function signature is as follows:
function x=raamboGET(varargin)
Here, varargin
is used to accept a variable number of input arguments, which are then passed to raamboSET
using the syntax varargin{:}
. This allows raamboGET
to handle the same command list as raamboSET
without modification.
The function header indicates that raamboGET
was authored by Tim C. Lueth and is associated with the class SERIAL-ROBOTICS
. It is important to note that this function is no longer part of the library and will not be included in future releases.