Introduction
Mind S3 is a stepper motor controller sold by RTA. We used these controllers in the R2D2 project, and we developed a managed library to control them.
Notes
The API is still a low level wrapper to the serial protocol. In the future we will develop a higher level interface.
Why is in Robotics4.NET?
Ok, we know that isn't that frequent to have MindS3 controllers to programs. Nevertheless, who knows? Anyway stepper motors are used in robots.
Example
A singleton pattern has been used to expose the interface. The following is a brief example.
Show
int res = MindS3CSWrapper.Wrapper._IndexRampInstr(07 , 121 , 156 , 09 , 15 , 31754 , 1 , b );
res = MindS3CSWrapper.Wrapper._RunRampInstr(3 , 210 , 140 , 10 , 1 , 18 , 1 , b);
res = MindS3CSWrapper.Wrapper._IndexStartStopInstr(8 ,188 , 122 , 02 ,1246 , 1 , b);
res = MindS3CSWrapper.Wrapper._RunStartStopInstr(2 , 133 , 176 , 22 , 1 ,1 ,b);