2016-04-05 22:23:42 +02:00
|
|
|
# Control
|
|
|
|
|
2016-05-05 20:16:14 +02:00
|
|
|
Runtime and event utilities.
|
2016-04-05 22:23:42 +02:00
|
|
|
|
|
|
|
```cards
|
|
|
|
control.inBackground(() => {
|
2022-08-10 18:36:19 +02:00
|
|
|
|
2016-04-05 22:23:42 +02:00
|
|
|
});
|
|
|
|
control.reset();
|
2016-08-17 02:04:21 +02:00
|
|
|
control.waitMicros(4);
|
2019-12-02 05:58:26 +01:00
|
|
|
control.onEvent(0, 0, () => { });
|
|
|
|
control.raiseEvent(0, 0);
|
|
|
|
control.eventTimestamp();
|
|
|
|
control.eventValue();
|
2016-04-05 22:23:42 +02:00
|
|
|
```
|
2016-08-08 22:08:15 +02:00
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
## See Also
|
2016-08-08 22:08:15 +02:00
|
|
|
|
2019-12-02 05:58:26 +01:00
|
|
|
[inBackground](/reference/control/in-background), [reset](/reference/control/reset), [waitMicros](/reference/control/wait-micros), [onEvent](/reference/control/on-event), [raiseEvent](/reference/control/raise-event), [eventTimestamp](/reference/control/event-timestamp), [eventValue](/reference/control/event-value)
|