Open
Description
Hey ap--
im new to python (experienced C and arduino user here).
anyways, im currently trying to get the intensity values from a USB2000 ocean optics device.
currently, it seems like everything is working. USB 2000 is detected, wavelengths seem correct and printed.
The problem is when i call spec.intensities, my command line goes into an infinite loop.
heres my code...
import seabreeze.spectrometers as sb
devices = sb.list_devices()
print(devices)
spec = sb.Spectrometer(devices[0])
spec.integration_time_micros(10000)
Wavelengths = spec.wavelengths()
print(Wavelengths)
value = spec.intensities()
print(value)
the command line just remains blank after it runs
im running Spyder from anaconda
image of command line