We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ea7741 commit c94d2f4Copy full SHA for c94d2f4
1 file changed
examples/tutorials/10_play_audio.py
@@ -23,8 +23,13 @@
23
def main():
24
args = anki_vector.util.parse_command_args()
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)
+ # You can find these sounds files here:
+ # 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)
33
34
35
if __name__ == "__main__":
0 commit comments