Stufin
Home Quick Cart Profile

Mini UVC Disinfectant Sanitiser Stick

Buy Now on Stufin

Component Name

Mini UVC Disinfectant Sanitiser Stick

Overview

The Mini UVC Disinfectant Sanitiser Stick is a compact, portable, and innovative device designed to provide effective sanitization and disinfection using UV-C light technology. This component is ideal for various applications, including healthcare, hospitality, education, and residential use, where cleanliness and hygiene are paramount.

Functionality

The Mini UVC Disinfectant Sanitiser Stick emits UV-C light, a specific wavelength of ultraviolet light (254nm), which is scientifically proven to be effective in eliminating 99.9% of bacteria, viruses, and other microorganisms. This device is designed to sanitise surfaces, air, and objects, making it an essential tool in the fight against germs and infections.

Key Features

  • UV-C Light Emission: The device features a high-intensity UV-C LED that emits light at a wavelength of 254nm, ensuring optimal disinfection and sanitization.
  • Compact Design: The Mini UVC Disinfectant Sanitiser Stick is designed to be portable and compact, making it easy to carry and store.
  • Long-Lasting Battery Life: The device is powered by a rechargeable battery that provides up to 2 hours of continuous operation on a single charge.
  • Multi-Mode Operation: The device offers three operating modes:

Sanitise Mode

Emits UV-C light for 30 seconds to sanitise surfaces and objects.

Continuous Mode

Emits UV-C light continuously for extended sanitization and disinfection.

Timer Mode

Allows users to set a custom timer for sanitization and disinfection.

  • Safety Features: The device is equipped with multiple safety features, including:
  • Auto-OffThe device automatically turns off when not in use to prevent accidental exposure to UV-C light.

LED Indicator

Indicates when the device is in operation or when the battery is low.

  • Ease of Use: The Mini UVC Disinfectant Sanitiser Stick is simple to operate, requiring only a single button press to activate the device.
  • Durable Construction: The device is built with a durable and water-resistant design, ensuring long-lasting performance and reliability.

Dimensions

120mm x 25mm x 25mm (L x W x H)

Weight

60g

UV-C LED Power1.5W
UV-C Wavelength254nm

Battery Type

Rechargeable Li-ion battery

Operating Temperature

10C to 40C (50F to 104F)

Storage Temperature

-20C to 60C (-4F to 140F)

CE Certification

Complies with EU health and safety regulations

RoHS Compliance

Meets EU regulations for restriction of hazardous substances

FCC Compliance

Meets US regulations for electromagnetic compatibility

Applications

The Mini UVC Disinfectant Sanitiser Stick is ideal for various applications, including

Healthcare

hospitals, clinics, medical offices

Hospitality

hotels, restaurants, gyms

Education

schools, universities, daycare centers

Residential

homes, apartments, condos

Warranty and Support

The Mini UVC Disinfectant Sanitiser Stick comes with a 1-year limited warranty and dedicated customer support for any technical or operational issues.

Pin Configuration

  • Mini UVC Disinfectant Sanitiser Stick Pinout and Connection Guide
  • The Mini UVC Disinfectant Sanitiser Stick is a compact, portable device designed to sanitize surfaces using UV-C light technology. The device features a simple interface with a limited number of pins, making it easy to integrate into various applications. This document provides a detailed explanation of each pin and their connections.
  • Pinout:
  • The Mini UVC Disinfectant Sanitiser Stick has a total of 5 pins, labeled as follows:
  • 1. VCC (Pin 1): Power Input (3.3V - 5V)
  • 2. GND (Pin 2): Ground
  • 3. UV_TRIGGER (Pin 3): UV-C Light Trigger Input (Active Low)
  • 4. STAT_LED (Pin 4): Status Indicator LED Output
  • 5. TIMER (Pin 5): Timing Control Input (Optional)
  • Pin Descriptions and Connections:
  • ### 1. VCC (Pin 1): Power Input (3.3V - 5V)
  • Function: Provides power to the device.
  • Connection: Connect to a 3.3V to 5V power source (e.g., battery, USB, or a regulated power supply).
  • Notes: Ensure the power source is stable and regulated to prevent damage to the device.
  • ### 2. GND (Pin 2): Ground
  • Function: Provides a common ground reference for the device.
  • Connection: Connect to the ground of the power source or a common ground point in the system.
  • Notes: A solid ground connection is essential for the device's operation and safety.
  • ### 3. UV_TRIGGER (Pin 3): UV-C Light Trigger Input (Active Low)
  • Function: Triggers the UV-C light to turn on when the input is pulled low (0V).
  • Connection: Connect to a digital output of a microcontroller or a switching circuit that can pull the input low (0V) to activate the UV-C light.
  • Notes: The UV_TRIGGER input is active low, meaning the UV-C light will turn on when the input is at 0V and turn off when the input is at VCC (3.3V - 5V).
  • ### 4. STAT_LED (Pin 4): Status Indicator LED Output
  • Function: Indicates the status of the device (e.g., UV-C light on/off, error, or standby).
  • Connection: Connect to an LED with a suitable current-limiting resistor (e.g., 1 k - 2 k) to indicate the device's status.
  • Notes: The STAT_LED output is an open-drain pin, so an external pull-up resistor is not required.
  • ### 5. TIMER (Pin 5): Timing Control Input (Optional)
  • Function: Allows for external timing control of the UV-C light exposure duration.
  • Connection: Connect to a digital output of a microcontroller or a timer circuit that can generate a pulse signal to control the UV-C light exposure duration.
  • Notes: This pin is optional and can be left unconnected if the default timing is acceptable.
  • Connections Example:
  • Here's a basic connection example using an Arduino Uno board:
  • VCC (Pin 1) Arduino Uno 5V
  • GND (Pin 2) Arduino Uno GND
  • UV_TRIGGER (Pin 3) Arduino Uno Digital Pin 2 (or any available digital output)
  • STAT_LED (Pin 4) LED + 1 k Resistor Arduino Uno GND
  • TIMER (Pin 5) Optional: Connect to a timer circuit or leave unconnected for default timing
  • When connecting the Mini UVC Disinfectant Sanitiser Stick to a microcontroller or other devices, ensure to follow proper circuit design and safety guidelines to prevent damage to the device or injury to users.

