我有一个 Finch 机器人,我从 finchrobot 网站下载适用于 Java Windows Eclipse 的 Finch 软件,给定的软件 javadocs 是 www.finchrobot.com/javadoc/index.html,完成所有设置后,现在我想向 Finch 硬件插入一些代码……
package Code;
import edu.cmu.ri.createlab.terk.robot.finch.Finch;
public class FinchTemplateFile
{
public static void main(final String[] args)
{
Finch myFinch = new Finch();
//for moving robot straight
myFinch.setWheelVelocities(255,255,1000);
myFinch.sleep(1000);
myFinch.stopWheels();
myFinch.quit();
System.exit(0);
}
}
这是代码工作正常,但现在我想通过使用转向功能转动我的机器人,但 www.finchrobot.com/javadoc/index.html Finch 类不包含任何转动功能,但在另一个 Finch API中包含转动功能他的 Finch 课。现在我如何将机器人旋转 90 度,这是我的问题。如何使用具有 turn 方法的 API?任何可用于此API 的 JAR 文件?
谢谢