Add driver base class

This commit is contained in:
2025-06-30 15:04:21 +00:00
parent 1f00210b63
commit 8fe97047d1
2 changed files with 201 additions and 0 deletions

View File

@@ -3,3 +3,7 @@
Each driver translates high-level operations into SCPI commands
and handles responses from instruments.
"""
from py_dvt_ate.instruments.drivers.base import BaseDriver
__all__ = ["BaseDriver"]