aboutsummaryrefslogtreecommitdiff
path: root/qolab/hardware/scope/__init__.py
blob: ec0c8f106863bb1fdea0dffdcc828595b32e36ac (plain)
1
2
3
4
5
6
7
8
"""
Provide basic classes to operate scopes
"""

from .sds1104x import SDS1104X
from .sds2304x import SDS2304X

__all__ = ["SDS1104X", "SDS2304X"]