switch timer and interval to new namespace

This commit is contained in:
Joel Wetzell
2025-12-26 11:22:45 -06:00
parent 1c6ab9f47e
commit 324176f0ac
3 changed files with 8 additions and 8 deletions
+19
View File
@@ -0,0 +1,19 @@
---
title: Interval
sidebar:
order: 2
---
The `time.interval` module emits a message at a specified duration. Sending any message to this module will reset the interval timer.
- **type**: `time.interval`
- **params**:
- **duration**: time in milliseconds between messsages
### Example snippet
Emits a message every 3 seconds
```
- id: every3Secs
type: time.interval
params:
duration: 3000
```