Mini UVC Disinfectant Sanitiser Stick
Mini UVC Disinfectant Sanitiser Stick
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.
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.
Emits UV-C light for 30 seconds to sanitise surfaces and objects.
Emits UV-C light continuously for extended sanitization and disinfection.
Allows users to set a custom timer for sanitization and disinfection.
| Auto-Off | The device automatically turns off when not in use to prevent accidental exposure to UV-C light. |
Indicates when the device is in operation or when the battery is low.
120mm x 25mm x 25mm (L x W x H)
60g
| UV-C LED Power | 1.5W |
| UV-C Wavelength | 254nm |
Rechargeable Li-ion battery
10C to 40C (50F to 104F)
-20C to 60C (-4F to 140F)
Complies with EU health and safety regulations
Meets EU regulations for restriction of hazardous substances
Meets US regulations for electromagnetic compatibility
| The Mini UVC Disinfectant Sanitiser Stick is ideal for various applications, including |
hospitals, clinics, medical offices
hotels, restaurants, gyms
schools, universities, daycare centers
homes, apartments, condos
The Mini UVC Disinfectant Sanitiser Stick comes with a 1-year limited warranty and dedicated customer support for any technical or operational issues.
Mini UVC Disinfectant Sanitiser Stick DocumentationOverviewThe 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 SpecificationsUVC Wavelength: 254nm
Power Consumption: 5V, 1A
Dimensions: 10cm x 2.5cm x 1.5cm
Weight: 50g
Operating Temperature: 10C to 40C
Certifications: CE, FCC, RoHSCommunication InterfaceThe Mini UVC Disinfectant Sanitiser Stick communicates via a standard USB interface.Programming Examples### Example 1: Arduino-based UVC Sanitiser ControlThis 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 Stickvoid 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 AutomationThis 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 IntegrationThis 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 StickWiFiClient 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.