#------------------------------------------------------------------------------ # TiViPE Textual Robotics Language. # Copyright (c) 2016, TiViPE, All rights reserved. # Url: www.tivipe.com # Email: tino@tivipe.com # Author: Tino Lourens # Date: 07 Sep 2016 #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # Enable motor stiffness; move to a standing position; perform behavior; # move to crouching position; relax motor stiffness #------------------------------------------------------------------------------ stiff (1, 500, 0) & posture(Stand) & #------------------------------------------------------------------------------ # start 'presentation' app that has been downloaded from the NAO website #------------------------------------------------------------------------------ wait(2000) & say(This_is_a_third_party_application, 80, English) & behavior(presentation, English) & #behavior(presentation, Dutch) #& #------------------------------------------------------------------------------ # silence speech recognition behavior (video expressions and audio expressions) # behavior enables speech recognition with an own vocabulary. After # the presentation the language is set to English with yes and no as vocabulary #------------------------------------------------------------------------------ vocabulary(yes;no, English, false, false) & posture(Crouch) & stiff(0, 500, 0) #------------------------------------------------------------------------------ # End of program #------------------------------------------------------------------------------