timer

2 Digit 99 Seconds Timer

2 Digit 99 Seconds Timer

2 Digit Count Down Timer is a utility Count Down timer project for upto 99 seconds of countdown time.  This project can find many uses in your shack and home.  The relay output remains on during the Count Down period, allowing you to interface load or alarm that you want to keep it on for

2 Digit 99 Seconds Timer Read More »

Relay Timer with PIC16F628

Relay Timer with PIC16F628

Here is 0 to 99 minutes relay timer using PIC16F628 microcontroller and 16 character LCD display. The microcontroller is PIC16F628A running at 4.0 MHz clock using an external crystal. An HD44780 based 16×2 character LCD is the main display unit of the project where you can watch and set the timer duration using tact switch

Relay Timer with PIC16F628 Read More »

Timer 0 mode timer For CSS Compiler

  // Generator frequency 100 Hz with Timer0 For Pic16f877 // //#include “D:\MICRO_PICC_Group\timer\timer_0\timer_0_100hz.h” #include <16F877.h> #device adc=8 #FUSES NOWDT,XT //No Watch Dog Timer #use delay(clock=4000000) int1 time; #int_RTCC void RTCC_isr(void) { output_toggle(pin_b0); /* time =!time; if(time==1){ output_high(pin_b0); } if(time==0){ output_low(pin_b0); }*/ set_timer0(236); } void main() { setup_adc_ports(NO_ANALOGS); setup_adc(ADC_OFF); setup_psp(PSP_DISABLED); setup_spi(SPI_SS_DISABLED); setup_timer_0(RTCC_INTERNAL|RTCC_DIV_256); setup_timer_1(T1_DISABLED); setup_timer_2(T2_DISABLED,0,1); enable_interrupts(INT_RTCC); enable_interrupts(GLOBAL);

Timer 0 mode timer For CSS Compiler Read More »