home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 21 / IOPROG_21.ISO / COMMON / LISTC.ZIP / timer.c < prev   
Encoding:
C/C++ Source or Header  |  1998-02-11  |  261 b   |  16 lines

  1. /* fa lampeggiare un led su PB0 */
  2. #include <pic1684.h>
  3. #include "libxpic.c"
  4.  
  5. void main ()
  6. {
  7.   inizializza();
  8.   while (1)
  9.   {
  10.     PORTB=1;
  11.     timeraspetta(4,38);  /* prescaler a 2^(4+1) e timer a 38 */
  12.     PORTB=0;
  13.     timeraspetta(4,38);
  14.   }
  15. }
  16.