/wakeup_monitor/enable#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/wakeup_monitor/enable Quick Facts

Category

Speech and language processing

Message type

soft_wakeup_word/Enable

Enable/disable the monitor of wake-up/sleep keywords. See Wake-up word detector for details.

Quick snippets#

Call the service from command-line#
$ rosservice call /wakeup_monitor/enable soft_wakeup_word/Enable
# (tip: press Tab to complete the message prototype)
Call the service from a Python script#
#!/usr/bin/env python

import rospy
from soft_wakeup_word.srv import *


if __name__ == "__main__":

    rospy.wait_for_service("/wakeup_monitor/enable")

    try:
        proxy = rospy.ServiceProxy("/wakeup_monitor/enable", Enable)
        response = proxy(args...) # check the soft_wakeup_word/Enable message type for the expected arguments
        rospy.loginfo(response)

    except rospy.ServiceException as e:
        rospy.logerror("Service call failed: %s" % e)