Deaf control of kalliope. If set to True the trigger process will be stopped.
Once this neuron is used, and Kalliope deaf, the hotword is deactivated. Only ways to undeaf are:
parameter | required | type | default | choices | comment |
---|---|---|---|---|---|
status | YES | Boolean | True, False | If "True" Kalliope will stop the hotword process |
Not returned values
Deaf Kalliope from a vocal order
- name: "deaf-synapse"
signals:
- order: "stop listening"
neurons:
- say:
message:
- "I stop hearing you, sir"
- deaf:
status: True
Undeaf Kalliope from another signals. In the following example, a MQTT message is received
- name: "undeaf-synapse"
signals:
- mqtt_subscriber:
broker_ip: "127.0.0.1"
topic: "/my/sensor"
neurons:
- deaf:
status: False
- say:
message:
- "Waiting for orders, sir"