HomeGovt SchemesHow to make automatic hand sanitizer

How to make automatic hand sanitizer

 

How to make automatic hand sanitizer 

Automatic hand sanitizer: এই প্রকল্পে আমরা আরডুইনো (Arduino) এবং আল্ট্রাসোনিক সেন্সর ব্যবহার করে স্বয়ংক্রিয় হ্যান্ড স্যানিটাইজার তৈরি করব। যেমন এই মুহুর্তে আমাদের বাড়িতে, অফিস, ট্র্যাভেল যানবাহন ইত্যাদির যেকোন জায়গায় স্যানিটাইজার দরকার। যেমনটি আমরা সকলেই জানি এই চরম সময়ে এটি সবার পক্ষে কার্যকর হতে পারে।

In this project, we will create an automatic hand sanitizer using Arduino and ultrasonic sensors. As of right now, we need sanitizer anywhere in our home, office, travel vehicle, etc. As we all know it can be effective for everyone at this extreme time.


Material required to make automatic hand sanitizers:-

  1. Arduino Uno
  2. Ultrasonic Sensor
  3. Water pump 9v
  4. Battery
  5. Wires
  6. Sanitizer
  7. Plastic box

Circuit Diagram:-


Arduino Coding:-

int duration_front=0;
long distance_front=0;
void setup() {
// put your setup code here, to run once:

pinMode(2,OUTPUT);
pinMode(3,INPUT);
pinMode(7,OUTPUT);

Serial.begin(9600);
}

void loop() {

digitalWrite(2, HIGH);
delayMicroseconds(10);
digitalWrite(2, LOW);
delayMicroseconds(2);
duration_front= pulseIn(3,HIGH);
distance_front=duration_front*0.034/2;
Serial.println(distance_front);

if(distance_front<=10)
{

digitalWrite(7,HIGH);

}

else
{
digitalWrite(7,LOW);
}

}


আমাদের লেখা আপনার কেমন লাগছে ও আপনার যদি কোন প্রশ্ন থাকে তবে নিচে কমেন্ট করে জানান । আপনার বন্ধুদের কাছে পোস্টটি পৌঁছে দিতে দয়া করে শেয়ার করুন । বিজ্ঞান বিষয়ে আরও পোস্ট পড়তে আমাদের ফেসবুক পেজে লাইক করুন । পুরো পোস্ট টি পড়ার জন্য আপনাকে অনেক ধন্যবাদ ।

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -

Most Popular