MATLAB: Data Logger (streaming)
-
Moku:Go
Moku:Go Arbitrary Waveform Generator Moku:Go Data Logger Moku:Go Frequency Response Analyzer Moku:Go Logic Analyzer & Pattern Generator Moku:Go Oscilloscope & Voltmeter Moku:Go PID Controller Moku:Go Spectrum Analyzer Moku:Go Waveform Generator Moku:Go Power Supplies Moku:Go Digital Filter Box Moku:Go FIR Filter Builder Moku:Go Lock-in Amplifier Moku:Go General Moku:Go Logic Analyzer/Pattern Generator Moku:Go Time & Frequency Analyzer Moku:Go Laser Lock Box Moku:Go Phasemeter
-
Moku:Lab
Moku:Lab General Moku:Lab Arbitrary Waveform Generator Moku:Lab Data Logger Moku:Lab Digital Filter Box Moku:Lab FIR Filter Builder Moku:Lab Frequency Response Analyzer Moku:Lab Laser Lock Box Moku:Lab Lock-in Amplifier Moku:Lab Oscilloscope Moku:Lab Phasemeter Moku:Lab PID Controller Moku:Lab Spectrum Analyzer Moku:Lab Waveform Generator Moku:Lab Time & Frequency Analyzer Moku:Lab Logic Analyzer/Pattern Generator
-
Moku:Pro
Moku:Pro Arbitrary Waveform Generator Moku:Pro Data Logger Moku:Pro Frequency Response Analyzer Moku:Pro Oscilloscope Moku:Pro PID Controller Moku:Pro Spectrum Analyzer Moku:Pro Waveform Generator Moku:Pro Lock-in Amplifier Moku:Pro Digital Filter Box Moku:Pro FIR Filter Builder Moku:Pro Phasemeter Moku:Pro Multi-instrument Mode Moku:Pro General Moku:Pro Logic Analyzer/Pattern Generator Moku:Pro Time & Frequency Analyzer
- Python API
- MATLAB API
- Arbitrary Waveform Generator
- Data Logger
- Digital Filter Box
- FIR Filter Builder
- Frequency Response Analyzer
- Laser Lock Box
- Lock-in Amplifier
- Oscilloscope
- Phasemeter
- PID Controller
- Spectrum Analyzer
- Time & Frequency Analyzer
- Waveform Generator
- Logic Analyzer & Pattern Generator
- Multi Instrument Mode
- Moku Cloud Compile
- Moku general
- LabVIEW
Example MATLAB script to implement the Data Logger (streaming)
Please note that Moku streaming functionality requires the installation of mokucli. For more MATLAB examples, please refer to this link.
%% Livestream Datalogger Example % % This example demonstrates how you can use the Datalogger to live-stream % dual-channel voltage data over the network. % % (c) 2017 Liquid Instruments Pty. Ltd. % %% Connect to your Moku ip = input('Please enter your Moku:Lab IP address: ', 's'); % Connect to your Moku and deploy the desired instrument m = MokuDatalogger(ip); %% Configure the instrument % Set the samplerate to 10 Hz m.set_samplerate(10); %% Start network-streaming data % Stop any previous sessions m.stop_stream_data(); % Start a 10sec dual-channel streaming session m.start_stream_data('duration',10,'ch1','true','ch2','true'); %% Receive samples while 1 % Get 10 samples off the network at a time samples = m.get_stream_data('n',10); % Break out of the loop if we receive an empty cell array % This denotes the session has completed (works for dual-channel only) if iscell(samples) disp('Stream complete'); break end disp(sprintf('Received: Channel 1 (%d smps), Channel 2 (%d smps)', ... length(samples(1,:)), length(samples(2,:)))); % A short pause ensures this message will print with each loop pause(0.1); end %% Close the network-streaming session % Denote that we are done with the data streaming session to clean up % device and network resources. m.stop_stream_data();