UV Based Disinfection Bot For Environmental Protection Fron Covid 19

Published Aug 30, 2021
 10 hours to build
 Beginner

Frequent disinfection has become today's need. The problem with which we are dealing is excessive use of resources to disinfect large surfaces. UV light is strong enough to kill the COVID-19 virus. In order to disinfect large areas, UV is one of the best alternative we have. All the liquid based sanitizers contain minimum 70% alcohol and this alcohol may hamper the shelf life after frequent use. So here is a low cost, efficient and durable solution to counter the problem which we are facing!

display image

Components Used

Arduino UNO
Arduino UNO
1
AK9753 IR sensor
AK9753 is a low power and compact IR (infrared) sensor module.
2
L293D Driver
L293D Driver
1
Metal Chasis for a Mini Robot Rover
Robotics Kits Anodized Aluminum Metal Chasis for a Mini Robot Rover
1
DC Gearbox Motor
Adafruit Accessories DC Gearbox Motor - TT Motor - 200RPM - 3 to 6VDC
4
Connecting Wire Jumper Wires
Connecting Wire Breadboard wires
25
12VDC Adapters Power Supply
Wall Mount AC Adapters POWER SUPPLY 12VDC MEDIC GRADE US EU UK
1
Wheel for DC Gearbox Motors
Adafruit Accessories Skinny Wheel for TT DC Gearbox Motors
4
UV - C light
Ultra Violet Type C light is able to take germicidal actions. The Wavelength of UVC light varies from 200nm-280nm. UVC light is used in many medical instruments, treatments, UVC is used for water purification. Thus UVC plays an important role in environmental protection. Typically to kill COVID 19 Virus, the wavelength needed is 254.8nm. There are various manufacturers of UV-C lights.
1
Description

UV Disinfection Robot For COVID-19

  • Problem statement

What are we dealing with here ?

I. Excessive use of resources to disinfect / sanitize large areas frequently.

II. Difficulty in disinfecting/sanitizing porous objects, electronic appliances, etc.

Frequent disinfection has become todays need due to the pandemic. The large areas where people gather in groups are needed to disinfected frequently. Using liquid based sanitizers frequently lead to excessive use of resource. Also there are some bad people who mix water in sanitizers to increase its volume and thus selling it to make extra profit. There is no way for common man to distinguish between original and faulty sanitizer. Also there are some objects whose shelf life may get hampered due to alcohol present in liquid sanitizers. The alcohol based sanitizers cannot be used to disinfect electrical switches, appliances, etc. as alcohol may cause any fire situation.

  • Solution UV(Ultra violet) Light is the solution.

I. Ultraviolet (UV) light :

A. form of electromagnetic radiation

B. wavelength from 10 nm to 400 nm.

II. Types of UV :

A. UV-A  B. UV-B  C. UV-C

The UV-C light is used for the germicidal action, medical use, etc. As evident by multiple research studies and reports, when biological organisms are exposed to deep UV light in the range of 200 nm to 300 nm it is absorbed by DNA, RNA and proteins. Absorption by proteins can lead to rupture of cell walls and death of the organism. Absorption by DNA or RNA (specifically by thymine bases) is known to cause inactivation of the DNA or RNA double helix strands through the formation of thymine dimers. If enough of these dimers are created in DNA, the DNA replication process is disrupted, and the cell cannot replicate. The UV-C wavelength varies from 200nm to 280nm. Typically to kill COVID virus 254.8nm UV light is required.

  • BUT… There is a Glitch

Over exposure of UV light can be very harmful. Exposing human body towards UV light can cause many diseases like to the various body parts. If human body is exposed to UV for longer period it can cause acute and chronic harmful effects on the eye, skin, etc. So while BOT is disinfecting a large area it is mandatory that no living being gets exposed to UV light. To encounter this PIR motion sensors can be installed on robot. If any motion is detected the UV light will get automatically turned off.

Putting it all together considering the possible risks I have developed an Automated UV Disinfection BOT. It uses a very basic working principle. It works on the principle of line follower. The Line Follower Robot is a basic robot that follows a specific path indicated by a line (usually a black line on a light colored surface) having some particular width. When robot is placed on the fixed path, it follows the path by detecting the line. The robot direction of motion depends on the two sensors outputs. When the two sensors are on the line of path, robot moves forward. If the left sensor moves away from the line, robot moves towards right. Similarly, if right sensor moves away from the path, robot moves towards its left. Whenever robot moves away from its path it is detected by the IR sensor.

 

 Presentation : https://docs.google.com/presentation/d/1yM2IMUBl2tGJJG-5t858M0mNfLZqA5Hn/edit?usp=sharing&ouid=107848231721151884706&rtpof=true&sd=true

Photos Of Robot : https://drive.google.com/file/d/1DS4MlcrcnJ6-pNuFwFhmEKNocuOovJtT/view?usp=sharing

Code 
#include<reg51.h>
sbit mot1=P2^0;
sbit mot2=P2^1;
sbit mot3=P2^2;
sbit mot4=P2^3;

sbit s_left=P2^6;
sbit s_right=P2^7;

void forward (void);
void backward (void);
void left (void);
void right (void);

void forward (void)
{
  mot1=0;
	mot2=1;
	mot3=1;
	mot4=0;
}
void backward (void)
{
  mot1=0;
	mot2=1;
	mot3=0;
	mot4=1;
}
void left (void)
{
  mot1=0;
	mot2=1;
	mot3=0;
	mot4=0;
}
void right (void)
{
  mot1=0;
	mot2=0;
	mot3=1;
	mot4=0;
}
void stop (void)
{
  mot1=0;
	mot2=0;
	mot3=0;
	mot4=0;
}



void main()
{
	s_left=1;
	s_right=1;
	while(1)
	{ 
	 if(s_left==0 && s_right==0)
	 {
		 forward();
	 }
	 else if(s_left==1 && s_right==1)
	 {
		 stop();
	 }
	 else if(s_left==0 && s_right==1)
	 {
		 left();
	 }
	 else if(s_left==1 && s_right==0)
	 {
		 right();
	 }
 }
}

Thank You

Codes
Comments
Ad