/wakeup_monitor/get_sleep_pattern#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/wakeup_monitor/get_sleep_pattern Quick Facts

Category

Speech and language processing

Message type

soft_wakeup_word/GetSleepPattern

Returns the current ‘sleep’ pattern (C++ regular expression). See Wake-up word detector for details.

Quick snippets#

Call the service from command-line#
$ rosservice call /wakeup_monitor/get_sleep_pattern soft_wakeup_word/GetSleepPattern
# (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/get_sleep_pattern")

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

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