Automation API - Legacy Logic 1.x
Due to the official release of the newer Logic 2 Automation API, we have officially ended support for our Legacy Logic 1.x Automation API. We highly recommend existing users who currently use our legacy Automation API automation utility with Logic 1.x to migrate their automation utility to Logic 2 using our new Automation API above. Please contact us if you need help with that.
Our Legacy Automation API (which we called Socket API in the past) allows users to programmatically configure our software and trigger captures, and requires the older Logic 1.x software.
In addition, please keep in mind that newer versions of our Logic hardware (after revision 3.0.0) will no longer work with the older Logic 1.x software. If this poses any issues, please contact us. A brief summary of our hardware revisions are described in the support article below.
- Check that you are using the latest version of our legacy Logic 1.x software below.
- We highly recommend suppressing notifications and error messages while running your automation script. These notifications may block normal operation and can be suppressed by starting the application with the command line option
-disablepopups
- Next, we must enable the scripting socket server. Open Options Menu at the top of the software.
- Select Preferences
- Under the Developer Tab, check the box to enable socket server
- Save Changes
- Accept firewall changes if the OS requests it
For automated environments, the
-socket
command line option was previously used to automatically enable the scripting socket server. Unfortunately, we cannot recommend this moving forward due to a known bug. We will fix this in a future release, which will be integrated into Logic v2. For now, please use the Preferences Window as shown above to enable the socket server.The document below lists the supported commands using our automation utility.
For simple automation requirements, we suggest using our Python Sample Application. This is a basic command line utility to automate the Saleae Logic software, which can be used to automatically take a series of shorter captures over an extended time period with basic export functions.
The Python Sample Application implements a very basic form of data export via csv. If more export options are needed, please see the article below:
You may also send supported socket commands directly via the terminal using the Python wrapper, as shown below. See our list of supported commands.
C:\Python>python.exe
>>> import saleae
>>> s = saleae.Saleae()
>>> s._cmd('set_capture_seconds, 1')
>>> s._cmd('capture')
For more complex automation requirements, you can refer to our C# Wrapper below:
If you would like to share your application, feel free to send us a link to it on any repository hosting provider, and we can share that link here.
The Socket API currently supports the raw export feature and the protocol-specific export feature. However, the socket API does not support exporting the protocol search results.
Last modified 7mo ago