Skip to main content

Totally Bearable Spectrometer UI

Project description

tobes-ui: Totally Bearable Spectrometer UI

This is a UI for several spectrometers:

  • Torch Bearer Spectrometer (Y21B7W10034CCPD) that is available on Amazon and AliExpress (TB Store)
  • Ocean Optics Flame-S (and maybe others)

Originally forked from ZoidTechnology/Torch-Bearer-Tools[^1] and improved (beyond recognition).

It also supports displaying its own json saves and importing csv data from yet another Chinese range of spectrometers (Hopoocolor HPCS-320, HPCS-330).

Install

  • pipx install tobes-ui

or:

  • pip install tobes-ui

If you want support for Ocean Optics, you also need to install tobes-ui[ocean], and also (for Linux and Windows) follow the OS support instructions on python-seabreeze.

Usage

$ python3 -m tobes_ui.main -h
usage: main.py [-h] [-b] [-L] [-e EXPOSURE] [-q | -t GRAPH_TYPE] [-o | -n]
               [-f FILE_TEMPLATE] [-d [DATA ...]] [-s HISTORY_SIZE] [-l LOG_LEVEL]
               [--log-file LOG_FILE]
               [input_device]

Totally Bearable Spectrometer UI

positional arguments:
  input_device          Spectrometer device (dev:string); ; e.g. /dev/ttyUSB0, or
                        type:/dev/foo (registered types: oo, ocean, oceanoptics, tb,
                        torchbearer)

options:
  -h, --help            show this help message and exit
  -b, --backends        List all spectrometer backends
  -L, --loaders         List all file loaders
  -e EXPOSURE, --exposure EXPOSURE
                        Exposure time in milliseconds (0.1-5000) or 'auto' (default: auto)
  -q, --quick-graph     Enable quick (LINE) graph mode
  -t GRAPH_TYPE, --graph_type GRAPH_TYPE
                        Graph type (LINE, SPECTRUM, CIE1931, CIE1960UCS, CIE1976UCS, TM30,
                        OVERLAY) (default SPECTRUM)
  -o, --oneshot         One shot mode (single good capture)
  -n, --no-refresh      Start without refresh
  -f FILE_TEMPLATE, --file_template FILE_TEMPLATE
                        File template (without .ext) for data export (default:
                        'spectrum-{timestamp_full}{graph_type}'),
                        '{name}-{timestamp_full}{graph_type}' might be also useful
  -d [DATA ...], --data [DATA ...]
                        File(s) to load for viewing (disables data refresh); (loaders: hpcs,
                        json)
  -s HISTORY_SIZE, --history-size HISTORY_SIZE
                        Size of the measurement history (default: 50)
  -l LOG_LEVEL, --log-level LOG_LEVEL
                        Logging level to configure: DEBUG, INFO, WARN, ERROR, FATAL (default
                        WARN)
  --log-file LOG_FILE   Logfile to write to (defaults to none (=console))

My typical use is:

# To gather new data from Torch Bearer:
python3 -m tobes_ui.main /dev/ttyUSB0 -e auto -o
# or (if you use pipx): tobes-ui /dev/...

# To gather new data from Ocean Optics:
python3 -m tobes_ui.main oo: -e auto -o

