/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)

How to use in your code#

Call the service from a Python script#
 1#!/usr/bin/env python
 2
 3import rospy
 4from soft_wakeup_word.srv import *
 5
 6if __name__ == "__main__":
 7
 8    rospy.wait_for_service("/wakeup_monitor/get_sleep_pattern")
 9
10    try:
11        proxy = rospy.ServiceProxy("/wakeup_monitor/get_sleep_pattern", GetSleepPattern)
12        response = proxy(args...) # check the soft_wakeup_word/GetSleepPattern message type for the expected arguments
13        rospy.loginfo(response)
14
15    except rospy.ServiceException as e:
16        rospy.logerror("Service call failed: %s" % e)