stop_logging
Stops the current instrument data logging session.Handy method to terminate a in-progress data logging session.
Partial data log can still be downloaded to local machine using download_files
# Examples
from moku.instruments import Datalogger
import time
i = Datalogger('192.168.###.###')
# Generate a waveform on output channel
i.generate_waveform(channel=1, type='Sine', amplitude=1, frequency=10e3)
i.start_logging(duration=10, comments="Sample_script")
time.sleep(5) # Abort the logging session after 5 seconds
i.stop_logging()
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
m = MokuDatalogger('192.168.###.###');
% Generate a waveform on output channels
m.generate_waveform(1, 'Sine', 'amplitude',1, 'frequency',10e3);
m.start_logging('duration', 10, 'comments', 'Sample_script');
pause(5) % Abort the logging session after 5 seconds
m.stop_logging()
1
2
3
4
5
6
2
3
4
5
6
$: curl -H 'Moku-Client-Key: <key>'\
http://<ip>/api/datalogger/stop_logging
1
2
2