Skip to main content

Control the BK Precision 1900 series power supplies

Project description

BK Precision 1900

Description

This project implements the BK Precision 1902B control as a Python context manager. It allows users to easily access and manipulate the BK Precision 1902B control through a Python interface. It is only tested with the BK 1902B Power supply but should work with all of any supply for the 1900 series.

Installation

Via pip

To install the package from PyPI using pip, run the following command:

pip install bk_precision_1900

From the repository

To install the package from the repository, clone the repository and install it using poetry:

git clone https://github.com/DephyInc/bk_precision_1900
cd bk_precision_1900
poetry install

Running the Demo Code

To run the demo code, use the following command:

poetry run python bk_demo.py [SERIAL_PORT]

This will execute the bk_demo.py script, which sets a series of voltages in the BK Precision 1902B and prints out the display readouts.

Note that you will need to have poetry installed on your system in order to use the poetry run command. You can install poetry by following the instructions at https://python-poetry.org/docs/.

Usage

Sample usage to control a BK Precision 1902B at port /dev/ttyUSB0

from bk1902b import BK1902B

with BK1902B("/dev/ttyUSB0") as psu:
    print("Resetting output")
    psu.set_current(0.1)
    psu.set_voltage(1)
    psu.set_output_on()
    time.sleep(10)
    psu.set_output_off()

Project details


Download files

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

Source Distribution

bk_precision_1900-1.0.0.tar.gz (4.4 kB view hashes)

Uploaded Source

Built Distribution

bk_precision_1900-1.0.0-py3-none-any.whl (5.0 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