滑杆驱动
函数/作用 参数/返回值/说明
SetPrismatic(int port, int pos)
驱动滑杆上的滑块运行到指定的位置
端口有效范围为91~120
位置有效范围为0至不同滑杆的最远位置
参数
int port:滑杆的端口
int pos:滑块的位置
返回值

示例
SetPrismatic(91, 35)
设置91端口的滑杆移动到35的位置
SetPrismatics(string args, int time)
驱动多个滑杆的滑块在指定的时间内运行到指定的位置
滑杆的滑块在指定的时间内平滑地运行到指定的位置
参数
string args:字符串型式逗号分隔的滑杆参数,形式为”int port1, int pos1, int port2, int pos2, …, int portN, int posN”
参数中 的port与pos必须成对出现
int time:滑杆的滑块运行到指定位置的时间
返回值

示例
SetPrismatics(“91, 5, 92, 10”, 2000)
设置端口91、91的滑杆的滑块在2秒钟内分别运行到5、10的位置