Renishaw Machine Configuration
The following configuration options of the common machine configuration model apply to Renishaw machines.
Obtaining access credentials:
Obtain an account with API access rights on your InfiniAM instance.
Use the Email address as
username
together with yourpassword
in the below configuration.
Obtaining the base url:
Once you log into your InfiniAM app you will be redirected to
{base_url}/app/#!/current-status
.Use
{base_url}
asurl
in the below configuration.
Aggregator version 2.1+
Configuration | Data | Description | Required |
---|---|---|---|
|
| The machine's interface type. | ✓ |
|
| InfiniAM API base url. | ✓ |
|
| The custom machine name to be displayed in the Agile MES. Will be read from the machine if unset. | ✗ |
|
| GUID of the printer | ✓ |
|
| Secrets for Http Basic Authentication (see below). For files, the path can be absolute or relative to the Aggregator. | ✓ |
|
| The MES instance(s) of your organization. | ✓ |
Renishaw machine example:
{
"type": "RENISHAW",
"url": "http://sites.infini.am/mobius/",
"custom_name": "my_renishaw_machine",
"unique_name": "11111111-1111-1111-1111-111111111111",
"authentication_file_path": "./secret.json", // contents as shown below
"mes_id": [
1
]
}
OR
{
"type": "RENISHAW",
"url": "http://sites.infini.am/mobius/",
"custom_name": "my_renishaw_machine",
"unique_name": "11111111-1111-1111-1111-111111111111",
"authentication_file_path": {
"username": "name@company.com",
"password": "password"
},
"mes_id": [
1
]
}