This is a modular Python library for communicating with PTCC hardware devices over a custom byte-based protocol. It supports message construction, parsing, throttled I/O communication, device detection, and callback-based event handling.
Project description
PTCC Communication Framework
A modular Python library for communicating with PTCC hardware devices over a custom byte-based protocol. It supports message construction, parsing, throttled I/O communication, device detection, and callback-based event handling.
- Project Homepage: https://gitlab.com/vigophotonics/ptcc-library
- Download Page: https://pypi.org/project/ptcc-library
- Product Page: https://vigophotonics.com/product/programmable-smart-ptcc-01-tec-controller-series/
Features
- Communication with PTCC devices and modules
- Simplified message generation for communication
- Interface abstraction for serial or custom communication backends
- Auto-detection of PTCC device/module types (NOMEM, MEM, LAB_M)
- Full PtccObject and PtccMessage encoding/decoding support
- Callback registration for received object IDs
- Values retrieving and setting in SI units
Documentation
Full documentation can be found at https://ptcc-library.readthedocs.io/
Installation
ptcc_library can be installed from PyPI:
pip install ptcc-library
Detailed information can be found at https://pypi.org/project/ptcc-library
Quick Start Example
1. Detect and Connect to Device
To communicate with your hardware, the library first needs an active communication channel.
This is typically a serial port object that you create and configure.
You pass this communication object to the detect_device() function.
If a compatible device is found, the function returns a device object, which is your primary interface for all further interactions.
from ptcc_library import detect_device
import serial
with serial.Serial('COM5', baudrate=57600, timeout=0.1) as ser:
device = detect_device(comm=ser)
2. Register Callbacks
A callback is a function you write that is automatically executed when a specific piece of data arrives from the device.
This allows you to react to incoming information asynchronously.
You link your function to a data ID using device.receiver.register_callback().
You can also pass an optional context argument, which is a static value supplied to your callback, useful for identifying a measurement's source.
from ptcc_library import CallbackPtccObjectID
def name_callback(name):
print("Module Name:", name)
def temp_callback(temp, context):
print(f"Temperature: {temp} K ({context})")
device.receiver.register_callback(CallbackPtccObjectID.MODULE_IDEN_NAME, name_callback)
device.receiver.register_callback(CallbackPtccObjectID.MODULE_BASIC_PARAMS_T_DET, temp_callback, "live")
3. Send Messages
The device object provides straightforward methods for sending commands and requests to the hardware, typically named write_msg_*.
For example, write_msg_get_module_iden() requests identity information, while write_msg_set_temperature() commands the device to change its temperature.
When the device responds, it will trigger the corresponding callbacks you registered.
device.write_msg_get_module_iden()
device.write_msg_set_temperature(value_in_kelvins=230)
4. Handle Incoming Data
The library does not read from the serial port on its own.
Your application is responsible for reading incoming bytes and feeding them to the library's receiver.
You must implement a loop that reads data and passes it to device.receiver.add_byte() or device.receiver.add_bytes().
As the receiver processes data, it automatically finds complete messages and triggers the appropriate callbacks.
while True:
byte = ser.read(1)
if byte:
if device.receiver.add_byte(byte[0]) == PtccMessageReceiveStatus.FINISHED:
print("New message received")
Handle Containers
The device communicates by sending data in packets called containers. Each container holds a collection of related data objects. To process full data as it arrives, you must register a callback function that will be executed when a specific type of container is received.
Container IDs include:
DEVICE_IDENMODULE_IDENPTCC_CONFIGPTCC_MONITORMODULE_BASIC_PARAMSMODULE_LAB_M_MONITORMODULE_LAB_M_PARAMS
def iden_callback(objects):
for o in objects:
print(f"{o.name} = {o.value}")
device.receiver.register_callback(CallbackPtccObjectID.DEVICE_IDEN, iden_callback)
Product Page
PTCC-01 is a series of programmable, precision, low-noise thermoelectric cooler controllers. They are designed to operate with VIGO infrared detection modules.
👤 Author
Wojciech Szczytko
wszczytko@vigo.com.pl
GitLab: @wszczytko1
@wszczytko
@wszczytk
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ptcc_library-0.1.1.tar.gz.
File metadata
- Download URL: ptcc_library-0.1.1.tar.gz
- Upload date:
- Size: 179.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
674bbee33c34e1fcface04db4a2b897a0ac7cd60c3c1b3d97d7e159f2c7146cf
|
|
| MD5 |
0ce06a625bfbf7ec71052472bf41975d
|
|
| BLAKE2b-256 |
88db86cd2e595fad80a6e3f379950fc5a6e560afd92e8c589d4586f3913aef3d
|
File details
Details for the file ptcc_library-0.1.1-py3-none-any.whl.
File metadata
- Download URL: ptcc_library-0.1.1-py3-none-any.whl
- Upload date:
- Size: 182.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
be5b5a9b9cd9118fee906ef427cd1c24a4e2415c21d94bdb56b702cc724afed9
|
|
| MD5 |
097c5573bd5fa3cdffeb98fdd800fac7
|
|
| BLAKE2b-256 |
bbc93b0e756a55df6502c0d683025b5d9c11dea3725acb9f34881ee6c225541f
|