lecroyutils

Library to communicate and parse .trc files with/from LeCroy oscilloscopes.


Keywords
Parse, LeCroy, Scope, Oscilloscope, TRC
License
MIT
Install
pip install lecroyutils==4.0.2

Documentation

lecroyutils

pypi

Library to communicate and parse .trc files with/from LeCroy oscilloscopes.

This library is based on previous work:

Features

  • remote control LeCroy oscilloscopes over vxi11
    • does not require additional drivers (no visa)
    • controlling trigger settings
    • accessing statistics
    • downloading screenshots
    • view and donwload waveform data
  • parse LeCroy .trc waveform data
    • support for sequence mode
    • x and y units

Installation

lecroyutils is available in the Python Package Index (PyPi). It may be installed with pip:

> pip install lecroyutils

Usage

from lecroyutils.data import LecroyScopeData

# Parse a local .trc file
data = LecroyScopeData.parse_file('C2_00000_Lecroy.trc')

from lecroyutils.control import LecroyScope, TriggerMode, TriggerType

# Connect to a scope over vxi11
scope = LecroyScope('127.0.0.1')
scope.trigger_type = TriggerType.edge
scope.trigger_source = 'C1'
scope.acquire(force=True)
data = scope.waveform('C1')

scope.save_waveform('C1', 'C1_00000_Lecroy.trc')

Related

License

lecroyutils is licensed under the MIT license.

Notice

We are not affiliated, associated, authorized, endorsed by, or in any way officially connected with Teledyne LeCroy, or any of its subsidiaries or its affiliates. The official Teledyne LeCroy github profile can be found at https://github.com/TeledyneLeCroy.