#------------------------------------------------------------------------------ # TiViPE Textual Robotics Language. # Copyright (c) 2016, TiViPE, All rights reserved. # Url: www.tivipe.com # Email: tino@tivipe.com # Author: Tino Lourens # Date: 09 Sep 2016 #------------------------------------------------------------------------------ #------------------------------------------------------------------------------ # Enable motor stiffness #------------------------------------------------------------------------------ wait(2000) & stiff (1, 500, 0) & #------------------------------------------------------------------------------ # goto to all available postures # Crouch LyingBack LyingBelly Sit (SitOnChair) SitRelax Stand StandInit # StandZero and back to Crouch #------------------------------------------------------------------------------ say(moving_to_posture_crouch, 80, English) & posture(Crouch) & say(moving_to_posture_lying_back) & posture(LyingBack) & say(moving_to_posture_lying_belly) & posture(LyingBelly) & say(moving_to_posture_sit) & posture(Sit) & say(moving_to_posture_sit_relax) & posture(SitRelax) & say(moving_to_posture_stand) & posture(Stand) & say(moving_to_posture_stand_init) & posture(StandInit) & say(moving_to_posture_stand_zero) & posture(StandZero) & say(moving_to_posture_crouch) & posture(Crouch) & #------------------------------------------------------------------------------ # Relax motor stiffness #------------------------------------------------------------------------------ stiff(0, 500, 0) & say(ready) #------------------------------------------------------------------------------ # End of program #------------------------------------------------------------------------------