Introduction: Arduino Nano: Ultrasonic Ranger(Ping) Distance I2C 2 X 16 LCD Display With Visuino
In this Instructable, I will show you how easy it is to connect Ultrasonic Sensor to Arduino and display the distance on a LCD Display.
Step 1: Components
- One Arduino compatible board (I use Arduino Nano, because I have one, but any other will be just fine)
- One Ultrasonic Ranger Sensor Module - I used HC-SR04, but US-015, or very much any other will also work
- One I2C 16x2 LCD Display (Back side of the LCD with the I2C adapter showed on Picture 2)
- One small Breadboard (Any breadboard can be used, or any other way to connect 3 wires together)
- 3 Female-Male (Red) jumper wires
- 6 Female-Female jumper wires
Step 2: Connect the LCD Module to the Arduino
- Connect Female-FemaleGround(Black wire), SDA(Green wire), and SCL(Yellow wire) to the LCD Module (Picture 1)
- Connect the Female end of a Female-MalePower(Red wire) to the VCC/Power pin of the LCD Module (Picture 1) , and leave the Male end unconnected
- Connect the other end of the Ground wire(Black wire) to Ground pin of the Arduino board(Picture 2)
- Connect the other end of the SDA wire(Green wire) to SDA/Analog pin 4 of the Arduino Nano board(Picture 2)
- Connect the other end of the SCL wire(Yellow wire) to SCL/Analog pin 5 of the Arduino Nano board(Picture 2)
- Connect another Female-Male Power wire(Red wire) to the 5V Power pin of the Arduino board(Picture 2), and leave the Male end unconnected
- Picture 3 shows where are the Ground, 5V Power, SDA/Analog pin 4, and SCL/Analog pin 5 pins of the Arduino Nano
Step 3: Connect the Ultrasonic Ranger to Arduino
- Connect Ground(Black wire), Power(Red wire), Trigger(Brown wire), and Echo(Purple wire) to the Ultrasonic Ranger Sensor Module (Picture 1)
- Connect the Male ends of the 3 Power wires(Red wires) - from the Display, the Ultrasonic Ranger Module, and the Arduino together as example with the help of a Breadboard (Picture 2) - In my case I used a small Breadboard
- Connect the other end of the Ground wire(Black wire) to Ground pin of the Arduino board(Picture 3)
- Connect the other end of the Trigger wire(Brown wire) to Digital pin 2 of the Arduino board(Picture 3)
- Connect the other end of the Echo wire(Purple wire) to Digital pin 3 of the Arduino board(Picture 3)
- Picture 4 shows in Red where are the Ground, Digital 2, and Digital 3 pins of the Arduino Nano(In Blue are shown the connections made in the previous step)
Step 4: Start Visuino, and Select the Arduino Board Type
To start programming the Arduino, you will need to have the Arduino IDE installed from here: http://www.arduino.cc/ .
Please be aware that there are some critical bugs in Arduino IDE 1.6.6.
Make sure that you install 1.6.7 or higher, otherwise this Instructable will not work!
The Visuino: https://www.visuino.com also needs to be installed.
Step 5: In Visuino: Add and Connect Ultrasonic Ranger Component
- Type "sonic" in the Filter box of the Component Toolbox then select the "Ultrasonic Ranger(Ping)" component (Picture 1), and drop it in the design area
- In the Object Inspector set the value of the "PauseTime" property of the UltrasonicRanger1 to 1000 (Picture 2) This will give 1 second period between the measurements, so the LCD display will not be updated too often
- Connect the "Ping(Trigger)" pin of the UltrasonicRanger1 component to the "Digital" input pin of the Digital[ 2 ] channel of the Arduino component (Picture 3)
- Connect the "Out" pin of the Digital[ 3 ] channel of the Arduino component to the "Echo" input pin of the UltrasonicRanger1 component (Picture 4)
Step 6: In Visuino: Add LCD Component, and Text Field in It
- Type "lcd" in the Filter box of the Component Toolbox then select the "Liquid Crystal Display (LCD) - I2C" component (Picture 1), and drop it in the design area
- Click on the "Tools" button (Picture 2) to open the "Elements" editor (Picture 3)
We will add a Text field with the description of the value:
- Add Text field for the Distance description text by select the "Text Field" in the right window of the "Elements" editor, and clicking on the "+" button on the left (Picture 3)
- In the Object Inspector set the "Initial Value" property of the element to "Distance:" (Picture 4) - This will specify the text to be displayed
Step 7: In Visuino: Add, and Setup Analog Value Element to Display the Distance
- Add Analog field for the Distance value by selecting the "Analog Field" in the right window of the "Elements" editor, and clicking on the "+" button on the left (Picture 1)
- In the Object Inspector set the "Precision" property of the element to "2" (Picture 2)
- In the Object Inspector set the "Row" property of the element to "1" (Picture 2) - This will specify that the field will be shown in the second row of the Display
- In the Object Inspector set the "Width" property of the element to "6" (Picture 2)
Step 8: In Visuino: Add, and Setup Text Element to Display the Units
- Add Text field for the Units text selecting the "Text Field" in the right window of the "Elements" editor, and clicking on the "+" button (Picture 1)
- In the Object Inspector set the "Column" property of the element to "7" (Picture 2)
- In the Object Inspector set the "Initial Value" property of the element to "CM" (Picture 3)
- In the Object Inspector set the "Row" property of the element to "1" (Picture 3)
- Close the Elements editor
Step 9: In Visuino: Connect the LCD Component
- Connect the "Out" pin of the UltrasonicRanger1 component (Picture 1) to the "In" pin of the "Elements.AnalogField1" element of the LiquidCrystalDisplay1 component (Picture 2)
- Connect the "Out" pin of the LiquidCrystalDisplay1 component to the to the "In" pin of the I2C channel of the Arduino component (Picture 3)
Step 10: Generate, Compile, and Upload the Arduino Code
- In Visuino, Press F9 or click on the button shown on Picture 1 to generate the Arduino code, and open the Arduino IDE
- In the Arduino IDE, click on the Upload button, to compile and upload the code (Picture 2)
Step 11: And Play...
Congratulations! You have completed the project.
Picture 1 shows the connected and powered up project. As you can see on the picture the Display will show the Distance to the nearest object from the Ultrasonic Ranger.
On Picture 2 you can see the complete Visuino diagram.
Also attached is the Visuino project, that I created for this Instructable. You can download and open it in Visuino: https://www.visuino.com
Attachments

