Python SDK for Ikalogic AT1000 devices
Project description
ikalogic-at1000
Official Python SDK for the Ikalogic AT1000 Series Test Sequencers.
This package provides a high-level API to control and automate the Ikalogic AT1000, a test sequencer designed for functional testing of electronic devices, PCBs, and complex systems. It ships both a synchronous client (ikalogic_at1000) and an asynchronous client (ikalogic_at1000.aio).
Key Features
- 32 Programmable I/Os: Handle analog and digital signals within a ±25V range.
- 8 Dry Contact Relays: Control external circuits, with one relay equipped for high-precision current measurement.
- Programmable Power Supply: Delivers 0 to 24V at up to 2A with precise current monitoring.
- Dual USB 3.0 Ports: Feature power cycling (on/off control) and current measurement for testing USB devices.
- Communication Interfaces: Includes Ethernet, RS232, RS485, CAN, SPI, I2C, and UART.
- Human-Machine Interface (HMI): Onboard screen, rotary knob, and speaker for standalone operation and feedback.
Installation
pip install ikalogic-at1000
Or, with uv:
uv add ikalogic-at1000
Requires Python 3.10 or newer.
Quick Start
Connect to a device by hostname or IP, or discover devices on the local network:
from ikalogic_at1000 import AT1000, find_devices
# Discover AT1000 devices over mDNS
for device in find_devices():
print(device)
# Or connect directly
device = AT1000("at1000.local")
print(device.info.model, device.info.serial_number)
device.reset()
device.close()
Asynchronous Usage
The same API is available as coroutines under ikalogic_at1000.aio:
import asyncio
from ikalogic_at1000.aio import AT1000
async def main():
device = await AT1000.create("at1000.local")
print(device.info.model, device.info.serial_number)
await device.reset()
await device.aclose()
asyncio.run(main())
Real-time Events
Subscribe to live device state changes over a WebSocket. Connect, then register callbacks per event type (or "*" for all events):
from ikalogic_at1000 import AT1000
device = AT1000("at1000.local")
device.events.connect()
def on_gpio(event):
print(event.type, event.data)
unsubscribe = device.events.subscribe("gpio.state", on_gpio)
# later
unsubscribe()
device.close()
Documentation
Full API documentation is available at https://ikalogic.com/kb/at1000-api/at1000_home/.
License
This package is distributed under the MIT License.
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
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 ikalogic_at1000-0.2.0.tar.gz.
File metadata
- Download URL: ikalogic_at1000-0.2.0.tar.gz
- Upload date:
- Size: 31.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
329d7caf6f4eb27d3e9aac20bd1fdd9577c413854a368afc3c72a9ccc88107ec
|
|
| MD5 |
c62d6b557ba9005369eb1840a054fb2a
|
|
| BLAKE2b-256 |
cef364d42c05eeeb50c50a961f4890c08235f30f927b89984949e0d41b468cfd
|
File details
Details for the file ikalogic_at1000-0.2.0-py3-none-any.whl.
File metadata
- Download URL: ikalogic_at1000-0.2.0-py3-none-any.whl
- Upload date:
- Size: 43.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.25 {"installer":{"name":"uv","version":"0.11.25","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4967cbd2da111d574f073590ea1427522939d203e2bb67c3db10bf1ec5d415a4
|
|
| MD5 |
d79575c6856f036d4815b893aa3d432a
|
|
| BLAKE2b-256 |
fc1b5854b80caf9dbdcf2bbab700f9d2da0652da7f59b08d287f161906a6f367
|