📄 speedtest.java
字号:
import lejos.nxt.*;public class SpeedTest { static final int TOTALTIME = 60000; public static void main(String [] args) throws Exception { byte A = 0; LightSensor ls = new LightSensor(SensorPort.S3); UltrasonicSensor us = new UltrasonicSensor(SensorPort.S1); Motor.A.regulateSpeed(false); Motor.B.regulateSpeed(false); Motor.C.regulateSpeed(false); Motor.B.forward(); Motor.C.forward(); int iteration = 0; int startTime = (int)System.currentTimeMillis(); int totalTime = 0; int tacho = 0; int distVal=0; int lightVal=0; while(totalTime < TOTALTIME) { lightVal = ls.readValue(); distVal = us.getDistance(); tacho = Motor.B.getTachoCount(); int RN = (int)(Math.random() * 100) + 1; LCD.drawInt(tacho,0,0); LCD.drawInt((lightVal + distVal + tacho)*100/RN, 0, 1); LCD.drawInt(A, 0, 2); LCD.drawInt(iteration, 0, 4); if(iteration%10 == 0) LCD.refresh(); // Set motor speed for B and C to RN (Using Coast) Motor.B.setSpeed(RN); Motor.C.setSpeed(RN); if(RN > 50) ++A; if(RN < 50) --A; if(A<0) Motor.A.backward(); else Motor.A.forward(); totalTime = (int)System.currentTimeMillis() - startTime; iteration++; } LCD.drawInt(iteration, 0, 4); LCD.refresh(); Thread.sleep(10000); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -