14 lines
254 B
Python
14 lines
254 B
Python
"""Power control helpers for ECU tests.
|
|
|
|
Currently includes Owon PSU serial SCPI controller.
|
|
"""
|
|
|
|
from .owon_psu import SerialParams, OwonPSU, scan_ports, auto_detect
|
|
|
|
__all__ = [
|
|
"SerialParams",
|
|
"OwonPSU",
|
|
"scan_ports",
|
|
"auto_detect",
|
|
]
|