Skip to main content

No project description provided

Project description

By: chiesa Date: March 31, 2020 Copyright Alpes Lasers SA, Neuchatel, Switzerland

Driver for the Alpes Lasers S-2 pulser. Visit https://www.alpeslasers.ch/ for more informations.

Usage

See also the examples folder in the sdeux package.

import os

from sdeux.auto_detect import init_driver
from sdeux.communication import RETRY_NO, RETRY_SOME
from sdeux.serial_handler import S2SerialHandler

th = None

port = os.path.expanduser('~/tty.AL-S2')

retry_policy = RETRY_SOME  # on communication errors, retries up to 3 times until a timeout of 3 seconds

# retry_policy = RETRY_NO   # on communications errors, raise an exception directly


def print_status(s2_instance):
    print_status = 'Measured current (A): {:.5f}\n'.format(s2_instance.measured_current) + \
                   'Measured voltage (V): {:.5f}\n'.format(s2_instance.measured_voltage) + \
                   'Target voltage (V): {:.5f}\n'.format(s2_instance.applied_voltage) + \
                   'Laser temperature (degC): {:.5f}\n'.format(s2_instance._info.laser_temperature) + \
                   'Overcurrent Limit (A): {:.5f}\n'.format(s2_instance.current_limit) + \
                   'MCU temperature (degC): {:.5f}\n'.format(s2_instance._info.MCU_temperature) + \
                   'Pulse Mode: {}\n'.format(s2_instance.pulsing_mode) + \
                   'Board Status: {}\n'.format(s2_instance.status_label)
    print(print_status)


try:
    th = S2SerialHandler(port)
    th.open()
    s2 = init_driver(th)
    s2.set_up()
    s2.retry_policy = RETRY_NO  # use this setting to raise a error
    print_status(s2)

finally:
    if th:
        th.close()

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

sdeux-1.2.6-py3-none-any.whl (29.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page