Home > Articles > Programming > Java

This chapter is from the book

Uploading Map Data

The RCX brick is great for collecting real-world data, but it is not so good at displaying and analyzing that data. A PC is the best platform for this, so it's useful to be able to send data results back to the PC. For data transmission to take place there must be a program running on the RCX and a separate program running on the PC (Figure 11–5).

The following project creates a robot that will map the coordinates of objects it bumps into. The strategy of the robot is to store the coordinates in two arrays; one for x values and one for y values. Once it has encountered 10 objects the robot's movement should be stopped by pressing the Run button,

Figure 11–5 Basic communication with an RCX brick.

then the robot should be placed in front of the IR tower. When the PC side program is up and running, the user can press the View button to begin transmission. Once all data has been uploaded, the PC displays a simple approximation of the robot's trail.

NOTE

Theoretically this code will work on any robot using the Navigation interface (Trilobot, Tippy Senior, or Mozer). However, this code uses a total of 47 classes (displayed using verbose option of lejos.exe), which pushes the RCX to the limit. I was only able to use TimingNavigator without running out of memory.

 1. import josx.platform.rcx.*;
 2. import josx.platform.rcx.comm.*;
 3. import josx.robotics.*;
 4. import java.io.*;
 5. 
 6. class DataSender implements SensorListener { 
 7. 
 8.   Navigator robot;
 9.   static final byte ARRAY_SIZE = 10;
10.  public short [] xCoords;
11.  public short [] yCoords;
12.  byte count = 0;
13.
14.  public DataSender(Navigator robot) {
15.     this.robot = robot;
16.
17.     xCoords = new short [ARRAY_SIZE];
18.     yCoords = new short [ARRAY_SIZE];
19.
20.     Sensor.S2.addSensorListener(this);
21.  }
22.
23.   public static void main(String [] args) throws IOException {
24.   TimingNavigator robot = new TimingNavigator(Motor.C,
         Motor.A, 4.475f, 1.61f);
25.     robot.forward();
26.
27.     DataSender ds = new DataSender(robot);
28.     try{
29.       Button.RUN.waitForPressAndRelease();
30.       robot.stop(); 
31.       Button.VIEW.waitForPressAndRelease();
32.     }catch(InterruptedException ie){} 
33.
34.     // Send data: 
35.     RCXDataPort port = new RCXDataPort();
36.     DataOutputStream out = new DataOutput-
         Stream(port.getOutputStream());
37.     out.writeShort(0);
38.     out.writeShort(0);
39.     for(byte i=0;i<ARRAY_SIZE;++i) { 
40.       out.writeShort(ds.xCoords[i]); 
41.       out.writeShort(ds.yCoords[i]); 
42.     }
43.     out.flush(); 
44.  } 
45.
46.  /** Records the x, y position when bumper hits an object.*/
47.  public void stateChanged(Sensor bumper, int oldVal, intnewVal) {
48.     if(bumper.readBooleanValue() == true) {
49.       robot.stop(); 
50.       if(count < ARRAY_SIZE) { 
51.         xCoords[count] = (short)robot.getX();
52.         yCoords[count] = (short)robot.getY();
53.         ++count; 
54.       } 
55.       robot.travel(-20); 
56.       robot.rotate((float)(Math.random() * 180));
57.       robot.forward(); 
58.     } 
59.   } 
60 }

This code creates a Navigator object called robot and starts moving forward. A listener is added to the bumper sensor, so every time the robot comes into contact with an object it can react accordingly (Lines 49–61). The reaction of the robot is simply to record the coordinates of the collision, back up, and turn a random amount. The main() method contains the code to initialize the object, wait for the user to press the Run button, and wait for the user to press the View button. When the View button is pressed, it sends the data back to the PC.

Now that the robot code is complete we need some code on the PC side to receive the data and display it on the monitor. The code to do this is quite Chapter 11 RCX Communications brief considering it uses the Java Abstract Window Toolkit (AWT). To make things simple, this code begins waiting for input from the IR tower in the constructor. Once the data has been received it displays it in a window (Figure 11–6).

 1. import java.io.*;
 2. import pc.irtower.comm.*;
 3. import java.awt.*;
 4. import java.awt.event.*;
 5.  
 6. public class MapData extends Canvas{
 7.    int ARRAY_SIZE = 10;
 8.    short [] xCoords;
 9.    short [] yCoords;
10.
11.    public MapData() {
12.       xCoords = new short[ARRAY_SIZE];
13.       yCoords = new short[ARRAY_SIZE];
14.       PCDataPort port = null;
15.       try {
16.         port = new PCDataPort("COM2");
17.         DataInputStream in = new DataInputStream(port.getInputStream());
18.         for(int i=0;i<ARRAY_SIZE;++i) {
19.            xCoords[i] = in.readShort();
20.            System.out.println("x = " + xCoords[i]);
21.            yCoords[i] = in.readShort();
22.            System.out.println("y = " + yCoords[i]);
23.         }
24.       } catch(IOException ioe) {
25.          ioe.printStackTrace();
26.       }
27.   }
28.
29.   public static void main(String [] args) {
30.  
31.       Frame mainFrame = new Frame("Explorer Command Center");
32.       mainFrame.addWindowListener(new WindowAdapter() {
33.          public void windowClosing(WindowEvent e) {
34.            System.exit(0);
35.          }
36.       });
37.       mainFrame.setSize(400, 300);
38.       mainFrame.add(new MapData());
39.       mainFrame.setVisible(true);
40.  }
41.
42.  public void paint(Graphics g) {	 
43.     int height = this.getSize().height;	 
44.     int width = this.getSize().width;	 
45.     g.setColor(Color.orange);	 
46.     g.drawLine(width/2,0,width/2, height);
47.     g.drawLine(0,height/2, width, height/2);
48.     g.setColor(Color.black);	 
49.     for(int i=0;i<ARRAY_SIZE-1;++i) {	 
50.        g.drawLine(xCoords[i] + width/2, yCoords[i] + height/2,
51.        xCoords[i+1] + width/2, yCoords[i + 1]+height/2);
52.     }	 
53.  }	 
54. }	 

NOTE

Line 16 must specify the port to contact your IR tower (e.g., COM1 or USB).

Figure 11-6 PC display of map data

Most of the code is devoted to AWT display, but the interesting code for receiving data is found between Lines 15 and 28.>

To test this project out I used Tippy Senior (Chapter 8, "Navigation with Rotation Sensors"). First, let the robot wander around until it has hit at least 10 objects. Once this is done press the Run button to stop the motors and place the robot in front of the IR tower. Execute the PC program and the green light on the IR tower will turn on, indicating you can press View to start sending data. Once all the data has been uploaded it displays a map similar to Figure 11–6.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020