Click here to Skip to main content
15,885,366 members
Articles / Internet of Things
Article

Range finder scanner in C++

Rate me:
Please Sign up or sign in to vote.
4.00/5 (4 votes)
23 Jun 2017CPOL6 min read 6.8K   1  
This range finder scanner application is part of a series of how-to Internet of Things (IoT) code sample exercises using the Intel® IoT Developer Kit, Intel® Edison board, Intel® IoT Gateway, cloud platforms, APIs, and other technologies.

This article is for our sponsors at CodeProject. These articles are intended to provide you with information on products and services that we consider useful and of value to developers

Get access to the new Intel® IoT Developer Kit, a complete hardware and software solution that allows developers to create exciting new solutions with the Intel® Galileo and Intel® Edison boards. Visit the Intel® Developer Zone for IoT.

This range finder scanner application is part of a series of how-to Internet of Things (IoT) code sample exercises using the Intel® IoT Developer Kit, Intel® Edison board, Intel® IoT Gateway, cloud platforms, APIs, and other technologies.

From this exercise, developers will learn how to:

  • Connect the Intel® Edison board or Intel® IoT Gateway, computing platforms designed for prototyping and producing IoT and wearable computing products.
  • Interface with the Intel® Edison board or Arduino 101* (branded Genuino 101* outside the U.S.) board IO and sensor repository using MRAA and UPM from the Intel® IoT Developer Kit, a complete hardware and software solution to help developers explore the IoT and implement innovative projects.
  • Run these code samples in the Intel® System Studio IoT Edition (Eclipse* IDE for C/C++ and Java* development) for creating applications that interact with sensors and actuators, enabling a quick start for developing software for the Intel® Edison board or the Intel® Galileo board.
  • Set up a web application server to view range finder data using a web page served up directly from the Intel® Edison board or Intel® IoT Gateway.

What It Is

Using an Intel® Edison board or Intel® IoT Gateway, this project lets you create a range finding scanner that:

  • continuously checks the Grove* IR Distance Interrupter.
  • moves the stepper motor in a 360-degree circle.
  • can be accessed via a built-in web interface to view range finder data.

How It Works

As the stepper motor turns, it pauses to get readings from the Grove* IR Distance Interrupter.

These readings can be viewed on a web page served up directly from the Intel® Edison board or Intel® IoT Gateway.

Hardware requirements

Grove* Robotics Kit containing:

  1. Intel® Edison board with an Arduino* breakout board or Intel® IoT Gateway with Arduino 101* (branded Genuino 101* outside the U.S.) board.
  2. Grove Base Shield V2
  3. Grove IR Distance Interrupter
  4. Stepper Motor Controller & Stepper Motor

Software requirements

  1. Intel® System Studio (Eclipse IDE for C/C++ and Java* development)

How to set up

This sample is already one of the IoT examples included in Intel® System Studio. To start using it, follow these steps:

  1. From the main menu, select Intel® IoT > Import IoT Examples.
  2. Expand the tree view for C++ > How To Code Samples > Range Finder Scanner and click Import Example.
  3. Select your developer board from the selection window then select Next.
  4. Select Intel® IoT C/C++ project from the Select a project type window then click Next.
  5. Select Yocto from the Selct target OS dropdown menu then click Next.
  6. The next tab will ask for connection name and target name. If you do not know these click Search Target.
  7. Select your Edison from the dropdown list. Select OK.
  8. Your connection name and target name should be filled in. Select Finish.
  9. A new window will open for you and you will need to choose a name for your project and click Next.
  10. Your project source files will now be available on the on the upper left of your IDE by default.

Connecting the Grove* sensors

You need to have a Grove* Base Shield V2 connected to an Arduino 101* (branded Genuino 101* outside the U.S.) board compatible breakout board to plug all the Grove devices into the Grove Base Shield V2. Make sure you have the tiny VCC switch on the Grove Base Shield V2 set to 5V.

You need to power the Intel® Edison board or Arduino 101* (branded Genuino 101* outside the U.S.) board with the external power adapter that comes with your starter kit, or substitute an external 12V 1.5A power supply. You can also use an external battery, such as a 5V USB battery.

In addition, you need a breadboard and an extra 5V power supply to provide power to the stepper motor.

Note: You need a separate battery or power supply for the motor. You cannot use the same power supply for both the Intel® Edison board and the motor, so you need either 2 batteries or 2 power supplies in total.

  1. Plug the stepper motor controller into four pins (9, 10, 11, and 12) on the Arduino* breakout board. It also must be connected to ground (GND), to the 5V power coming from the Arduino* breakout board (VCC), and to the separate 5V power for the motor (VM).
  2. Plug one end of a Grove* cable into the Grove* IR Distance Interrupter, and connect the other end to the D2 port on the Grove* Base Shield V2.

Connecting your Intel® Edison board or Intel® IoT Gateway to Intel® System Studio

  1. On the Target SSH Connections tab, right-click your device and select Connect.

If prompted for the username and password, the username is root and the password is whatever you specified when configuring the Intel® Edison board.

Intel® IoT Gateway setup

You can run this example using an Intel® IoT Gateway connected to an Arduino 101* (branded Genuino 101* outside the U.S.) board.

Make sure your Intel® IoT Gateway is setup, by following the directions on the web site here:

https://software.intel.com/en-us/getting-started-with-intel-iot-gateways-and-iotdk

The Arduino 101* (branded Genuino 101* outside the U.S.) board needs to have the Firmata* firmware installed. If you have IMRAA installed on your gateway, this will be done automatically. Otherwise, install the StandardFirmata or ConfigurableFirmata sketch manually onto your Arduino 101* (branded Genuino 101* outside the U.S.) board.

Running the code on the Intel® Edison board or Intel® IoT Gateway

When you're ready to run the example, click Run at the top menu bar in Intel® System Studio.

This compiles the program using the Cross G++ Compiler, links it using the Cross G++ Linker, transfers the binary to the Intel® Edison board, and then executes it on the board itself.

After running the program, you should see output similar to the one in the image below.

Regenerating HTML and CSS

If you make any changes to either the index.html or styles.css file, you need to regenerate the .hex file used to serve up the assets via the built-in Crow* web server. For help using the shell script, go to this link:

how-to-run-the-shellscript.md

Viewing the range finder data

Range data is viewed using a single-page web interface served directly from the Intel® Edison board while the sample program is running.

The web server runs on port 3000, so if the Intel® Edison board or Intel® IoT Gateway is connected to Wi-Fi on 192.168.1.13, the address to browse to if you are on the same network is http://192.168.1.13:3000.

IMPORTANT NOTICE: This software is sample software. It is not designed or intended for use in any medical, life-saving or life-sustaining systems, transportation systems, nuclear systems, or for any other mission-critical application in which the failure of the system could lead to critical injury or death. The software may not be fully tested and may contain bugs or errors; it may not be intended or suitable for commercial release. No regulatory approvals for the software have been obtained, and therefore software may not be certified for use in certain countries or environments.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
You may know us for our processors. But we do so much more. Intel invents at the boundaries of technology to make amazing experiences possible for business and society, and for every person on Earth.

Harnessing the capability of the cloud, the ubiquity of the Internet of Things, the latest advances in memory and programmable solutions, and the promise of always-on 5G connectivity, Intel is disrupting industries and solving global challenges. Leading on policy, diversity, inclusion, education and sustainability, we create value for our stockholders, customers and society.
This is a Organisation

42 members

Comments and Discussions

 
-- There are no messages in this forum --