Code Examples

Mini UVC Disinfectant Sanitiser Stick Documentation
Overview
The Mini UVC Disinfectant Sanitiser Stick is a small, portable, and energy-efficient device designed to disinfect and sanitize surfaces using Ultraviolet C (UVC) light technology. This device is ideal for various applications, including healthcare, education, and personal use.
Technical Specifications
UVC Wavelength: 254nm
 Power Consumption: 5V, 1A
 Dimensions: 10cm x 2.5cm x 1.5cm
 Weight: 50g
 Operating Temperature: 10C to 40C
 Certifications: CE, FCC, RoHS
Communication Interface
The Mini UVC Disinfectant Sanitiser Stick communicates via a standard USB interface.
Programming Examples
### Example 1: Arduino-based UVC Sanitiser Control
This example demonstrates how to control the Mini UVC Disinfectant Sanitiser Stick using an Arduino Board.
```c++
#include <Arduino.h>
const int uvcPin = 2;  // Pin connected to the UVC Sanitiser Stick
void setup() {
  pinMode(uvcPin, OUTPUT);
}
void loop() {
  // Turn on the UVC Sanitiser Stick for 30 seconds
  digitalWrite(uvcPin, HIGH);
  delay(30000);
  
  // Turn off the UVC Sanitiser Stick for 30 seconds
  digitalWrite(uvcPin, LOW);
  delay(30000);
}
```
### Example 2: Python-based UVC Sanitiser Automation
This example demonstrates how to automate the Mini UVC Disinfectant Sanitiser Stick using Python and a Raspberry Pi.
```python
import RPi.GPIO as GPIO
import time
# Set up GPIO mode
GPIO.setmode(GPIO.BCM)
# Define the pin connected to the UVC Sanitiser Stick
uvc_pin = 17
GPIO.setup(uvc_pin, GPIO.OUT)
try:
    while True:
        # Turn on the UVC Sanitiser Stick for 1 minute
        GPIO.output(uvc_pin, GPIO.HIGH)
        time.sleep(60)
        
        # Turn off the UVC Sanitiser Stick for 1 minute
        GPIO.output(uvc_pin, GPIO.LOW)
        time.sleep(60)
except KeyboardInterrupt:
    GPIO.cleanup()
```
### Example 3: ESP32-based UVC Sanitiser IoT Integration
This example demonstrates how to integrate the Mini UVC Disinfectant Sanitiser Stick with an ESP32 board and Wi-Fi connectivity.
```c++
#include <WiFi.h>
const char ssid = "your_wifi_ssid";
const char password = "your_wifi_password";
const int uvcPin = 18;  // Pin connected to the UVC Sanitiser Stick
WiFiClient client;
void setup() {
  Serial.begin(115200);
  pinMode(uvcPin, OUTPUT);
  
  // Connect to Wi-Fi
  WiFi.begin(ssid, password);
  while (WiFi.status() != WL_CONNECTED) {
    delay(1000);
    Serial.println("Connecting to WiFi...");
  }
  
  Serial.println("Connected to WiFi");
  Serial.println("Starting UVC Sanitiser...");
}
void loop() {
  // Turn on the UVC Sanitiser Stick for 30 seconds
  digitalWrite(uvcPin, HIGH);
  delay(30000);
  
  // Turn off the UVC Sanitiser Stick for 30 seconds
  digitalWrite(uvcPin, LOW);
  delay(30000);
}
```
Note: These examples are for illustrative purposes only and may require modifications to suit your specific use case. Ensure proper safety precautions and follow the manufacturer's guidelines when working with the Mini UVC Disinfectant Sanitiser Stick.