logging_progress

Returns current logging state.

This method returns a dictionary to track the progress of data logging session. Always call this method in a loop until a desired result is reached.

Log files can be downloaded to local machine using download_files

Refer to,

  • time_to_end → Estimated time remaining
  • time_to_start → Time remaining to start the requested session
  • bytes_logged → Bytes logged to file

INFO

To convert .li binary formatted log files, use liconverter windows app

# Examples

# Sample response

{
   "file_name":"MokuDataLoggerData_20210603_101533.li",
   "time_remaining":9,
   "time_to_end":9,
   "time_to_start":-1,
   "words_logged":24
}
1
2
3
4
5
6
7