A package for controlling CryoCon 22C Temperature Controllers
Project description
CryoCon 22C Temperature Controller
Install with
python -m pip install cryocon-22c-controller
API
A CryoconController is a SCPI instrument and uses the easy-scpi package for means of communication. Thus, all the methods and properties of an easy_scpi.Instrument
can be called.
Channels can be referenced either by their given name or their letter. All commands generate a response from the controller, so only queries are performed to keep command and response synched.
Methods
**CryoconController( port, timeout, baud, backend, resource_params ): Creates a new CryoconController instance.
max_temperatrue( loop ): Returns the maximum set point temperature of the given loop.
channel_max_temperatrue( loop ): Returns the maximum set point temperature of the loop controlling the given channel.
temperature( channel ): Returns the current temperature of the given channel
get_channel_loop( channel ): Returns the loop controlled by the given channel.
get_range( loop ): Gets the output range for the loop. Values are [ 'hi', 'mid', 'low' ].
set_range( loop, range ): Sets the ouput range for the loop. Range values are [ 'hi', 'mid', 'low' ].
get_ouput( loop ): Gets the power output of the loop as a fraction of the full range.
set_point( channel ): Returns the set point of the given channel.
set_temperature( channel, temperature ): Sets the set point of the controlling loop of the given channel.
lock( lock ): Locks or unlocks the front key pad.
enable(): Engages the temperature controller.
disable(): Stops the tempreature controller.
auto_adjust_range( low_threshold, high_threshold, channles ): Automatically adjusts the power range.
Properties
channels: A dictionary of aliases of the channels.
channel_names: A dictionary of given name of the channels.
loops: A dictionary of loop:input source pairs.
max_temps: A dictionary of maximum set point temperatures for each loop.
units: A dictionary of units for each channel.
enabled: Returns whether the temperature controller is currently engaged.
Example
# import package
import cryocon_22c_controller as cc
# Create a controller
cryo = cc.CryoconController( <port> )
# Connect to the controller
cryo.connect()
# Check if controller is connected (inherited from easy_scpi.Instrument)
cryo.is_connected
# Get channel names
cryo.channels
# Read the current set point temperature of channel a
cryo.set_point( 'a' )
# Set the desired temperature set point on channel b
cryo.set_temperature( 'b', 100 )
# Enable controller
cryo.enable()
# Disable controller
cryo.disable()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for cryocon-22c-controller-0.0.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f71324f94c5b2f673f2376b601176f4dd9c483f9ab7785a6b9df053d7c2fc433 |
|
MD5 | 2b10194b50d4590eee9dd5c42f7b9c2d |
|
BLAKE2b-256 | 109009f193cb34ca8613e72b9b9778c462723346922defa61b45790b990e24dd |
Hashes for cryocon_22c_controller-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cdf6d6a6493f1e4dae5be71e013ce8d6d4495a31c90392cb0776fb5b89be6bdc |
|
MD5 | f3eb133864811191fe00d1599899c238 |
|
BLAKE2b-256 | ae88e5b7d2fbbedcfec07a3c0c7709e0d60b00f68d09f9583e25bc98db691c70 |