Read a National Instruments USB-TC01 single channel Thermometer in MATLAB
Data Acquisition Toolbox™ software provides a complete set of tools for analog input, analog output, and digital I/O from a variety of PC-compatible data acquisition hardware.
Support for the National Instrument USB-TC01 device was added to Data Acquisition Toolbox in R2011b. If you have R2010b or R2011a, you can use this file plus the Data Acquisition Toolbox to collect data from this device.
obj = TC01(deviceID,probeType) creates an object OBJ representing the device with the DEVICEID assigned by the National Instruments Measurement and Automation Explorer, with the PROBETYPE of 'J','K','T', etc. representing the type of the thermocouple used.
Call the READ method one or more times on the object to retrieve the current temperature in Celsius. The first time this is called, there will be a short delay as the hardware is configured, but additional calls will go faster.
This requires the Data Acquisition Toolbox and MATLAB R2010b or later. Note that this object takes exclusive access to the hardware. To release it, clear the variable that the object is assigned to.
Example:
myTemp = TC01('Dev4','J');
read(myTemp)
ans =
20.9406
% release the hardware
clear myTemp
For more information about the Data Acquisition Toolbox, visit http://www.mathworks.com/products/daq
Citar como
Rob Purser (2024). Read a National Instruments USB-TC01 single channel Thermometer in MATLAB (https://www.mathworks.com/matlabcentral/fileexchange/29707-read-a-national-instruments-usb-tc01-single-channel-thermometer-in-matlab), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
- Test and Measurement > Data Acquisition Toolbox > Analog Input and Output >
- Test and Measurement > Data Acquisition Toolbox > Data Acquisition Toolbox Supported Hardware >
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.