You are reading our Automation1API documentation for the .NET programming language.
The Basics
The .NETAPI revolves around the Controller class. All interaction with an Automation1 controller is through an instance of this class. To start using the .NETAPI, you must connect to an Automation1 controller to get an instance of the Controller class. Then the properties on this class will give you access to the various Automation1 controller features.
When you connect to a controller, this process does not automatically start it. You can connect to a non-running Automation1 controller without starting it. When you disconnect a controller, this process does not stop a controller that is running. The Controller.Runtime property represents features that you can access only if the controller is started and running. For more information, refer to the Controller Runtime section below.
You can connect to many Automation1 controllers at the same time in the same custom application. You can also connect to the same Automation1 controller multiple times at the same time.
How to Use
You can connect to multiple controllers at the same time or connect to the same controller multiple times. Call the Controller.Connect or Controller.ConnectSecure methods to connect to a specific controller, either a locally installed PC-based controller, a remote PC-based controller, or a remote drive-based controller. Call the Controller.ConnectUsb method to connect to a drive-based controller that is plugged into your computer over USB.
When you are done interacting with the controller, call the Controller.Disconnect method.
1
2
3
4
5
6
7
8
9
10
11
12
// Connect to the iSMC that is installed on this PC. You can optionally specify an IP address to connect to a remote controller. Controller controller = Controller.Connect();
// Start the Automation1 controller that you are connected to, to make sure it is running. controller.Start();
// With the controller running, you can access the Runtime property. controller.Runtime.Commands.Motion.Enable("X");
// Disconnect from the controller when you are done interacting with it. // When you disconnect the controller, this does not stop it. The controller will continue to run. controller.Disconnect();
Automation1 supports secure communication between the iSMC and your custom application. This connection is authenticated and encrypted (with TLS). Aerotech recommends that you use secure communication for remote connections over Ethernet. A secure connection has a small increase to communication latency on the order of 10s of microseconds. For most applications, this latency will not have an effect on performance.
Each Automation1 controller has a unique digital certificate for authentication. To establish secure communications with an Automation1 controller, you must first get the certificate of the controller. The first time that you connect, you can get it through a private channel or by using a process named trust-on-first-use. To make sure that you connect to the correct controller and get the correct certificate, Aerotech recommends that you connect over a private channel. To do this, use one of the methods that follow:
For drive-based controllers, connect over USB.
For PC-based controllers, connect locally on the same PC.
Subsequent connections will use this certificate to authenticate the connection. They might also use Ethernet.
Copy and paste the certificate into a string variable in your custom application. The certificate of the controller is not sensitive information. It is not necessary to keep it safe.
Use the certificate string in your Controller.ConnectSecure() method call to connect securely to this controller.
At this time, you can use your custom application, run it remotely from any network, and continue to have a secure, private connection to this controller.
Example Code - Connect Securely to an Automation1 Controller
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// The certificate of the Automation1 controller you want to connect to // was obtained by using the Automation1 Console. string expectedCertificate = "-----BEGIN CERTIFICATE-----\r\npkiC3jCCAcYCAQEwDQYJKoZIhvcNAQE&BQAw$TEvy$kGA1UEBhMCQ0ExEjAQ BgNV\r\nBAoMCBblJBEsrDBjbLJdxtHGA1UEAwwJbG9jYWxob3N0MB4XETI0MDExNTA0NDg1\r\nOFoX DTZ1MDEshifHVVHLhFmlUVyvrxXTC1UEBhMCQ0ExEjAQBgNVBAoMCWxvY2Fs\r\naG9zdDh@MBAGA1UE AwwJbG9jYWxob3NHICLBIjANBgkqhkiG9w0BAQEFfAOCAQ8A\r\nkII+CHICAQEAxMDz3wfMhqbMy9Yf SD0SkIpBMqvDn1GfeNY5mMk9ouEDEY+AFuwU\r\nYKMGJfwNiyc<hk9HVl7logudbao14tkwLDdp4P4W szM+w3XwoUn0kAoAVSmpDeu9\r\nCIb3PUb5cGJU8yw/M0hJ6eAKcco/ZlqpYgDn1uHOMkzFXybjbjbj Dd05oGTBuZfE\r\nrNNvWLI6Y+10bGQdoA6cMvyEBDZUTZp/Xkd+UwkWnJuU%$IZwfgcKTUDr226XBls \r\naxZ2sonKHFqf9ZQuiiw1eT61vZjbWViwTVj792gCFTFvn78Msygk1Fq4H1hofL2P\r\naDXNm63A 3RM5B3GAyP8CtTBaDYCzv9mAzQIDAQABMA0GCSqGSIb3%2EBBaaAA4IB\r\nAQA0zxfHITxdI/0l12H5 pHvNmyCqice4TqAN8YFDkHcegMDpWJ+3pKy7bhtXM5tz\r\no9rrCRfBdwURRy2pjCv965oiDiak+IU2 uZ4BHjium8EIIMxLMdb+5hwojWlbsOyz\r\nXy0nlXRFyIuoB2cu59Tqc8YyDoJwAdOjzBeLqWivV/tn l2wn85cLYme+X7/GY2G3\r\ntth897NVnhUXchGx6fJ01f+q7opodxxR2LQf4eQ16+66fEeKE1gKLke2 t9+V3LYT\r\nATjXehI04aTB32GCk6788FDVaqFrekEKzBP8fU2SHJ9ygA4iRq3viFJ8i9sSa6jr\r\n ZLRMz7UNcyXWicQQ+taZj/5X\r\n-----END CERTIFICATE-----";
// Connect securely to the iSMC on a remote controller with example IP address // 192.158.1.23. // After you establish a secure connection, you can use the controller as normal. Controller controller = Controller.ConnectSecure("192.158.1.23", expectedCertificate);
If the Certificate of the Controller Changes
It is possible for the Controller.ConnectSecure() method to not connect because the controller cannot be authenticated. If this occurs, the expected certificate that you passed in is no longer valid for the controller to which you are trying to connect.
If you passed in the correct certificate, this might have occurred because you or an administrator manually regenerated the certificate of the controller. If this is true, you must update the certificate you are passing in to the new one. For information about how to get the certificate of a controller, refer to the steps of the To Manually Get the Certificate of a Controller procedure.
If the certificate was not manually generated, it is possible that you are not connecting to the correct controller or the controller is compromised. You or an administrator must connect to the controller. For PC-based controllers, use a local connection. For drive-based controllers, use a USB connection. Then manually regenerate the certificate of the controller. For information about how to do this, see To Regenerate the Certificate of a Controller.
Controller Runtime
The Controller.Runtime property represents features that you can access only if the controller is started and running. If the controller is not running or is in the process of resetting, an exception will be thrown. The controller runtime is different from the Controller.Configuration property, which is how you configure the behavior of the controller the next time it starts or is reset. Controller.Configuration requires you to reset the controller while Controller.Runtime changes have an immediate effect.
Controller Information
You can use the Controller.Information property to get information about the Automation1 controller to which you are connected. Refer to the example that follows.
string host = controller.Information.Host; string controllerName = controller.Information.Name; string serialNumber = controller.Information.SerialNumber; Version version = controller.Information.Version; bool isConnectionEncrypted = controller.Information.IsConnectionEncrypted;
The Controller.Information property also has some events to which you can subscribe. These events let you know when the controller is started, stopped, or reset. You can also use them to get the state of the Automation1 controller if your custom application needs to change its behavior. Refer to the example that follows.
Machine Controller Definition (MCD) files define an Automation1 controller. These files can include all the parameters, configuration, and files that define your motion control system. MCD files make it easy for you to back up your controller configuration, test parameter changes, and replicate a machine.
You can download and upload MCD files from the .NETAPI. Refer to the example that follows.
The Controller.IsRunning property is thread safe. You can call this property from two or more threads without interference.
The Controller.Connect , Controller.ConnectSecure, and Controller.Disconnect methods are thread safe. You can call them from two or more threads without interference.
The Controller.Start, Controller.Stop, and Controller.Reset methods are not thread safe. Only one thread at a time can call these methods. If it is necessary for two or more threads to call these methods, you must use locks to limit the access.
For all other properties on the Controller class, see their respective reference pages for information about their thread safety.
Full Reference
For more information about the properties, methods, and events that are available for Controller, refer to the lists that follow.
Gets a way to change the configuration of the Automation1 controller. Configuration is what defines the behavior of the Automation1 controller. Changes to configuration usually require a controller reset to take effect.
Gets whether or not the Automation1 controller has started and is currently running (that is, running AeroScript programs or performing motion). If the controller is running, you can safely access the controller's runtime components via the Controller.Runtime property.
Gets a way to use the Automation1 controller's runtime components. Accessing this property is only valid if the controller is running. You can check the state of the Automation1 controller with the Controller.IsRunning property.
Connects to an Automation1 controller. Use this overload to connect to a controller when the controller is installed on the same computer and has access control disabled.
Use this method to create a Controller object in order to interact with an Automation1 controller. Connecting will not change the running state of an Automation1 controller (that is, if it has not started and is not running, it will remain not running), see the Controller.Start method.
Returns: A new Controller object that represents a connection to the Automation1 controller.
Connects to an Automation1 controller, using the specified userName and password. Use this overload to log in to a controller when the controller is installed on the same computer and has access control enabled.
Use this method to create a Controller object in order to interact with an Automation1 controller. Connecting will not change the running state of an Automation1 controller (that is, if it has not started and is not running, it will remain not running). See the Controller.Start method.
userName: The user name for a user with access to the Automation1 controller.
password: The password for the specified user.
Returns: A new Controller object that represents a connection to the Automation1 controller.
Connects to an Automation1 controller running on the specified host. Use this overload to connect to a controller when the controller is installed on a different computer and has access control disabled.
Use this method to create a Controller object in order to interact with an Automation1 controller. Connecting will not change the running state of an Automation1 controller (that is, if it has not started and is not running, it will remain not running). See the Controller.Start method.
host: The host name or host IP address of the Automation1 controller to connect to.
Returns: A new Controller object that represents a connection to the Automation1 controller.
Connects to an Automation1 controller running on the specified host, using the specified userName and password. Use this overload to log in to a controller when the controller is installed on a different computer and has access control enabled.
Use this method to create a Controller object in order to interact with an Automation1 controller. When the controller connects, this will not change the running state of the Automation1 controller. (For Example: If the controller did not start and is not running, it will continue to not run.) See the Controller.Start method.
host: The host name or host IP address of the Automation1 controller to connect to.
userName: The user name for a user with access to the Automation1 controller.
password: The password for the specified user.
Returns: A new Controller object that represents a connection to the Automation1 controller.
Connects securely to an Automation1 controller using the specified expected certificate. Use this overload to connect securely to a controller when the controller is installed on the same computer and has access control disabled. You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection. For information about how to get the certificate of a controller, refer to the steps of the To Manually Get the Certificate of a Controller procedure. If the Automation1 controller's certificate does not match expectedCertificate, a ControllerArgumentException will be thrown. Do a check to make sure that communication over your current connection is encrypted. Use Controller.Information.IsConnectionEncrypted.
Use this method to create a Controller object in order to interact securely with an Automation1 controller. When the controller connects, this will not change the running state of the Automation1 controller. (For Example: If the controller did not start and is not running, it will continue to not run.) See the Controller.Start method.
expectedCertificate: The certificate used to verify the authenticity of the Automation1 controller.
Returns: A new Controller object that represents a secure connection to the Automation1 controller.
Connects securely to an Automation1 controller, using the specified username, password, and expected certificate. Use this overload to log in securely to a controller when the controller is installed on the same computer and has access control enabled. You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection. For information about how to get the certificate of a controller, refer to the steps of the To Manually Get the Certificate of a Controller procedure. If the Automation1 controller's certificate does not match expectedCertificate, a ControllerArgumentException will be thrown. Do a check to make sure that communication over your current connection is encrypted. Use Controller.Information.IsConnectionEncrypted.
Use this method to create a Controller object in order to interact securely with an Automation1 controller. When the controller connects, this will not change the running state of the Automation1 controller. (For Example: If the controller did not start and is not running, it will continue to not run.) See the Controller.Start method.
userName: The user name for a user that has access to the Automation1 controller.
password: The password for the specified user.
expectedCertificate: The certificate used to verify the authenticity of the Automation1 controller.
Returns: A new Controller object that represents a secure connection to the Automation1 controller.
Connects securely to an Automation1 controller that runs on the specified host that uses the expected certificate. Use this overload to log in to a controller securely when the controller is installed on a different computer and has access control disabled. You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection. For information about how to get the certificate of a controller, refer to the steps of the To Manually Get the Certificate of a Controller procedure. If the Automation1 controller's certificate does not match expectedCertificate, a ControllerArgumentException will be thrown. Do a check to make sure that communication over your current connection is encrypted. Use Controller.Information.IsConnectionEncrypted.
Use this method to create a Controller object in order to interact securely with an Automation1 controller. When the controller connects, this will not change the running state of the Automation1 controller. (For Example: If the controller did not start and is not running, it will continue to not run.) See the Controller.Start method.
host: The host name or host IP address of the Automation1 controller to connect securely to.
expectedCertificate: The certificate used to verify the authenticity of the Automation1 controller.
Returns: A new Controller object that represents a secure connection to the Automation1 controller.
Connects securely to an Automation1 controller running on the specified host, using the specified username, password, and expected certificate. Use this overload to log in to a controller securely when the controller is installed on a different computer and has access control enabled. You must specify the controller's certificate because the certificate is used to verify the authenticity of the controller and is used to establish the secure connection. For information about how to get the certificate of a controller, refer to the steps of the To Manually Get the Certificate of a Controller procedure. If the Automation1 controller's certificate does not match expectedCertificate, a ControllerArgumentException will be thrown. Do a check to make sure that communication over your current connection is encrypted. Use Controller.Information.IsConnectionEncrypted.
Use this method to create a Controller object in order to interact securely with an Automation1 controller. When the controller connects, this will not change the running state of the Automation1 controller. (For Example: If the controller did not start and is not running, it will continue to not run.) See the Controller.Start method.
host: The host name or host IP address of the Automation1 controller to connect securely to.
userName: The user name for a user that has access to the Automation1 controller.
password: The password for the specified user.
expectedCertificate: The certificate used to verify the authenticity of the Automation1 controller.
Returns: A new Controller object that represents a secure connection to the Automation1 controller.
Disconnects from the Automation1 controller. Disconnecting will not change the running state of the Automation1 controller (that is, if it has started and is running, it will remain running). After calling this method, this Controller object is no longer usable.
Downloads a Machine Controller Definition (.mcd) file from the controller and saves it to the specified MDK file path. A downloaded MCD file can have both controller configuration and controller files. To copy the configuration and files of the controller, you can upload the MCD file to the controller. When you do this, at least one of the parameters that follow must be true: shouldIncludeControllerFiles and shouldIncludeConfiguration.
mdkFilePathToMcd: The MDK file path to which you save the downloaded MCD file.
shouldIncludeControllerFiles: Defines if controller files should be included or not in the download.
shouldIncludeConfiguration: Defines if the controller configuration should be included or not in the download.
Starts the Automation1 controller if it is not already running. Connecting to the Automation1 controller will not change the running state of the controller. Thus, use this method to start the controller after connecting. If the controller is already running, this method does nothing. You can check the state of the Automation1 controller with the Controller.IsRunning property.
When the Automation1 controller begins to start, the Controller.Information.ControllerStarting event will be raised. When the Automation1 controller completes the start, the Controller.Information.ControllerStarted event will be raised and you can begin any Automation1 controller interaction.
Stops the Automation1 controller if it is currently running. If the controller is already stopped, this method does nothing. You will remain connected to the Automation1 controller after you stop it. Stopping the Automation1 controller does not change your connection.
When the Automation1 controller stops, the Controller.Information.ControllerStopped event will be raised.
Uploads a Machine Controller Definition (.mcd) file to the controller and saves it from the specified MDK file path. When you do this, at least one of the parameters that follow must be true: shouldIncludeControllerFiles and shouldIncludeConfiguration. Before you call this method, make sure that the controller does not have important data and information that can be overwritten or erased. You can download an MCD file to save important data and information before you upload a different MCD file.
mdkFilePathToMcd: The MDK file path to which you save the downloaded MCD file.
shouldIncludeControllerFiles: Defines if controller files should be included or not in the download.
shouldIncludeConfiguration: Defines if the controller configuration should be included or not in the download.
eraseController: Defines if the controller should be erased or not before you upload the new files.
Gets the host name or host IP address that was used to connect to the Automation1 controller. This plus the Controller.Information.Port property identify the network endpoint of the controller.
Gets the port number that was used to connect to the Automation1 controller. This plus the Controller.Information.Host property identify the network endpoint of the controller.
Gets a way to collect data on the Automation1 controller. Data collection is a feature to gather a set of data in a real-time, deterministic way. Data collection is different from status in that status is not real-time and it is not time-series data. Status also has variable latency when retrieving.
Gets a way to get and set active controller parameters in use by the Automation1 controller. Changes to active controller parameters are not persisted and the active controller parameter values are lost after a controller reset. To save controller parameters permanently, use the Controller.Configuration property.
Gets a way to retrieve status from the Automation1 controller. Retrieved status represents a moment in time. Status is different from data collection in that status is not real-time and it is not time-series data. Status also has variable latency when retrieving.