mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-08-08 07:03:39 +00:00
22 lines
432 B
Plaintext
22 lines
432 B
Plaintext
---
|
|
title: Interval
|
|
sidebar:
|
|
order: 2
|
|
---
|
|
import SchemaInfo from '../../../../components/SchemaInfo.astro';
|
|
|
|
The `time.interval` module emits a message at a specified duration. Sending any message to this module will reset the interval timer.
|
|
|
|
<SchemaInfo type="module" id="time.interval"/>
|
|
|
|
### Example snippet
|
|
|
|
Emits a message every 3 seconds
|
|
|
|
```yaml
|
|
- id: every3Secs
|
|
type: time.interval
|
|
params:
|
|
duration: 3000
|
|
```
|