Stufin
Home Quick Cart Profile

Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor

Buy Now on Stufin

Component Name

Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor

Description

The Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor is a cutting-edge IoT device designed to provide a convenient and hygienic way to dispense hand sanitizers. This device ensures a touchless experience, reducing the risk of germ transmission and promoting a healthier environment.

Functionality

The Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor is equipped with an advanced infrared motion sensor that detects hand movement, triggering the dispensing of a predetermined amount of hand sanitizer. The device operates automatically, eliminating the need for manual operation.

Key Features

  • Touchless Dispensing: The device features a touchless design, ensuring a germ-free experience for users. The infrared motion sensor detects hand movement, dispensing the sanitizer without the need for physical contact.
  • Advanced IR Motion Sensor: The high-sensitivity IR motion sensor provides accurate and reliable hand detection, minimizing false triggers and ensuring efficient dispenser operation.
  • Adjustable Dispense Volume: The device allows customization of the dispense volume, enabling users to set the desired amount of hand sanitizer dispensed per use.
  • Large Capacity: The device features a spacious internal tank, allowing for extended periods of use before refilling is required.
  • Low-Level Indication: A built-in low-level indicator alerts users when the hand sanitizer level is running low, ensuring timely refills.
  • Battery-Operated: The device is powered by rechargeable batteries, eliminating the need for wired connections and providing greater flexibility in its placement.
  • Compact Design: The Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor features a sleek, compact design, making it suitable for placement on tables, counters, or desks.
  • Easy Refill and Maintenance: The device features a convenient, easy-to-access refill opening, simplifying the process of refilling the hand sanitizer tank.
  • Wall-Mountable Option: The device comes with an optional wall-mount kit, allowing for secure and space-saving installation.

Power Source

Rechargeable batteries (included)

Battery Life

Up to 6 months (dependent on usage)

Dispense Volume

Adjustable (default0.5ml, 1ml, 2ml)

Tank Capacity

500ml

Sensor Range

5-10 cm

Operating Temperature

5C to 40C (41F to 104F)

Dimensions

120mm (W) x 150mm (H) x 70mm (D)

Weight

250g

CE Mark

Complies with EU health, safety, and environmental protection standards

FCC Compliance

Meets Federal Communications Commission regulations for electromagnetic compatibility

RoHS Compliance

Meets Restriction of Hazardous Substances directives for environmental sustainability

Pin Configuration

  • Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor Pinout Documentation
  • The Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor is a compact, innovative device designed to provide a touchless sanitizing experience. This documentation outlines the pin configuration and connection guidelines for the device.
  • Pin Configuration:
  • The device has a total of 6 pins, labeled as follows:
  • 1. VCC (Pin 1)
  • Function: Power Supply (Positive Voltage)
  • Description: Connect to a 5V DC power source (e.g., USB port, battery, or power adapter)
  • Recommended wire color: Red
  • 2. GND (Pin 2)
  • Function: Ground (Negative Voltage)
  • Description: Connect to the ground terminal of the power source
  • Recommended wire color: Black or Blue
  • 3. IR OUT (Pin 3)
  • Function: Infrared Motion Sensor Output
  • Description: Connect to a microcontroller or dedicated sensor input to detect hand movements
  • Recommended wire color: Yellow or Orange
  • 4. SDA (Pin 4)
  • Function: I2C Bus Data Line
  • Description: Connect to the SDA pin of a microcontroller or I2C bus slave device
  • Recommended wire color: White or Grey
  • 5. SCL (Pin 5)
  • Function: I2C Bus Clock Line
  • Description: Connect to the SCL pin of a microcontroller or I2C bus slave device
  • Recommended wire color: White or Grey
  • 6. PUMP (Pin 6)
  • Function: Sanitizer Pump Control
  • Description: Connect to the control input of the sanitizer pump or an relay module
  • Recommended wire color: Green or Blue
  • Connection Structure:
  • To connect the Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor, follow these steps:
  • Step 1: Power Connection
  • Connect the VCC (Pin 1) to a 5V DC power source (e.g., USB port, battery, or power adapter) using a red wire.
  • Connect the GND (Pin 2) to the ground terminal of the power source using a black or blue wire.
  • Step 2: IR Motion Sensor Connection
  • Connect the IR OUT (Pin 3) to a microcontroller or dedicated sensor input using a yellow or orange wire.
  • Step 3: I2C Bus Connection (Optional)
  • If using the I2C bus functionality, connect the SDA (Pin 4) to the SDA pin of a microcontroller or I2C bus slave device using a white or grey wire.
  • Connect the SCL (Pin 5) to the SCL pin of a microcontroller or I2C bus slave device using a white or grey wire.
  • Step 4: Sanitizer Pump Control Connection
  • Connect the PUMP (Pin 6) to the control input of the sanitizer pump or an relay module using a green or blue wire.
  • Important Notes:
  • Ensure proper voltage and polarity when connecting the power pins (VCC and GND) to avoid damaging the device.
  • When using the I2C bus, ensure the SDA and SCL pins are connected correctly to avoid bus conflicts or data corruption.
  • The IR OUT pin is an open-drain output and may require a pull-up resistor when connected to a microcontroller or other logic-level input.
  • By following these connection guidelines, you can successfully integrate the Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor into your project, enabling a convenient and hygienic sanitizing experience.

