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 eldhose555

  1. E

    Problem with LCD in the digital thermometer project.

    you have to add the include file for pic (pic16f877a.h) after including htc.h file or add this code instead of nRBPU=0; OPTION_REG &=0x7F;
  2. E

    Problem with LCD in the digital thermometer project.

    enable internal pullup registers of portB will solve your problem add this code in main: nRBPU=0; hopes this will help you
  3. E

    [SOLVED] mikorC program not running on hardware

    enable internal pull-up and try..(OPTION register bit7) hope this will work.
  4. E

    MikroC & SD CARD & PIC18F4520

    you have to connect the E pin and RS to the microcontroller and R/w to ground.after writing command/data to the lcd data bus a pulse should be given on the E pin to transfer the command or data to lcd.if one row of lcd is with dark squares when u give the supply then its working, but the...
  5. E

    MikroC & SD CARD & PIC18F4520

    pls use this setting and try 1001 = Internal oscillator block, CLKO function on RA6; port function on RA7
  6. E

    [SOLVED] Help for Simple alarm system needed!!!

    remove the break and try. i think that may be the problem
  7. E

    Problems with channel up/down counter C code

    try this: remove or comment variable segment[] use PORTD=0xFF & ch; instead of PORTD=segment[ch];
  8. E

    Understanding AVR Timers and PWM

    dear Tahmid, thank u for this post..
  9. E

    Looking for information and codes on SPI interfacing

    Re: SPI interface both those devices will have a chip select or device select pin. by controlling the logic state on that pin, u can connect them on same SPI.. u should disable one device while communicating with other..
  10. E

    how to check signal input(pic16f627a)

    Try this: main() { CMCON = 0x07; //comparator must be turned off for digital i/o operation TRISA = 0x01; while(1) { start: while(PORTA.F0==1) { delay_ms(20000); while(PORTA.F0==1) { PORTA.F1=1; delay_ms(3000); PORTA.F1=0; while(PORTA.F0==1) { } goto start; } } { } } }
  11. E

    [SOLVED] VB6 plus mysql database

    u can check the serial sending part with hyperterminal program.send the values to serial port by manually typing the codes in hyperterminal and check whether the port and hardware is working.
  12. E

    power regulator efficiency

    For a (or any) circuit, the supply current should be greater than or equal to what the ckt needs for its proper working. this means ur regulator have the capacity to drive a circuit which needs 8A current.
  13. E

    analog signal to digital problem(program)

    hi, you should initialise the ADC module and read the value from the ADC result register (this is not present in your program given). also not specified about the microcontroller (if you are using it) and the compiler
  14. E

    Interface 89C51 with serial port

    You have to use USB to RS232 converter chips (eg:FT232 chip) to be connected with the microcontroller or use one which have an on chip usb port
  15. E

    Help with parallel port programming

    And I did forget to mention something. I had accidently interchanged the GND and LPT pin 9 connection. Could this have damaged the port ?? pls read this topic to test your port https://www.epanorama.net/circuits/parallel_output.html

Part and Inventory Search

Back
Top