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 kelvinmanoj

  1. K

    Ringing effect in 5V supply

    you can use 0.3E/1A ferriet bead, with 10uf & 0.1uf capacitor at both ends of bead and ground the another terminal of capacitor. this works fine for me.
  2. K

    need ARM 7 Registers

    Dear friends, I am planning to start learning ARM 7 (LPC21xx) microcontroller and need a complete reference manual with explanation of all the register. especially CAN registers. and also with example programs. thank you..
  3. K

    help to design wireless cherger

    hello friends... i want to design a wireless charger of 6v/1A output.... please help me out for the circuit design.. i'v tried inductive coupling to glow small led.. but its not working... i gave 20v/900A AC for primary coil and in secondary coil i just connected one LED but LED glows only when...
  4. K

    digital multimeter using 8051

    i just want to measure Voltage and Current for both AC and DC... and i need a ADC conversion sample program for this...
  5. K

    digital multimeter using 8051

    hello friends. i want to design digital multimeter using 8051. pls help me for doing this project, i need a schematic and program. thanks in advance. :)
  6. K

    TSOP1738 IR Receiver continuous detection using microcontroller

    i think this would help you, but this code is for 8051. i left only the delay part IR equ P3.3 buzz equ P1.0 org 00H mov P1,#00h main: jb IR,lop lop: jnb IR,delay sjmp main delay: ret end
  7. K

    How to use Multiple Serial Ports?

    everything i made it in a program itself, so whenever i want to receive or transmit a signal, i made some perfect delay for enabling the relays. that delay calculation is very important.
  8. K

    How to use Multiple Serial Ports?

    but it worked perfectly for me, and i didnt face any noise problem in circuit also.
  9. K

    ADC value convert to Hex value

    then you dont need to convert it to hex, you can directly move your data to a port d.
  10. K

    ADC value convert to Hex value

    this program will convert binary to hex, this would help you. #include<reg51.h> #define input P0 //Input port to read the values of ADc #define output P2 // Output port, connected to LED's. sbit wr= P1^1; // Write pin. It is used to start the conversion. sbit rd= P1^0; // Read pin. It...
  11. K

    How to use Multiple Serial Ports?

    check out my circuit.. it worked for me. **broken link removed**
  12. K

    How to use Multiple Serial Ports?

    its very simple, you can do it by using relays, it worked for me.
  13. K

    Different types of Ports in 8051

    in 8051, port 1,2,3 is having internal pull up resistor, but port 0 doesn't have a pull up resistor.
  14. K

    led matrix brightness problems.

    pls post schematic and coding. it would be easy to find out the problem.
  15. K

    help in RC5 remote decoder in 8051

    im using keil compiler, and at89s52 controller... i dont have any schematic im just connecting tsop out to external interupt.. but i dont know how to get a 14 bits from rc remote and store it in controller..

Part and Inventory Search

Back
Top