jetimeas

The jetimeas function triggers a measurement of a JETI specbos spectroradiometer. Use at your own risk, see license.

See also: jeticon, jetiaim, jetioff

Usage:

data = jetimeas(jeti,mode,time,n)

Where:

ParameterDescription
jetiIs the serial connection object.
modeDefines the operation mode:
‘spec’ for spectral power distribution (SPD) data
‘values’ for derived values from the SPD
time
(optional)
Sets the integration time for the measurement in ms. If not provided the device will automaticly adjust the integration time.
n
(optional)
Defines the number of measurements, default = 1.

Examples

Connect to JETI specbos and perform SPD measurement:

s = serialportlist;
% assuming only JETI is connected
jeti = jeticon(s); 
spec = jetimeas(jeti,'spec')
plotspec(380:780,spec)

Perform measurement and receive derived values:

spec = jetimeas(jeti,'values')

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.