1. Led Intermitente (PIC C Compiler)

1. Led Intermitente (PIC C Compiler)


 Diagrama de Circuito

Diseño PCB
 

 Vista 3D


Código para el Pic

  1. #include <16f628A.h>                        //Pic a utilizar
  2. #fuses XT,NOWDT,NOPROTECT   //Ordenes para el programador
  3. #use delay (clock=8M))                     //Frecuencia del oscilador
  4. #use standard_io(a)                           //Manejo del puertoA
  5. void main()
  6. {
  7.    while(TRUE)
  8.    {
  9.       output_high(PIN_A0);               //Led ON   
  10.       delay_ms(500);                          //Retardo 500ms
  11.       output_low(PIN_A0);                //Led OFF
  12.       delay_ms(500);                          //Retardo 500ms
  13.       }
  14. }
Circuito montado en Protoboard
 

Para obtener el código y la simulación en Proteus haz clip sobre descargar.


Compartir en Google Plus

About habacuc.electronics

This is a short description in the author block about the author. You edit it by entering text in the "Biographical Info" field in the user admin panel.
    Comentario Blogger
    Comentario Facebook