Pico Technology TC-08 USB data acquisition

Files to connect, query, and disconnect from the Pico Technology USB TC-08, using DLL's.
1.1K Downloads
Updated 9 Mar 2017

View License

handle = usbtc08connect(types, tc08Path) configures the USB Pico Technology TC-08 data logger where types is a string or a vector array of strings of the respective channel types e.g. 'K' for type K thermocouples, and 'X' for measuring the voltage. If the tc08Path is supplied, it must point to the folder containing the DLLs, otherwise it assumes a default path of 'C:\Program Files (x86)\Pico Technology\Pico Full'. Empty paths are also acceptable, in which case the default path is used. handle is the handle of the TC-08 for using usbtc08query, or is 0 if any of the steps were unsuccessful. Additional output arguments are tolerated for legacy resons. This uses the streaming mode of the unit, which means queries are much faster - ca. 1 ms per call. interval is the time between samples and is set to the fastest possible value, obtained by requesting it from the unit - this is usually about 100 ms per channel - but can be specified if necessary.
[recentData, allData, overflowFlag] = usbtc08query(handle) returns the most recent values (as an 8-element numeric column vector). usbtc08connect must be run first to configure the USB TC-08 and to obtain tc08Handle. If allData is specified as a second argument, then all the data in the buffer is supplied as a cell array the same size as the number of channels, with temperature-time data. If no data is in the buffer, all the temperatures are NaN's. BufferSize is optional, and defaults to the maximum possible value (600, as according to the header file) to retain as much data as possible. The overflowFlag is a vector the same size as the channels, which gives a 1 if at any point a measurement on that channel overflowed - it is not possible to determine exactly which measurement failed.
usbtc08disconnect(handle) disconnects the USB TC-08 from MATLAB and unloads the DLLs, where handle is a uint16 from 1-65535 supplied by usbtc08connect.
This is now much faster, so the DDE method is no longer preferred.
Note that you MUST have the Pico Technology SDK (https://www.picotech.com/downloads) and an appropriate compile for MATLAB setup.

Cite As

Geoffrey Akien (2024). Pico Technology TC-08 USB data acquisition (https://www.mathworks.com/matlabcentral/fileexchange/41800-pico-technology-tc-08-usb-data-acquisition), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R14SP1
Compatible with any release
Platform Compatibility
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.32.0.0

Updated with the current SDK paths

1.31.0.0

Minor bugfix

1.3.0.0

Significant changes to now be much faster.

1.2.0.0

Significant changes to now be much faster.

1.0.0.0