Publicaciones

Contador de ascendente 0-9 y descendente 9-0 con Microcontrolador

Contador de ascendente 0-9 y descendente 9-0 con Microcontrolador

Aquí tenemos el ejemplo de contadores básico con microcontrolador de Microchip PIC216F84A y CCS C Compiler



CONTADOR ASCENDENTE
//INICIO//INICIO
#include <16f84a .h="">
#fuses xt,nowdt
#use delay(crystal=4m)
#define puertoa output_a
void main (){
set_tris_a(0x0);
int a;
while (true){
puertoa(a); a++;
if (a>9)
a=0;
delay_ms(500);
}
}
//FIN

CONTADOR DESCENDENTE

//INICIO
#include <16f84a .h="">
#fuses xt,nowdt
#use delay(crystal=4m)
#define puertoa output_a
void main (){
set_tris_a(0x0);
int a;
while (true){
for (a=9;a>0;a--)
{
puertoa(a);
delay_ms(500);
}
}
}
//FIN
Share this Article on :
 
d Copyright Electrónica Net Andino 2006 | Design by Net Andino | Published by Editor de Templates | Powered by Net Andino .