Friday, 13 October 2017

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






No comments:

Post a Comment