กลับไปหน้ารวมไฟล์
fighting-corona-multichoice-automatic-hand-sanitizer-ee2914-en.md

Contactless Fluid Actuation: Automatic Hand Sanitizer

Automatic washing machine helps people who do not need to touch the wash bottle to prevent corona virus infection.

This hand washing machine has an outstanding function:

During global pandemics, physically pressing the same plastic soap bottle plunger that 500 other infected humans have pressed fundamentally accelerates the virus transmission vector. The Multichoice Automatic Hand Sanitizer destroys this problem entirely! Utilizing a non-contact Ultrasonic Distance Sensor (HC-SR04), the Arduino creates an invisible acoustic tripwire. When a human hand breaks the threshold boundary, the system instantly engages a localized fluid propulsion mechanism, spraying highly concentrated medical alcohol explicitly onto the user's palms without a single atom of physical hardware contact!

schematic

The High-Speed Acoustic Tripwire (HC-SR04)

An IR sensor might get confused by aggressive sunlight reflections; Ultrasonic Sound waves establish a rigid mathematical tracking curtain.

  1. The Arduino physically screams a 40,000Hz acoustic burst across the Trig pin.
  2. It aggressively waits for the echo to violently slam back into the Echo microphone.
  3. If the math calculates the reflection occurred < 10 Centimeters away, the Human Hand has broken the containment zone!
// Execute the acoustic ping command!
digitalWrite(TRIG_PIN, LOW); delayMicroseconds(2);
digitalWrite(TRIG_PIN, HIGH); delayMicroseconds(10);
digitalWrite(TRIG_PIN, LOW);

long duration = pulseIn(ECHO_PIN, HIGH); // Track the sound bounce latency!
int distance = duration * 0.034 / 2; // Convert raw microsecond acoustics into Centimeters!

if (distance < 10 && distance > 2) { 
  // Hand perfectly centered under the nozzle! FIRE THE PUMP!
  digitalWrite(WATER_PUMP_RELAY, HIGH);
  delay(500); // 500 Milliseconds of pure alcohol burst!
  digitalWrite(WATER_PUMP_RELAY, LOW); 
  delay(3000); // Mandatory 3-second lockout so it doesn't spray forever if they leave their hand!
}

The 5V Submersible Pump Driver

The Arduino cannot output physical mechanical force directly.

  • The chemical reservoir utilizes a tiny 5V Submersible DC Water Pump or a miniature diaphragm pump!
  • Pumping fluid requires aggressive current! The Arduino Digital Pin must route through a TIP120 Transistor or a 5V Relay Module.
  • When the tripwire triggers, the base of the transistor slams Open, allowing raw 5V battery power to violently drive the hydraulic impeller instantly and accurately.

Sterilization Hardware Requirements

  • Arduino Nano / Uno (Nano easily hides behind the fluid reservoir enclosure).
  • HC-SR04 Ultrasonic Sensor Matrix (Provides absolute centimeter-perfect environmental awareness).
  • 5V DC Liquid Pump with accompanying medical-grade silicone tubing.
  • Transistor (TIP120 / 2N2222) or Solid State Relay with a flyback diode (1N4007) installed parallel to the pump to prevent catastrophic voltage spikes when the motor stops immediately!
  • A sealed container filled precisely with 70% Isopropyl Alcohol or sanitizing gel.

I hope that you like this project. And subscribe my youtube channel.

Thanks for your watching!!!

ข้อมูล Frontmatter ดั้งเดิม

apps:
  - "1x Arduino IDE"
author: "herolivechannel"
category: "Wearables, Health & Fitness"
components:
  - "1x Ultrasonic Sensor - HC-SR04 (Generic)"
  - "1x Hot glue gun (generic)"
  - "1x Arduino UNO"
  - "1x Jumper wires (generic)"
  - "1x RC servo MG996R"
  - "1x Drill, Screwdriver"
description: "Bio-containment mechanics! Execute completely touch-less hydraulic fluid routing by integrating an intricate ultrasonic spatial array with a dedicated submersible liquid pump, violently deploying calculated alcohol sanitization bursts to human surfaces."
difficulty: "Beginner"
documentationLinks: []
downloadableFiles:
  - "https://github.com/HeroLive/ArduinoHeroLive/tree/master/Auto-Santinizer"
  - "https://projects.arduinocontent.cc/0e948c5f-a0c4-4779-aa1f-fd13e377c833.ino"
  - "https://projects.arduinocontent.cc/0e948c5f-a0c4-4779-aa1f-fd13e377c833.ino"
  - "https://github.com/HeroLive/ArduinoHeroLive/tree/master/Auto-Santinizer"
encryptedPayload: "U2FsdGVkX1+cq1IORjUOr5p8oXmTwAJwbkL2suPvg7p9TsJLOtC1sKuRqVzAQXmi368wUODYisAHLR56QQaMxIhrNvlLz5Ro1qmejZPWsZo="
heroImage: "https://cdn.jsdelivr.net/gh/bigboxthailand/arduino-assets@main/images/projects/fighting-corona-multichoice-automatic-hand-sanitizer-ee2914_cover.jpg"
lang: "en"
likes: 5
passwordHash: "48c907608e838b21a6fef65d3141103eba80462954e998d558ac77791b20e331"
price: 1120
seoDescription: "Build an automatic hand sanitizer using arduino uno, ultrasonic sensor module, and rc servo motor to fight Corona."
tags:
  - "arduino"
  - "rc servo"
  - "corona fighting"
title: "Fighting Corona: Multichoice automatic hand sanitizer"
tools: []
videoLinks:
  - "https://www.youtube.com/embed/tJXqyEcYfQ8"
views: 19394