Support Forums
Time

Hi i am looking to save to a CV channel the time stamp of when temperature sensor connected to the DT85 reaches a certain temperature 75C. therefore the CV channel will merely have the time this occurred

Hi i am looking to save to a CV channel the time stamp of when temperature sensor connected to the DT85 reaches a certain temperature 75C. therefore the CV channel will merely have the time this occurred

Hi Alan,

You can set the conditional statement to record time channel (T) after reading the temperature.
Example:

1TK(=1CV)
IF(1CV>100){T(=2CV)}
2CV("Time")

However, the CV value will be the number of seconds since midnight which requires you to calculate back the hour and minute.

Rather than the above process, I believe attaching an alarm text would be much better as you can see the text in your data file (serve as a flag).

1TK(=1CV)
IF(1CV>100){1$="ALARM"}
IF(1CV<100){1$=""}
1$("Condition")

Best regards,
dataTaker Expert

Hi Alan, You can set the conditional statement to record time channel (T) after reading the temperature. Example: ```` 1TK(=1CV) IF(1CV&gt;100){T(=2CV)} 2CV(&quot;Time&quot;) ```` However, the CV value will be the number of seconds since midnight which requires you to calculate back the hour and minute. Rather than the above process, I believe attaching an alarm text would be much better as you can see the text in your data file (serve as a flag). ```` 1TK(=1CV) IF(1CV&gt;100){1$=&quot;ALARM&quot;} IF(1CV&lt;100){1$=&quot;&quot;} 1$(&quot;Condition&quot;) ```` Best regards, dataTaker Expert
34
1
2
live preview
enter atleast 10 characters
WARNING: You mentioned %MENTIONS%, but they cannot see this message and will not be notified
Saving...
Saved
With selected deselect posts show selected posts
All posts under this topic will be deleted ?
Pending draft ... Click to resume editing
Discard draft