Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

A demo that has a robot wave whenever someone says “hello” and prints the detected transcript on the laptop.

WARNING: this pseudeocode, use only as a reference of how to set up a structure to the image above

pepper = Pepper(device_id="pepper1")
dialogflow = self.connect(DialogflowService, device_id='local')

dialogflow.register_input(pepper.microphone)
dialogflow.register_callback(print_transcript)

while True:
  intent = dialogflow.request(ListenForIntentRequest())
  if intent.name == "hello":
    wave_req = PepperMotionRequest("wave")
    pepper.motion.request(wave_req)

  • No labels