Python API for the Chromation spectrometer dev-kit
Project description
MicroSpec Overview
Package microspeclib
is a Python API for the Chromation
spectrometer dev-kit.
The microspec
project also includes:
- command line utility
microspec-cmdline
for running basic measurements without developing a Python application - an emulator (Mac and Linux only) for faking the dev-kit hardware in unit tests
Spectrometer Hardware
The Chromation spectrometer is a surface-mount PCB package consisting of a linear photodiode array and optical components.
The Python API communicates with firmware on the two microcontrollers in the dev-kit, one on each of the stacked PCBs.
- The microcontroller on the bottom of the stack provides a SPI interface to the Chromation spectrometer.
- The microcontroller on the PCB stacked above provides a USB bridge that turns the SPI interface into a USB interface.
microspeclib
accesses this USB interface using pyserial
.
Install the Python API
Install the microspec
project with pip
:
$ pip install microspec
To extend/customize/repurpose the API, clone the repository from
the project homepage:
https://github.com/microspectrometer/microspec and install in
--editable
mode.
Windows Load VCP
On Windows, when connecting the dev-kit for the first time:
- Open Device Manager:
- right-click on USB Serial Converter
- select Properties
- go to tab "Advanced"
- check "Load VCP"
- cycle power to the dev-kit (unplug/plug the USB cable)
Now "Load VCP" is enabled every time the dev-kit is connected to this Windows computer.
If "Load VCP" is not enabled, pyserial
cannot communicate with
the dev-kit and microspec
will report that it does not see a
connected USB device.
Install extra requirements for testing and documentation
Developers may want to install additional packages required for running unit tests and rebuilding documentation.
$ pip install microspec[dev]
Many of the microspec
unit tests use an emulator to fake the
dev-kit hardware. The emulator requires utility socat
, which is
only available for Mac and Linux.
- The documentation is built with Sphinx. Developers extending
the API will need to rebuild the documentation. Install the
Sphinx-related requirements by adding
[dev]
to theinstall
command:
$ pip install microspec[dev]
Use the Python API
Import the API in a Python script or at a Python REPL:
>>> from microspeclib.simple import MicroSpecSimpleInterface
The API is a set of commands for configuring the spectrometer and acquiring data.
There is one method for each command. Commands are
camelCaseFormatted. Commands return the received reply object. If
there is an error or a timeout, the reply is None
.
The following will connect to the dev-kit USB hardware, capture a single frame, then print the status, number of pixels, and the value of the 3rd pixel.
from microspeclib.simple import MicroSpecSimpleInterface
si = MicroSpecSimpleInterface(timeout=2)
reply = si.captureFrame()
print(reply.status)
print(reply.num_pixels)
print(reply.pixels[2])
Command Line API
The microspec_cmdline.py
executable will run a single command
and print the reply to stdout, optionally in CSV format. The
default is to look for hardware, but -f FILE can be used to point
it to either a device file or the name of a port, as in "COM3",
if necessary. The command itself is case-insensitive, and after
the command are key=value pairs of options for the command, if
necessary, such as led_num=0
or cycles=100
.
The -t timeout is how long it will wait for the command each time, and if it fails it will print None and move on. If a -r repeat is specified, it will run the command that many times. And if it is repeating, a -w wait will wait that long in between commands. All times are in fractional seconds.
For example, to set the exposure and cycles and then get 3 capture frames spaced 1.5 seconds apart, with a timeout of 0.2 seconds on each, and print it in CSV format:
microspec_cmdline.py setsensorconfig binning=true gain=gain1x row_bitmap=0x1f
microspec_cmdline.py setexposure cycles=100
microspec_cmdline.py captureframe -t 0.2 -r 3 -w 1.5 --csv
The command line utility is a .exe
on Windows
On Windows, replace microspec_cmdline.py
in the above lines
with microspec_cmdline.exe
.
For example:
> microspec-cmdline.exe captureframe -t 0.2 -r 3 -w 1.5 --csv
Emulate hardware with -e
Note that if you have no hardware connected, you can (on Linux and MacOSX) add a "-e" flag to use the emulator. It won't return very interesting capture frame data, but it will give an opportunity to test the interface.
Emulator
For now, this is only supported on Linux and MacOSX, and requires
the socat
executable to be installed and available on your PATH.
Use the emulator with the command-line utility by adding a "-e" flag.
Use the emulator with the microspeclib.simple
or
microspeclib.expert
API with keyword argument emulation=True
.
More information
Please see the project homepage for more information:
https://github.com/microspectrometer/microspec
Authors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file microspec-0.1.1b0.tar.gz
.
File metadata
- Download URL: microspec-0.1.1b0.tar.gz
- Upload date:
- Size: 148.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03a39ac5ce35090742d7d094f3ad25c143b4d3f24d0272fb135f442e6771798a |
|
MD5 | 8dc475bd75adc9b3561526a675044585 |
|
BLAKE2b-256 | 7e82711479485931537a356b4e382ca58ff8256b2c10ecd4bd388c55b49c906a |
File details
Details for the file microspec-0.1.1b0-py3-none-any.whl
.
File metadata
- Download URL: microspec-0.1.1b0-py3-none-any.whl
- Upload date:
- Size: 77.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.49.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54637f0a1d9e17cb8baa86e3fb6d8f19343f32c873967173ee9d1459a4a8383b |
|
MD5 | b0c20742d2a24052512c219e9fb3019e |
|
BLAKE2b-256 | 503f2758a58d98e429eacf63d0fc3998e0fd0bf488c90b68d074003a99faa37d |