Modifier

Modifier applied on a command

 motor.val = 5 time:500ms;
 motor.val = 34 time:400ms;

Table 2.2. Modifier

Urbi commanddescriptioncomment
time:200mscommand executed in 200msdefault unit is millisecond (ms), you can enter second (s)
time:200ms adaptative:3calcul is done again every step (here 3)this helps if trajectory is not followed correctly
smooth:200mssmooth profile for a trajectoryexample: x=0; x=100 smooth:100ms;
speed:20set speed for the commandunit is: unit/second
accel:5set acceleration for the commandunit is: unit/second/second
sin:50ms ampli:a phase:p getphase:g,sin, cos... modifiermotor.val = myCenterValue sin:myPeriod ampli:myAmplitude,.
offchange load property to 0motors off; is same as motors.load = 0;
onchange load property to 1motors on; is same as motors.load = 1;
switchchange load property to the inverse valuemotors switch; is same as motors.load = ! motors.load ;