Initial commit

Co-Authored-By: kotte <14197736+mrtamagotchi@users.noreply.github.com>
Co-Authored-By: mikaeltellhed <2311083+mikaeltellhed@users.noreply.github.com>
Co-Authored-By: Tore Knudsen <18231882+torekndsn@users.noreply.github.com>
Co-Authored-By: Michael Cartner <32543275+michaelcartner@users.noreply.github.com>
This commit is contained in:
Eric Tuvesson
2023-09-05 12:08:55 +02:00
commit 53f0d6320e
2704 changed files with 76354 additions and 0 deletions

39
nodes/utilities/delay.md Normal file
View File

@@ -0,0 +1,39 @@
---
hide_title: true
hide_table_of_contents: true
title: Delay
---
<##head##>
# Delay
This node lets you delay <span className="ndl-signal">signals</span> by the specified amount of milliseconds.
<div className="ndl-image-with-background l">
![](/nodes/utilities/delay/delay_node.png)
</div>
<##head##>
## Inputs
| Signal | Description |
| ------------------------------------------- | --------------------------------------------------------------------- |
| <span className="ndl-signal">Start</span> | Starts the timer. Does nothing if the timer is already running. |
| <span className="ndl-signal">Restart</span> | Starts the timer. Restarts the timer if the timer is already running. |
| <span className="ndl-signal">Stop</span> | Stops the timer if it's running. Does nothing otherwise. |
| Data | Description |
| --------------------------------------------- | -------------------------------------------------------------------------------------------------- |
| <span className="ndl-data">Duration</span> | The duration of the timer in milliseconds. |
| <span className="ndl-data">Start Delay</span> | The delay before the timer starts after the _Start_ input is triggered. Specified in milliseconds. |
## Outputs
| Signal | Description |
| -------------------------------------------- | ------------------------------------------ |
| <span className="ndl-signal">Started</span> | Signal emitted when the timer starts. |
| <span className="ndl-signal">Finished</span> | Signal emitted when the timer is finished. |