pilottester.java

来自「专业汽车级嵌入式操作系统OSEK的源代码」· Java 代码 · 共 72 行

JAVA
72
字号
import lejos.nxt.*;import lejos.navigation.*;public class PilotTester{		static Pilot robot = new Pilot(2.1f,4.4f,Motor.A, Motor.C,true);		public static void main(String[] args ) 	{		try {			Button.ENTER.waitForPressAndRelease();		} catch (InterruptedException ie) {}		Pilot robot = new Pilot(2.1f,4.4f,Motor.A, Motor.C,false);		robot.setSpeed(500);		robot.forward();		pause(1000);		robot.stop();		showCount(0);		robot.backward();		pause(1000);		robot.stop();		showCount(1);		robot.travel(10);		while(robot.isMoving())Thread.yield();		showCount(2);		robot.travel(-10,true);		showCount(3);		for(int i = 0; i<4; i++)		{			robot.rotate(90,true);		}		showCount(4);		for(int i = 0; i<4; i++)		{			robot.rotate(-90);			while(robot.isMoving())Thread.yield();		}		showCount(5);		robot.steer(-50,180);		while(robot.isMoving())Thread.yield();		robot.steer(-50,-180);		while(robot.isMoving())Thread.yield();		showCount(6);		robot.steer(50,180,true);		robot.steer(50, -180, true);		showCount(7);		robot.travel(10,true);		pause(500);		robot.travel(-10,true);		robot.rotate(720);		while(Button.readButtons()==0)Thread.yield();	}		  public static void pause(int time)  {  	try{ Thread.sleep(time);  }  	catch(InterruptedException e){}  }	public static void showCount(int i)	{		LCD.drawInt(robot.getLeftCount(),0,i);		LCD.drawInt(robot.getRightCount(),7,i);		LCD.refresh();	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?