Wednesday, 25 October 2017

Automated Closing Box Motion Detector

GROUP MEMBERS


  • SHAHRUL FITRI BIN AHMAD SUHAIMI (01DIP14F2041)
  • MOHD RIZAN BIN MOHD KAMAL (01DIS14F2031)
  • SUVENDREN RAO A/L SIVA (01DIP14F2037)



SYNOPSIS
This device is used to store valueable or important items for security purposes. This Security Box is programmed to close if the motion detector is triggered.

HARDWARE
DC 3 Volt Motor
PIR  Motion Sensor
SK 40C Board
PIC16F877A
Project Board

SOFTWARE
  1. MPLAP IDE 
  2. Proteus 8 Professional
CIRCUIT DIAGRAM

IMAGES




VIDEO

CONCLUSION
In conclusion, this project is useful in certain scenarios. This project can mainly be used in museums and other security related fields. Thus, this is a project that will help users for security purposes.

Wednesday, 18 October 2017

Automatic Wiper Sensor

GROUP MEMBERS

MUHAMMAD MUIZZUDDIN BIN MAZLI (01DIP15F1055)
MUHAMAD AQIF DANISH BIN MOHAMAD DAUD (01DIP15F1051)
IZUWAN BIN ISMAIL (01DIP15F1043)

SYNOPSIS

Wiper kereta adalah alat yang sangat penting ketika cuaca hujan untuk sesebuah kenderaan. Orang ramai tidak lagi perlu menekan wiper secara manual dengan adanya Sistem Wiper Automatik Sensor ini.

LIST OF HARDWARE AND SOFTWARE

HARDWARE :


  1. DC Motor
  2. Project Board
  3. PIC16F877A
  4. Motor Driver L293D
  5. Jumper Wire
  6. SK40C Board
  7. Programmer

SOFTWARE :

  1. MPLAP IDE (32 bit)
  2. Proteus 8 Professional
CIRCUIT DIAGRAM




CODING

#include<htc.h>
void delay(unsigned long);

__CONFIG (0x3F3A);

#define LED     RD1
#define MTR1    RD2
#define MTR2    RD3


#define sen1    RD6 //High sensor


void main(void)
{
    TRISD=0b11110000;
    PORTD=0b00000000;
LED=1;
delay(5);
LED=1;
delay(5);
LED=1;
delay(5);
LED=1;
delay(5);
LED=1;
delay(5);

while(1)
{

//if(sw1==1)
//    {
//    goto here;
//    }

//if(sw2==1)
//{

//}

//here;
    if(sen1==0)
    {
        MTR1=1;    //On motor
        MTR2=0;
    }
    else
    {
        MTR1=0;    //Off motor
        MTR2=0;
    }
}
}
void delay(unsigned long)
{
unsigned char i;
for(i=0xDE;i!=0;i--)
{
unsigned char j;
for(j=0x50;j!=0;j--)
{
unsigned char k;
for(k=0xC;k!=0;k--)
{
}
}
}

}

CONCLUSION 
Automatik wiper ini akan memudahkan manusia dengan tidak lagi menekan suis wiper secara manual.

VIDEO 
 
 




HOME FAN DETECTOR


HOME FAN DETECTOR

Group's member

Mohammad Akmal Hakim B Noor Said (01DNS14F2021)
Nurul Syahidah Bt Robia (01DIP15F1013)
Nurul Syazwani Bt Mohd Yazid (01DIP15F1034)

Synopsis

To detect the movement of people in the house.

Hardware


  1. Dc motor
  2. Motor driver
  3. Pic micro controller PIC16F877A 
  4. PIR motion sensor
Software

  1. Protues 8 Professional
  2. MPLAB IDE v8.83
Circuit diagram



Coding

#include<htc.h>

void delay (unsigned long); __CONFIG(0x3F3A);
#define Motion_sensor RA0
#define Motor RC2
void main (void)

{

TRISA = 1;

TRISC = 0;

PORTCbits.RC2 = 0;






if (Motion_sensor == 1)

{

PORTCbits.RC2 = 1; delay(2);

}



else PORTCbits.RC2 = 0; delay(2);

}



void delay(unsigned long)

{

unsigned char i;

for (i=0xDE; i!=0; i--)

{

unsigned char j;

for (j=0x50; j!=0; j--)

{

unsigned char k; for (k=0xC; k!=0; k--)
{

}

}

}

}

Video


Tuesday, 17 October 2017

FIRE ALARM WITH WATER SPRINKLER SYSTEM

SHOTIKA A/P BOON ME (01DIP15F1079)
SOMPORN A/P SET (01DIP15F1022)
CUCKTHIMA A/P WAT (01DIP15F1018)

SYNOPSIS:
This system is specific to blind and deaf people. It will help these people to escape form the fire.

List of hardware and software:

Hardware:
1.       Buzzer
2.       Led
3.       DC motor
4.       Switch

Software:
1.       Proteus 8 Professional

CIRCUIT DIAGRAM:



GAMBAR SEBENAR:





VIDEO:


Sunday, 15 October 2017

Ampaian Automatik

Group Members :
Muhammad Zulhilmi bin Kamaruddin (01DIP15F1072)
Noor Nadia binti Barhulin (01DIP15F1045)
Nurul Adilah binti Mohd Asri (01DIP15F1057)
Nur Azalifah binti Muhammad Anuar (01DIP15F1042)


Sinopsis
People often forget to lift the suspension of clothing during the day rain. For household, sometimes they forget to pick up their clothes when it gets dry. When raining they want to pick up the clothes but it was wet. This project can make the household pick up their clothes easily. The household just need to press the switch and the clothes from outside the house will enter the house. This project is to use Microcontroller PIC16F877A to install all program that will give instructions to conduct the system properly. This part needs DC motor to convert electrical power into mechanical power for retrieve-in all the clothes.

List of hardware
- Dc motor
- Pic microcontroller PIC16F877A
- Dc supplier
- Motor driver L293D

List of software
- Proteus 8 Professional
- MPLAB IDE v8.83

Video

Circuit Diagram


Coding
#include<htc.h>
__CONFIG (0x3F3A);
#define SW1     RB0
#define SW2     RB1
#define MOTOR_1 RD0
#define MOTOR_2 RD1
#define led1    RB7

void main()
{
void clockwise();
void counterclockwise();
void stopmotor();
TRISB = 0b00000011;
PORTB = 0b00000000;
TRISD = 0b00000000;
PORTD = 0b00000000;
SW1=0;
SW2=0;
MOTOR_1=0;
MOTOR_2=0;

while(1)
       {
    if (SW1==0)
    {
    counterclockwise();  
}
    else if(SW1==1)
    {
if(SW2==1)
{
    stopmotor();
}
    }

if(SW2==0)
{
clockwise();
}
}
}
void clockwise()
{
MOTOR_1=0;
MOTOR_2=1;
led1=1;
}
void counterclockwise()
{
MOTOR_1=1;
MOTOR_2=0;
led1=1;
}
void stopmotor()
{
MOTOR_1=0;
MOTOR_2=0;
led1=0;
}

Conclusion
In conclusion it can be said that this project will help many people out there. Therefore this project does not consist a lot of money. 

Friday, 13 October 2017

AUTOMATED LOCKING SYSTEM

GROUP MEMBERS

ASYRAFULLAH BIN ATIKULLAH (01DIP15F1053)
MUHD FIQRI BIN MOHD AZMAN (01DIP15F1069)
AMIRUL AZHAR BIN MOHD HANAPI (01DIP15F1044)

SYNOPSIS

Pengisar telur merupakan satu alat yang akan mengisar telur mengikut kelajuan yang ditetapkan sendiri oleh pengguna. Contohnya, pengguna boleh menetapkan kelajuan sama ada perlahan,sederhana atau laju.

LIST OF HARDWARE AND SOFTWARE

HARDWARE :


  1. DC Motor
  2. Project Board
  3. PIC16F877A
  4. Motor Driver L293D
  5. Jumper Wire
  6. SK40C Board
  7. Programmer

SOFTWARE :

  1. MPLAP IDE (32 bit)
  2. Proteus 8 Professional
CODING

#include<htc.h>
void delay(unsigned long);
void forward(void);
void reverse(void); void stop(void);

  CONFIG (0x3F3A);

#define sw1      RB0
#define sw2      RB1
#define MOTOR_2  RB4
#define MOTOR_1  RB5
#define PWM      RC2

//--------------   WRITE YOUR PROGRAM HERE   ----------------------------



void main()
{





while(1)
{




TRISB=0b00000011; PORTB=0b00000000;

TRISC=0b00000000; PORTC=0b00000000;



if(sw1==0&&sw2==1)         //press sw1, move clockwise
{
forward();
}

if(sw1==1&&sw2==0)         //press sw2, move counter clockwise
{
reverse();
}


else
{
stop();                           //stop the motor
}
}
}

void forward(void)
{
MOTOR_1=0; MOTOR_2=1; PWM=1;
}




void reverse(void)
{
MOTOR_1=1; MOTOR_2=0; PWM=1;
}

void stop(void)
{
MOTOR_1=0; MOTOR_2=0; PWM=0;
}

void delay(unsigned long)
{
unsigned char i;
for (i=0xDE;i!=0;i--)
{


Lecturer Signature : Name:
Date: Time:
unsigned char j;
for (j=0x50;j!=0;j--)
{
unsigned char k;
for (k=0xC;k!=0;k--)
{
}
}
}
}

VIDEO

Group Member
AHMAD LUQMAN BIN AHMAD ROSLI                                              01DIP15F1064
MUHAMMAD NAJIB BIN CHE NORAZMAN                                       01DIP15F1070
MOHAMAD HAFIZ HAZIMI BIN YAZIT                                               01DIP15F1062

Synopsis
the project that we are working on is pc opener. the function the project is enabling user open the laptop by clicking on the switch . 

     1)List of hardware, software and components

Hardware
i.                    DC motor
ii.                  Microcontroller – PIC16F877A

Software
i.                    MPlab version 8.3
ii.                  Hi-Tech C compiler version 2.3
iii.                Proteus 8 Professional

2) The circuit diagram for this project.


3) Gambar sambungan litar  



4)  Video 



PENGISAR TELUR MOTOR DC

GROUP MEMBERS

NURUL SYIFA BINTI HASBULLAH (01DIP15F1071)
TAN SEIW YING (01DIS15F2033)
ARIFAH AHMAD (01DIP15F1046)
HUSZNA IZZATIE BINTI HAIRUL SHAMSUL (01DIP15F1041)

SYNOPSIS

Pengisar telur merupakan satu alat yang akan mengisar telur mengikut kelajuan yang ditetapkan sendiri oleh pengguna. Contohnya, pengguna boleh menetapkan kelajuan sama ada perlahan,sederhana atau laju.

LIST OF HARDWARE AND SOFTWARE

HARDWARE :

  1.  LED
  2. PIC16F877A
  3. Relay
  4. Power Supply Circuit
  5. Transistor
  6. Resistor
  7. Capasitor
  8. Slot Battery
  9. Battery
  10. Switch
  11. Motor DC

SOFTWARE :

  1. MPLAP IDE (32 bit)
  2. Proteus 8 Professional
CIRCUIT DIAGRAM FOR THIS PROJECT




CODING


#include<htc.h>
void delay(unsigned long);
#define _XTAL_FREQ 20000000 

__CONFIG  (0x3F3A);

   
#define SW1             RB7
#define button_reset    RB6
#define     MOTOR    RC7



void main(void)
{


TRISB=0b11000000;
PORTB=0b00000000;

TRISC=0b00000000;
PORTC=0b00000000;


while(1)
{
if (( SW1== 1 )&&(button_reset == 0 ))
{
if( SW1 == 1 )
{
MOTOR = 1;
}
}

else if (( SW1== 1 )&&(button_reset == 1 ))
{
if( SW1 == 1 )
{
MOTOR = 0;
}
}
}
}

PICTURES & VIDEO






Wednesday, 11 October 2017

AUTOMATIC CURTAIN USING LIGHT SENSOR

Group Member
JECKSON ANAK DIAN                                              01DIP15F1036
TOH QI QI                                                                    01DIP15F1063
MUHAMMAD SHAMIZAN BIN KAMARUDIN      01DIP15F1011

Synopsis
Nowdays, the weather in sun in malaysia is very hot and burn our skin. When reach noon people will use curtain to prevent the sunlight from going inside their house.This project can make the household to open or close the curtain automatically.This project is to use Microcontroller PIC16F877A to install all program that will give instructions to conduct the system properly and some part of hardware such as DC motor and Light Sensor 

     1)List of hardware, software and components

Hardware
i.                    DC motor
ii.                  Microcontroller – PIC16F877A
iii.                External Resistor
iv.                 Light Sensor

Software
i.                    MPlab version 8.3
ii.                  Hi-Tech C compiler version 2.3
iii.                Proteus 8 Professional

2) The circuit diagram for this project.
3) Codding of Project
4)Structure of Project 


 


           


           

           

           


5)Video of Project