macaroni

display

Description:
The display executor is used to display a text message to the user using an on-screen overlay type experience, which will automatically be dimissed after a timeout.

Parent: execute, then, else

Value (simple form): string specifying the text message to display
Value (key/value form):

# simple form
- display: (string)

# simple example
- display: Hello!

# key/value form
- display: (string, required)
  timeout: (time, optional)

# key/value example
- display: Hello!
  timeout: 10s

EXAMPLE:

# check to see if listening, speaking and displaying response
commands:
- triggers:
  - are you listening
  execute:
  - display: Yes!
  - speak: Yes!

Additional information:

Status: ✅ IMPLEMENTED