Call of Work

by Partha Mondal in Circuits > Sensors

274 Views, 0 Favorites, 0 Comments

Call of Work

IMG_20200504_131209.jpg

Hi , sometimes it made more difficult to work from home. Working for 20 or 30 minutes we get bored . It is good to take a break for 2 minutes after work for 20 or 30 minutes. While taking rest we forgot about time to returned to work. So, this device will help you to back to work. For this reason I named my project "CALL OF WORK".This device will help you to maintain the time.

Supplies

To make this we need:

1. Buzzer 2.IR Sensor 3. Arduino Uno 4.Bread board 5. Double sided tape 6.Black tape 7.Connecting Wires 8.Pieces of cardboard paper 9.Knife

Cap Making

IMG_20200504_131605.jpg

Make a cap like this . That can be fitted on your laptop screen .

IMG_20200504_131701.jpg

Now fit the IR Sensor on the cap , look like this. This sensor sense that you are in front of laptop or not.

Circuit Connection

IMG_20200504_133849.jpg

1. Output from the IR Sensor connected to the digital pin no 6 . VCC to the 5 volt output of the arduino uno board and GND to the GND point of the arduino uno board.

2.Buzzer's positive terminal to the digital pin no. 8 of the arduino uno board and negative terminal to the GND of the arduino uno board.

Arduino Program :

IMG_20200504_134353.jpg

void setup()

{

pinMode(6,INPUT);

pinMode(8,OUTPUT);

Serial.begin(9600);

}

void loop()

{

if(digitalRead(6))

{

digitalWrite(8,LOW);

delay(20000);

digitalWrite(8,HIGH);

delay(5000);

}

if(!digitalRead(6))

{

digitalWrite(8,LOW);

delay(1000);

}

}

Conclution:

Make this easy project at home and don't lose your valuable time . Enjoy your "WORK FROM HOME" . Thank you,