We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It could be very useful if a user could easily configure fanuc-driver to collect one or more parameters (using rdparam) from machine.
fanuc-driver
rdparam
It’d be nice if the user could:
parameter_id
data_type
format
$1
$2
{$collector_name: $1}
{$collector_name: [$1, $2, ...]}
For example, the configuration could look something like this:
# Single parameter: configuration some_collector_name: parameter_id: 1234 data_type: string # 'string' | 'number' | 'boolean' and possibly some others # Multiple parameters: configuration another_collector_name: parameter_id: - 1234 - 4321 data_type: # 'string' | 'number' | 'boolean' and possibly some others - string - number format: '{"some_name": $1, "another_name": $2}'
Example of the returned data:
// Single parameter { some_collector_name: 'some_value' } // Multiple parameters { another_collector_name: { some_name: 'some_value', another_name: 4543 } }
The text was updated successfully, but these errors were encountered:
Moving parameters after Macro and PMC data.
Sorry, something went wrong.
No branches or pull requests
It could be very useful if a user could easily configure
fanuc-driver
to collect one or more parameters (usingrdparam
) from machine.It’d be nice if the user could:
parameter_id
items anddata_type
items must match;format
, one would use$1
to get the value of the first (0th) parameter value,$2
the second one, etc;format
is not defined:fanuc-driver
would return{$collector_name: $1}
;fanuc-driver
would return{$collector_name: [$1, $2, ...]}
;For example, the configuration could look something like this:
Example of the returned data:
The text was updated successfully, but these errors were encountered: