Arduino Project

Height Measurement

Course Introduction

This project uses an ultrasonic sensor, an Arduino, and a TM1637 7‑segment display to measure object height.

A button triggers the measurement, calculating height based on the fixed sensor position. The result is shown on the 7‑segment display with 0.1 cm accuracy, and detailed distance and height data are also sent to the serial monitor.

Note

If this is your first time working with an Arduino project, we recommend downloading and reviewing the basic materials first.

1.1 Install Arduino IDE(Important)
1.2 Introduction of Arduino IDE

Required Components

In this project, we need the following components:

SN

COMPONENT INTRODUCTION

QUANTITY

PURCHASE LINK

1

Arduino UNO R4 Minima

1

2

USB Type-C cable

1

×

3

Breadboard

1

4

Wires

Several

5

Ultrasonic Sensor Module

1

6

Button

1

7

4-Digit Segment Display Module

1

Wiring

height_measure_bb.png__PID:bf5938a1-a820-4704-8e5e-153d0b25a26d

Common Connections:

4-Digit Segment Display Module
CLK:
Connect to 3 on the Arduino.
DIO: Connect to 2 on the Arduino.
GND: Connect to breadboard’s negative power bus.
VCC: Connect to breadboard’s red power bus.

Button
Connect to breadboard’s negative power bus.
Connect to 4 on the Arduino.

Ultrasonic Sensor Module
Trig: Connect to 9 on the Arduino.
Echo: Connect to 10 on the Arduino.
GND: Connect to breadboard’s negative power bus.
VCC: Connect to breadboard’s red power bus.

Writing the Code

Note
You can copy this code into the Arduino IDE.
To install the library, use the Arduino Library Manager and search for TM1637Display and install it.
Don’t forget to select the board(Arduino UNO R4 Minima/WIFI) and the correct port before clicking the Upload button.


#include 

#define TRIG_PIN 9
#define ECHO_PIN 10
#define CLK 2
#define DIO 3
#define BUTTON_PIN 4

TM1637Display display(CLK, DIO);

const int sensorHeight = 15;  // Fixed sensor height (cm)
bool buttonState = HIGH;      // Current button state
bool lastButtonState = HIGH;  // Previous button state
unsigned long debounceDelay = 50; // Debounce time
unsigned long lastDebounceTime = 0;

void setup() {
  Serial.begin(9600);
  pinMode(TRIG_PIN, OUTPUT);
  pinMode(ECHO_PIN, INPUT);
  pinMode(BUTTON_PIN, INPUT_PULLUP);  // Button with pull-up input
  display.setBrightness(0x0f);
  display.showNumberDec(0, true);     // Initial display 0000
}

void loop() {
  int reading = digitalRead(BUTTON_PIN);

  // Button state change detection (debounce)
  if (reading != lastButtonState) {
    lastDebounceTime = millis();
  }

  if ((millis() - lastDebounceTime) > debounceDelay) {
    if (reading != buttonState) {
      buttonState = reading;
      // Button press detected
      if (buttonState == LOW) {
        measureHeight();
      }
    }
  }

  lastButtonState = reading;
}

void measureHeight() {
  // Trigger ultrasonic pulse
  digitalWrite(TRIG_PIN, LOW);
  delayMicroseconds(2);
  digitalWrite(TRIG_PIN, HIGH);
  delayMicroseconds(10);
  digitalWrite(TRIG_PIN, LOW);

  // Receive echo
  long duration = pulseIn(ECHO_PIN, HIGH);
  float distance = duration * 0.0343 / 2.0;
  float height = sensorHeight - distance;
  if (height < 0) height = 0;

  Serial.print("Distance: ");
  Serial.print(distance);
  Serial.print(" cm, Height: ");
  Serial.print(height);
  Serial.println(" cm");

  // Display on 7-segment display (accuracy 0.1cm)
  int displayHeight = (int)(height * 10);  // 12.3cm -> 123
  display.showNumberDecEx(displayHeight, 0b01000000, false); // Show with decimal point
}