You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear all,
the list in the NIRQuest data sheet (attached) seems to be incomplete, for example the following command activates the high gain mode of the spectrometer:
I'm searching for a complete list of "EP2 CommandByte Values" to control the spectrometer via direct USB commands.
In particular for a way to control the integrated shutter of the spectrometer via raw_usb_write.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Dear all,
the list in the NIRQuest data sheet (attached) seems to be incomplete, for example the following command activates the high gain mode of the spectrometer:
self.spec = Seabreeze.from_serial_number("NQ5200089")
startSession = struct.pack('<B',1)
self.spec.f.raw_usb_bus_access.raw_usb_write(startSession,endpoint='primary_out')
time.sleep(1)
HighGainModeOn = struct.pack('<BBBB',0x6A, 0x44, 0x01, 0x00)
self.spec.f.raw_usb_bus_access.raw_usb_write(HighGainModeOn,endpoint='primary_out')
I'm searching for a complete list of "EP2 CommandByte Values" to control the spectrometer via direct USB commands.
In particular for a way to control the integrated shutter of the spectrometer via raw_usb_write.
Cheers,
Max
OEM-Data-Sheet-NIRQuest.pdf
Beta Was this translation helpful? Give feedback.
All reactions