File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 23
23
def main ():
24
24
args = anki_vector .util .parse_command_args ()
25
25
with anki_vector .Robot (args .serial ) as robot :
26
- robot .audio .stream_wav_file ("../sounds/vector_bell_whistle.wav" , 75 )
27
- robot .audio .stream_wav_file ("../sounds/vector_alert.wav" , 75 )
26
+ # You can find these sounds files here:
27
+ # https://github.com/anki/vector-python-sdk/blob/master/examples/sounds/vector_alert.wav
28
+ # https://github.com/anki/vector-python-sdk/blob/master/examples/sounds/vector_bell_whistle.wav
29
+ #
30
+ # Paste these two wav files next to this tutorial to play sounds.
31
+ robot .audio .stream_wav_file ("vector_bell_whistle.wav" , 75 )
32
+ robot .audio .stream_wav_file ("vector_alert.wav" , 75 )
28
33
29
34
30
35
if __name__ == "__main__" :
You can’t perform that action at this time.
0 commit comments