# Set up the Thermometer to take the temperatures you want. acquisifier: name: Initialize post_processing: { set config(run_result) "" set config(run_results) [file join \ [file dirname $config(daq_script)] \ Temperature_Log.txt] } config: end. # Set up the post-processing to extract these temperatures and # put them in the result file. acquire: name: Thermometer instrument: Thermometer post_processing: { set line "[clock seconds] [lrange $result 1 2]" LWDAQ_print $info(text) $line LWDAQ_print $config(run_results) $line } config: end.