Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by grabik

  1. G

    interrupt routine hanging pic

    Try void interrupt isr () { if(INTF) { INTF=0; GIE=0; WriteByteToEE(TotalRunTime,0x0B); GIE=1; } } I thing that problem couse long time need for writing to eeprom. Try move WriteByteToEE to main.
  2. G

    optical quadrature decoder algorithm for motor feedback

    optical quadrature encoder Look on this page http://www.sxlist.com/techref/microchip/qenc.htm in my opinion this is most efficient routine for interfacing quadrature encoder. http://www.mcselec.com/index.php?option=com_content&task=view&id=79&Itemid=57
  3. G

    Suggest to pic microcontroller for washing machine ...

    microcontroller washer machin
  4. G

    Help me design a weight detector for a water filling system

    Re: Weight Detector RS flow sensor 1330 pulses/L stock No 256-225
  5. G

    How does the timer0 interrupt work on PIC16f876a

    /****************************************************/ /* Example code for using timer0 on a 16f876a /* Just sets up an timer and toggles a port /****************************************************/ /******************************************************/ /* Calculate preload value for timer...
  6. G

    PIC Programmer Controller - PICSTARTER +

    Re: PIC START PLUS FOUND I change 78s40 with icl7660,and my PCB has some mistake.
  7. G

    C Driver for LCD 16X1 help please

    maybe you to get idea void lcd_puts(const char * s) { LCD_RS = 1; poz=home position; while(*s) lcd_write(*s++); poz=poz+one poz;// or poz++; if(poz> end of first row poz && poz< home poz of second row){ poz=second row home position; lcd_goto(poz); } if(poz>end of second row){...
  8. G

    UART source code in Hi-tech C!

    putrs1usart #include <pic.h> void putrs1USART(const char *data); void putrsUSART(const char *data); void putByteUSART(unsigned char data); unsigned char a=33,b=0,udata; main() { SPBRG = 12; // 19200 baud @ 4MHz TXSTA = 0x24; // setup USART transmit RCSTA = 0x90; // setup USART...
  9. G

    PIC Programmer Controller - PICSTARTER +

    Re: PIC START PLUS FOUND I built picstarter(clon of pic start plus) and found that it can not program correct some pics (16c72,16c73A and some 16fxxx).

Part and Inventory Search

Back
Top