Apuntes de Microcontroladores

Powered by Issuu
Publish for Free

viernes, 13 de diciembre de 2019

Examen Practico Alarma

#include<16f84.h>
#use delay(clock=4000000)
#use fast_io(A)
#use fast_io(B)
#byte port_a=5
#byte port_b=6

main()
{
   port_b=0;
   set_tris_a(0x1F);
   set_tris_b(0x00);
 
   while(1)
   {
      if(input(PIN_A0))
      {
         if(input(PIN_A1))
         {
            delay_ms(100);
            if(input(PIN_A0))
            {
               output_bit(PIN_B0,1);
            }
         }
         else
         {
            if(input(PIN_A2) || INPUT(PIN_A3) || INPUT(PIN_A4))
            {
               output_bit(PIN_B0,1);
            }
         }
      }
      else
      {
         output_bit(PIN_B0,0);
      }
   }
}

No hay comentarios:

Publicar un comentario