Welcome to Hackster!
Hackster is a community dedicated to learning hardware, from beginner to pro. Join us, it's free!
Philip Ushijima
Published

Fun and Creative Way to Demo the HC-SR04

With a Windows tablet, Arduino, and HC-SR04, you can create a graphical caliper to show the distance.

BeginnerProtip30 minutes7,043

Things used in this project

Hardware components

Arduino UNO
Arduino UNO
×1
Ultrasonic Sensor - HC-SR04 (Generic)
Ultrasonic Sensor - HC-SR04 (Generic)
×1
Windows Tablet
×1

Software apps and online services

GEMstudio Pro

Story

Read more

Schematics

Standard connection to HC-SR04

Code

Arduino Code

Arduino
Reading value from the HC-SR-04, and sending the value to the PC
#include <NewPing.h>                                                      #include <AmuletLCD.h>


#define TRIGGER_PIN  8  // Arduino pin tied to trigger pin on the ultrasonic sensor.
#define ECHO_PIN     7  // Arduino pin tied to echo pin on the ultrasonic sensor.
#define MAX_DISTANCE 200 // Maximum distance we want to ping for (in centimeters). Maximum sensor distance is rated at 400-500cm.
#define VDP_SIZE 32
//Virtual Dual Port memory used for communicating with Amulet Display 
uint8_t AmuletBytes[VDP_SIZE]  = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
byte hexValue;
NewPing sonar(TRIGGER_PIN, ECHO_PIN, MAX_DISTANCE); 
// NewPing setup of pins and maximum distance.

AmuletLCD myModule;
void setup() {
 //start communication with Amulet Display at default baud         
 myModule.begin(115200);
 //register our local buffer with Amulet state machine
 myModule.setBytePointer(AmuletBytes,VDP_SIZE); 
}
void loop() {
  hexValue =  byte(sonar.ping_cm());  
	myModule.setByte(0, hexValue);
	delay(200);
 }
//This method automatically gets called if there is any serial data available
//http://www.arduino.cc/en/Tutorial/SerialEvent
void serialEvent() {
   myModule.serialEvent();  //send any incoming data to the Amulet state machine
}

Credits

Philip Ushijima
4 projects • 11 followers
Contact

Comments

Please log in or sign up to comment.