speedtest.java
来自「专业汽车级嵌入式操作系统OSEK的源代码」· Java 代码 · 共 54 行
JAVA
54 行
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 + =
减小字号Ctrl + -
显示快捷键?