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 Stas Mamaischi

  1. S

    LCD without using __delay library

    it's very interesting idea to use timer as a delay function
  2. S

    LCD without using __delay library

    when i use 7 segment display this problem disappear, because there i don't use delay library . Is a curiosity for me to solve this problem .
  3. S

    LCD without using __delay library

    I sow that when i put function display_LCD in interrupt , then i create this problem. I try to make a function delay in program . void msdelay(unsigned int time) { unsigned int i,j; for(i=0;i<time;i++) for(j=0;j<2;j++); } but problem has not disappeared - - - Updated - - - about...
  4. S

    LCD without using __delay library

    but this problem i sow on osciloscope in real time . i use this library for interfacing LCD void msdelay(unsigned int itime) { unsigned int i,j; for(i=0;i<itime;i++) for(j=0;j<2;j++); } void command() //comand functie definita { RA0=0; RA1=0; RA2=1; msdelay(1)...
  5. S

    LCD without using __delay library

    void LCD_D7() { LCD_D7 = 1; //Make D7th bit of LCD as i/p RA2 = 1; //EN RA0 = 0; //RS RA1 = 1; //RW while(LCD_D7){ //read busy flag again and again till it becomes 0 RA2 = 0; //Enable H->L RA2 = 1; } } result it there
  6. S

    LCD without using __delay library

    Hi everyone. Can someone explain or show me example how i can interfacing LCd without using __delay library . Because __delays generate in my project the signal delay time that I do not need. I attach picture of the problem .
  7. S

    Generate limited frequency. need help.

    I try to use a timer , but does not receive how must be.
  8. S

    Generate limited frequency. need help.

    Hi. Can anyoane tell me how i can generate limited frequency between 310-630 rpm ? If i have 310-630 rpm in 0.2 second . Thank you forward . I use pic16f886 . TRISB = 0x00; PORTB =0x00; T1CKPS1 = 1; T1ckps0 = 0; //prescale 4; T1OSCEN = 0; TMR1CS = 0; GIE = 1; PEIE = 1; TMR1IE =1 ; TMR1ON =1...
  9. S

    [PIC] How I can generate pulses ?

    #define _XTAL_FREQ 5000000 // Main function void main(void) { TRISC2 = 0; // Make CCP1 pin as output CCP1CON = 0x0C; // Configure CCP1 module in PWM mode PR2 = 0xFF; T2CON = 0x01; // SetPWMDutyCycle(0); T2CON |= 0x04; }...
  10. S

    [PIC] How I can generate pulses ?

    i calculate : rpm in frequency : 310/60=~5 hz ; 630/60=10.5=~11hz t=0.2 sec => freq=5 #define _XTAL_FREQ 5000000 // Main function void main(void) { TRISC2 = 0; // Make CCP1 pin as output CCP1CON = 0x0C; // Configure CCP1 module in PWM mode PR2 = 0xFF...
  11. S

    [PIC] How I can generate pulses ?

    I am a beginner in programming and microcontrollers but I would like to generate pulses with pic 16f886 to 310-630 rpm in the period 0.2 second. Can help me ? . Thank you forward.

Part and Inventory Search

Back
Top