2016-04-05 13:23:42 -07:00
|
|
|
# Control
|
|
|
|
|
2016-05-05 11:16:14 -07:00
|
|
|
Runtime and event utilities.
|
2016-04-05 13:23:42 -07:00
|
|
|
|
|
|
|
```cards
|
|
|
|
control.inBackground(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
control.reset();
|
2016-08-16 17:04:21 -07:00
|
|
|
control.waitMicros(4);
|
2017-07-17 23:48:13 -07:00
|
|
|
control.onEvent(0, 0, () => { });
|
|
|
|
control.raiseEvent(0, 0);
|
|
|
|
control.eventTimestamp();
|
|
|
|
control.eventValue();
|
2016-04-05 13:23:42 -07:00
|
|
|
```
|
2016-08-08 13:08:15 -07:00
|
|
|
|
2017-09-07 13:42:08 -07:00
|
|
|
## See Also
|
2016-08-08 13:08:15 -07:00
|
|
|
|
2017-07-17 23:48:13 -07: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)
|