LSS HT1 smart servo and jerky movement

Hi,

I use LSS HT1 but I have a jerky movement when I put a piece of wood on it ( right now I am using a 9v power supply).

Any hint to smooth it by software? or using 12v power supply?
What if I add a 1:3 gearing adapter, this would reduce the jerk?

Also I found this gearing assembly:

I guess the parts are those one right?


Thanks for your help!

The servo should not jitter like that, regardless of if there’s external gearing, so

Q1) Can you provide the code you are using to control the motion?

12V power will be better than 9V.

We are making a processing app thats synchronises video and movements, so the code is a bit long.

The problem might be because we are using curves to edit the animation, so the data is constantly updated from the curve (like every 20 ms or 100ms). Setting acceleration and deceleration make it more smooth, but not perfect.

Maybe it should be better to have few targets rather than updating the curve frequently, or add another curve that update acceleration/deceleration during time…

myPort.write(’#’);
myPort.write(0);
myPort.write(‘D’);
myPort.write(s1);
myPort.write(s2);
myPort.write(s3);
myPort.write(s4);
myPort.write(‘T’);
myPort.write(‘2’);
myPort.write(‘5’);
myPort.write(13);

Can you verify the actual serial string you output?
Note that the modifier T25 represents 25 milliseconds, which is not enough for a move.
You also need to change to EM0 (since EM1 has a built-in motion profile). Within EM0 (after firmware v368) you can also edit the position filter / count.

Changing to EM0 and about 15ms of continuous data makes it almost perfect.
I thought I did this test already before but it seems not.

Thanks for the help!

The next thing you can experiment with is the filter, which will likely smooth out the motion considerably (though there are some points / additional considerations to watch out for given that it’s taking an average of points).