Skip to content

Commit

Permalink
removed pyvisa dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
seb5g committed Sep 9, 2024
1 parent 0da1381 commit c74ed0b
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/pymodaq_plugins_teaching/hardware/arduino.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,12 @@
import numbers
from pyvisa import ResourceManager


from pymodaq.utils.data import DataRaw, Axis
from pymodaq.utils.math_utils import np, gauss1D


VISA_rm = ResourceManager()

COM_PORTS = []
for name, rinfo in VISA_rm.list_resources_info().items():
if rinfo.alias is not None:
COM_PORTS.append(rinfo.alias)
else:
COM_PORTS.append(name)


SIZE = 256
LAMBDA_RED = 650
Expand Down

0 comments on commit c74ed0b

Please sign in to comment.