# To "replay" existing samples:
python3 -m tobes_ui.main -d examples/*.json
# or (if you use pipx): tobes-ui -d ...

The first invocation gives one-shot spectrum on auto exposure (from /dev/ttyUSB0):

screenshot of live capture

Or, if you prefer, screenshot of the CIE1976UCS locus or screenshot of the TM30 graph.

The "replay" invocation shows you saved data from examples (no spectrometer needed!):

screenshot of replay

screenshot of replay overlay log

There are several icons on the toolbar:

Icon Key Explanation
name Enter, A Name the current spectrum data
save S Saves rendered graph as png
download D Save raw data as json
refresh R Keep refreshing data
oneshot 1, O One good acquisition
remove Delete, X Remove the current spectrum data (from UI)
clear - Remove all the spectrum data (from UI)
history start Home, H Go to start of history
history back , P Go to previous sample
history forward , N Go to next sample
history start End, E Go to end of history
line graph Q, L Line graph
spectral graph C Spectrum graph (slow to draw)
cie1931 locus 3 CIE1931 locus graph
cie1960UCS locus 6 CIE1960UCS locus graph
cie1976UCS locus 7 CIE1976UCS locus graph
tm30 graph T TM30 graph
overlay graph V Overlay graph -- all spectra at once
fix y range Y Only line+spectrum: Fix Y-axis range based on current graph
global fix y range G Only line+spectrum: Fix Y-axis range based on all graphs
log y axis K Only line+overlay: Use logarithmic Y-axis
visible spectrum Z Only line, spectrum, overlay: Limit X axis to visible spectrum (380..750 nm)
spectrum overlay | Only line, overlay: Show spectrum + photosensitivities overlay
power Esc, Ctrl+Q Quit the app

Exported data

Sample exported data:

{
    "status": "normal",
    "exposure": "automatic",
    "time": 329.1,
    "spd": {
        "340": 0.0,
        "341": 0.0,
        "...": "......",
        "595": 0.013011,
        "596": 0.013095,
        "597": 0.013176,
        "598": 0.013251,
        "599": 0.013318,
        "600": 0.013385,
        "601": 0.01345,
        "602": 0.013515,
        "603": 0.013575,
        "604": 0.013621,
        "605": 0.013648,
        "...": "......",
        "995": 0.005143,
        "996": 0.005075,
        "997": 0.005119,
        "998": 0.004982,
        "999": 0.004944,
        "1000": 0.004859
    },
    "wavelength_range": [
        340,
        1000
    ],
    "wavelengths_raw": [
        340,
        341,
        "...",
        999,
        1000
    ],
    "spd_raw": [
        0.0,
        0.0,
        "......",
        0.013011,
        0.013095,
        0.013176,
        0.013251,
        0.013318,
        0.013385,
        0.01345,
        0.013515,
        0.013575,
        0.013621,
        0.013648,
        "......",
        0.005143,
        0.005075,
        0.005119,
        0.004982,
        0.004944,
        0.004859
    ],
    "ts": 1751704901.025932,
    "name": "my fancy spectrum",
    "y_axis": "$W\\cdot{}m^{-2}\\cdot{}nm^{-1}$",
    "device": "Y21B7W10034CCPD"
}

Meaning of the keys:

Key Type Default Meaning
status enum required Status of the exposure (normal, over, under)
exposure enum required Type of the exposure (manual, automatic)
time float required Time (ms) of the exposure
spd dict[int, float] required Dictionary of wavelength: intensity
wavelength_range range from spd Range of spd
wavelengths_raw list[float] None Raw wavelengths (device-specific)
spd_raw list[float] None Raw intensities (device-specific)
ts unix ts required Time when the measurement took place
name str None Human name for the measurement
y_axis str "counts" Unit for the Y axis
device str None Identifier of the device that took the measurement

License

GPLv3

[^1]: Discussed in the Software Hacks Unlock Cheap Spectrometer article.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tobes_ui-0.2.2.tar.gz (588.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tobes_ui-0.2.2-py3-none-any.whl (711.7 kB view details)

Uploaded Python 3

File details

Details for the file tobes_ui-0.2.2.tar.gz.

File metadata

  • Download URL: tobes_ui-0.2.2.tar.gz
  • Upload date:
  • Size: 588.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for tobes_ui-0.2.2.tar.gz
Algorithm Hash digest
SHA256 7578d15b12b1ffd89fd3bd417c29132e4345d3a6e8dee6989fae49539c348b04
MD5 bb652bc1cc93d341c9a4e31335bf1e72
BLAKE2b-256 aaa5af6a94e7487cf853ac535cf83aaa710b665a5b4104dfc1eab2265f923139

See more details on using hashes here.

File details

Details for the file tobes_ui-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: tobes_ui-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 711.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for tobes_ui-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 75ff9964bcdebd2008183137f31b4d7ede5742f69b1cc05a1247d0b1f4fe95f3
MD5 a21f400a2cc4e42e6853ce349e4c1fed
BLAKE2b-256 047ec88200c5255351984f938a16e54b1ff7ecb89f7d119000ce50b4e8373051

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page