Code Examples

Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor
Overview
The Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor is an innovative IoT component designed to provide a convenient and hygienic way to dispense hand sanitizer in various settings, such as offices, hospitals, restaurants, and homes. This device utilizes an IR motion sensor to detect hand proximity, triggering a precise amount of sanitizer to be dispensed, eliminating the need for manual contact.
Technical Specifications
Microcontroller: Arduino compatible
 Power Supply: 5V DC, 1A
 IR Motion Sensor: Vishay VL53L0X
 Sanitizer Pump: DC 5V, 1A
 Communication Protocol: UART, I2C
 Dimensions: 120mm x 80mm x 150mm
Functionality
1. Hand detection using IR motion sensor
2. Automatic dispenser of sanitizer upon hand detection
3. Adjustable dispenser volume and speed
Code Examples
### Example 1: Basic Dispenser Control using Arduino
In this example, we will demonstrate how to use the Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor using an Arduino Uno board.
Hardware Requirements
Arduino Uno board
 Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor
 Breadboard and jumper wires
Code
```cpp
#include <Arduino.h>
#define DISPENSER_PIN 2 // Pin connected to dispenser pump
#define IR_SENSOR_PIN 3 // Pin connected to IR motion sensor
void setup() {
  pinMode(DISPENSER_PIN, OUTPUT);
  pinMode(IR_SENSOR_PIN, INPUT);
}
void loop() {
  int sensorState = digitalRead(IR_SENSOR_PIN);
  if (sensorState == HIGH) {
    // Hand detected, dispense sanitizer
    digitalWrite(DISPENSER_PIN, HIGH);
    delay(500); // Dispense for 0.5 seconds
    digitalWrite(DISPENSER_PIN, LOW);
  }
  delay(50); // Check sensor state every 50ms
}
```
### Example 2: Integrating with a ESP32 Board and Wi-Fi Connectivity
In this example, we will demonstrate how to integrate the Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor with an ESP32 board, enabling Wi-Fi connectivity and remote monitoring.
Hardware Requirements
ESP32 board
 Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor
 Breadboard and jumper wires
 Wi-Fi router
Code
```cpp
#include <WiFi.h>
#include <Arduino.h>
#define DISPENSER_PIN 2 // Pin connected to dispenser pump
#define IR_SENSOR_PIN 3 // Pin connected to IR motion sensor
#define WIFI_SSID "your_wifi_ssid"
#define WIFI_PASSWORD "your_wifi_password"
WiFiServer server(80);
void setup() {
  pinMode(DISPENSER_PIN, OUTPUT);
  pinMode(IR_SENSOR_PIN, INPUT);
  
  // Connect to Wi-Fi
  WiFi.begin(WIFI_SSID, WIFI_PASSWORD);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
  Serial.println("Connected to WiFi");
  server.begin();
}
void loop() {
  int sensorState = digitalRead(IR_SENSOR_PIN);
  if (sensorState == HIGH) {
    // Hand detected, dispense sanitizer
    digitalWrite(DISPENSER_PIN, HIGH);
    delay(500); // Dispense for 0.5 seconds
    digitalWrite(DISPENSER_PIN, LOW);
    
    // Send notification to remote server or mobile app
    WiFiClient client = server.available();
    client.println("Dispenser activated!");
  }
  delay(50); // Check sensor state every 50ms
}
```
These examples demonstrate the basic functionality of the Automatic Table Top Touchless Sanitizer Dispenser with IR Motion Sensor. You can modify and expand upon these examples to suit your specific use cases and applications.