> For the complete documentation index, see [llms.txt](https://support.powerio.com/hub/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.powerio.com/hub/codesys-hvac/en/hvac-library/functionblocks/time/stopwatch.md).

# StopWatch

## `StopWatch` (FB)

FUNCTION\_BLOCK StopWatch

### Short description

> Measurement of time intervals with reset capability.\
> Display of total time (*tElapsed*) and of the total time before the last measurement (*tMeasured*).

### Representation

<figure><img src="/files/4c39df4597a4ae3a05f60524be43ce7ee0c075ed" alt=""><figcaption></figcaption></figure>

### Interfaces

#### Inputs

| Name     | Data type | Value range | Initial value | Function            |
| -------- | --------- | ----------- | ------------- | ------------------- |
| *xEn*    | BOOL      |             |               | Enable measurement  |
| *xReset* | BOOL      |             |               | Reset the stopwatch |

#### Outputs

| Name        | Data type | Value range | Initial value | Function                                    |
| ----------- | --------- | ----------- | ------------- | ------------------------------------------- |
| *tMeasured* | TIME      | 0 … 10 days | 0 days        | Time measured before the last measurement   |
| *tElapsed*  | TIME      | 0 … 10 days | 0 days        | Time duration measured since the last reset |

### Function description

#### General

This function block is used to measure individual time intervals (*xEn* = TRUE).\
The sum of the measured time intervals is shown at the output *tElapsed* .\
The sum of the measured time intervals before the last measurement is shown at the output *tMeasured* displayed.\
The sum of the measured time intervals must not exceed 14400 minutes (= 10 days).\
The active reset input (*xReset* = TRUE) resets the outputs *tElapsed* and *tMeasured* to 0.\
If measurement is not enabled (*xEn* = FALSE) the outputs *tElapsed* and *tMeasured* are not changed.

### CODESYS

InOut:

| Scope  | Name        | Type   |
| ------ | ----------- | ------ |
| Input  | `xEn`       | `BOOL` |
| Input  | `xReset`    | `BOOL` |
| Output | `tMeasured` | `TIME` |
| Output | `tElapsed`  | `TIME` |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://support.powerio.com/hub/codesys-hvac/en/hvac-library/functionblocks/time/stopwatch.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
