def speech_manual_play():
    '''The text "These aren't the droids you're looking for." will play on the speaker.'''
    s = Speech("These aren't the droids you're looking for.")
    s.play()
    s.wait()
Example #2
0
def speech_manual_play():
    '''The text "These aren't the droids you're looking for." will play on the speaker.'''
    s = Speech("These aren't the droids you're looking for.")
    s.play()
    s.wait()
def speech_play():
    s = Speech("Test")
    s.play()
    s.wait()
    return True
Example #4
0
def speech_play():
    s = Speech("Test")
    s.play()
    s.wait()
    return True