import lejos.nxt.*;
@author
public class USPingTest
{
public static void main( String[] args)
{
LCD.drawString(" USPing",0,0);
Button.waitForPress();
LCD.clear();
UltrasonicSensor sonar = new UltrasonicSensor(SensorPort.S3);
int[] distances = new int[8];
int col = 0;
boolean more = true;
while(more)
{
sonar.ping();
Sound.pause(30);
sonar.getDistances(distances);
for(int i = 0; i<distances.length;i++)
{
LCD.drawInt(distances[i], 4, 4*col,i);
}
col ++;
if(col >4 )
{
more = Button.waitForPress()<8;
col = 0;
}
}
}
}