Participated in the
Raspberry Pi Contest 2016
22 Comments
4 years ago
Lots of effort put into the instructable - thanks a mil! Especially with the Visuino component. I could not get sketch to get past the wire.h library issue. I exhausted research and trying everything Google threw at me - no success. I then did my own code. I also picked up an error that the purple and brown wire from the sensor must be turned around else sketch does not work. Could be that my own code has the "problem" :)
Either way - project is working well - thank you for your expertise and time!!!
4 years ago
Hi, M ai sorry that I have missed the message. Use the Formatted text component as example for better formatting the text.
Question 4 years ago
How to upload code in Android phone. Please anyone reply in 2 or 3 days please please
Answer 4 years ago
This is an Arduino project, not for Android phone. What are you trying to do?
Question 4 years ago on Step 7
Using version 7.8.2.290, cant find analog field in elements. Please help, thanks
4 years ago
Can you give me code arduino? Please!
7 years ago
#include <Visuino_LiquidCrystal_I2C.h>
bro there's a problem about this library. used other i2c libraries but still not working
Reply 6 years ago
I would check your install. I just had to reinstall my Arduino IDE and Windows 10 added a little confusion.
Reply 6 years ago
my dearest friend, could you send the library
Reply 6 years ago
It should be part of the install, but I have also uploaded it here:
www.mitov.com/Visuino_LiquidCrystal.zip
Reply 6 years ago
amigo el link quebro, podrias pasarme uno alterno en el q lo hayas subido porfavor? te lo agradeceria mucho
Reply 7 years ago
What is the problem? I use it all the time. At the moment I am in Cologne for a conference, but will be back in the office later in the week, and will be able to help you more if you have problems.
7 years ago
Hey Guy i have done the same project with the help of the above guidance. But by Compiling the program an error is coming about the wire.h file missing in the library, so plz anyone help me out for this it's urgent for as its one of my project.
so plz reply me fast as possible
Reply 7 years ago
This means that you probably have a bad Arduino IDE installation. The wire.h is part of the standard Arduino IDE Installation. What version of Visuino you use and what version of Arduino IDE ?
7 years ago
Nice. But Visuino is not freeware.
Reply 7 years ago
Thank you!
The Atmel processors and the Ultrasonic sensors are not free either :-( . The Atmel is also proprietary.
It is up to you to decide if something is worth paying or not ;-) .
And Visuino can be used for 5 minutes every time you run it for free which is more than enough for very much all the projects I posted and more ;-) .
So I am actually giving some small part of my hard work for free, while actually this is my only income, so it is up to you to decide if my work has any value. Unfortunately unless I make some money, I can't buy even food, and as I said, this is a full time job. I work on Visuino and the rest of my products ~100H a week, with only bathroom and sleep brakes. If it was free, it would be of the quality and the functionality of the Arduino IDE. You decide if you want something of the level of the Arduino IDE for free, or something of the level of Visuino for $9.99 ;-)
Reply 7 years ago
Sorry! Your work and your time have a very big value. Reading your instructable, means that I appreciate it. I was just amazed because most of the instructable are DIY and preferably low cost. I will give a look at this software; seems not bad.
P.S.: sensors can be free when you reuse old electronic. ;)
Again, please accept my apologies.
Reply 7 years ago
Thank you MonyCris, No problem, I hope that the $9.99 is not that high of a cost. I actually wanted to price it lower, but at that level the payment processors take most of the money :-( . I did a survey last year, and the lowest suggested price was $20, I decided to half it to make it as affordable as I can :-) . I am sorry for probably overreacting. I am trying my best to make it affordable for everyone ;-)
Enjoy :-)
7 years ago
I am interested in digital vernier cliper to send signal to pc. This project can be converted to send signal to pc.
Reply 7 years ago
Yes, it can easily be changed. Here is one such Instructable:
https://www.instructables.com/id/Arduino-Nano-Ultra...
I have more Instructables posted with more information on connection to PC ;-)