========================================== Installing and Configuring Device Drivers ========================================== In order for an Adapter running on an IPC to be able to connect to a lab resource, the Adapter needs to be able to connect via a REST API. Sometimes a lab instrument or its control software natively exposes a REST API. If they don't, a driver is necessary to bridge the gap between the lower-level instrument API (typically a DLL) and the REST API required by the Adapter. This guide will walk you through the process of installing a driver on the lab instrument's PC and configuring it to work with Artificial. PC Requirements --------------- Most of our drivers are complete, stand-alone installers. For Fluent and EVO, .NET Framework 4.8 is required but should already be on the PC. To check all supported software and versions, consult the :doc:`resource-specific installation guide `. Installing a Device Driver ------------------------------ #. You must obtain the .msi installer file for the corresponding lab hardware. These are available through Artificial. #. Either using online storage, like a google drive, or a USB stick loaded with the .msi file, move the installer onto the lab hardware PC. #. Run the .msi installer. This should be straightforward and should place a shortcut on the desktop. #. Start the driver using the shortcut on the desktop or by running :file:`Artificial.[DriverName]ApiServer.exe` directly from the directory :file:`C:/Program Files (x86)/Artificial/[DriverName]Server_Installer/bin`. If this does not work, consult the troubleshooting section. #. Using the two steps in the section below, confirm the driver is working. #. Congratulations, you have successfully installed your driver. Confirming the Driver is Working -------------------------------- These are two indicators the driver is running and is configured correctly. If you're not seeing theese indicators, consult the troubleshooting section below. * When you run the driver, a command console window should appear. It should look something like below. It may take a minute, but startup logging information should appear and not contain red error text. .. image:: _static/DriverConsoleExample.png * You should be able to visit ``http://localhost:49835/api/v1/web`` in a browser. If the driver is running and configured correctly you should see a page that looks something like below. Note that by default, the port for http is 49835 and for https is 44339. .. image:: _static/DriverApiPageExample.png Troubleshooting the Driver --------------------------- #. Driver gives an error on install. * You may need to be logged in as Administrator or run the installer using the right-click menu option to "Run as Administrator". * You may need to consult with your IT department to confirm you have the correct permissions. #. Installed driver will not start or console window does not appear. * Confirm the console window is not just minimized by checking the Taskbar. * Try running the desktop shortcut as Administrator (using the right-click menu) or run :file:`Artificial.[DriverName]ApiServer.exe` directly as Administrator using the right-click menu. The file can be found in the standard installation directory :file:`C:/Program Files (x86)/Artificial/[DriverName]Server_Installer/bin`. * If the console just flashes briefly, open the Event Viewer application on the PC. In the app, look for the relevant error logs under EventViewer -> Windows Logs -> Application and also, EventViewer -> Windows Logs -> System. Adjust the settings of the PC as per the error. #. Console window displays errors. * If the driver is Fluent or EVOware, confirm .Net Framework 4.8 is installed. * Based on the errors you see in the window, try to adjust the configuration settings as described in the configuration settings page: :ref:`driver-configuration`. * Consult the page for that hardware which can be found here :doc:`supported_resources` for any configuration specific to that hardware. #. The localhost URLs show errors. * Add rules for the specific port number in the Windows firewall advanced settings. * Change the port number used by the driver as described in the configuration settings page: :ref:`driver-configuration`. .. _driver-configuration: Configuring the Driver ----------------------- Most installations will need no customization to their configuration. However, if problems arise, users can try changing the configuration. The installed driver stores configuration information in two files in the driver installation directory, typically :file:`C:/Program Files (x86)/Artificial/[DriverName]Server_Installer/bin`. The file :file:`Artificial.[DriverName]ApiServer.exe.config` has a section for appsettings. Each driver can have specialized settings, like database connection strings, that need to be customized for the PC. You will also see a general section of settings that looks like this: .. code-block:: xml For example, if you need to specify a different port number, like 12345, then change the server's URL by changing line 3 above in the file to something like this: The file :file:`appsettings.json` has more advanced customization options. Most importantly, make sure SimulateDriver is set to false. .. code-block:: json { "AllowedHosts": "*", "__comment_cert": [ "CertificateFile is the full path to the certificate file.", "If no certificate file is specified, then the url will be changed to http." ], "CertificateFile": "", "__comment_url": [ "ServerUrl can be specified to override the server url to be used.", "By default, the url to be used is the first server specified in the openapi file.", "Normally, the production server is the first server be specified." ], "ServerUrl": "", "SimulateDriver": "false", "MockSuccess": "true" } For resource-specific configuration options, consult the :doc:`guide for that resource ` For any other problems or if these steps do not fix your problem, please contact your Customer Success Manager or email support@artificial.com.