When I sent the following small program to the robot using the real-time client interface, the robot starts emitting a continuous tooting sound as long as the program is running:
def standstill():
current_angles = get_actual_joint_positions()
while (True):
servoj(current_angles, 0, 0, t=0.002, lookahead_time=0.100, gain=200)
sync()
end # end of while loop
end # end of function
The sound is approximately like a deep sine tone, similar to television idle signal.
Why is it making that sound, and is it expected?