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 abhichaotic

  1. A

    IRF3205 burning at only 25 Amper

    Re: help! IRF3205 burning at only 25 Amper It is highly recommended that you use RC snubber circuit to limit the dv/dt. You can use schottky diodes for fast turning OFF of mosfets.
  2. A

    Microcontrollers and motors

    All voltage and current sensing should be isolated and also try to cover your microcontroller pcb with a copper sheet, that worked for me in an application.
  3. A

    [SOLVED] problem to send out an array from a PIC

    void SendMsg(void) { unsigned char size; TXPtr=&txdata[0]; size=sizeof(txdata); while(size) { while (U2STAbits.UTXBF); U2TXREG = *TXPtr++; size--; } } txdata is the array which is send. This code is for dsPIC30f4011 in microchip C30 compiler, whereas TXPtr is defined as unsigned char...
  4. A

    Displaying numbers on LCD using microcontroller

    As it is alphanumeric display so you have to separate each digit and then send ASCII values of those digits, then it will work.
  5. A

    How to check the state of the relay contacts?

    What is the resistance of relay coil only then i can decide transistor and resistor.
  6. A

    IR2110 and mosfet IRFPE50PB for sine-inverter

    Yes, at higher duty cycles more gate charge is required from driver than at 50%, and also it increases with the switching frequency. 20khz is good enough, if you want to be at 50khz then improve your driver circuit, as tahmid said, you need to have a larger bootstrap capacitor, kindly share some...
  7. A

    measurement of AC line voltages using PIC16F877A

    You can simply use full wave precision rectifier circuit and then give it to controller pin through a RC filter circuit. Add a preset and then adjust your ADC as 5v corresponds to max. voltage you want to read. Then calibrate via that preset.
  8. A

    Optocoupler interface with pic microcontroller

    It's very easy, connect any port pin you desire to pin number 1 of 817c through a resistor, and pin number 2 to ground. Limit the current in input LED of optocoupler to 10mA by the resistance and output of it is an npn transistor, connect it as you require.
  9. A

    Programming Error HELP needed..!!

    # define PORTBIT(adr,bit) ((unsigned)(&adr)*8+(bit)) static bit YBzc @ PORTBIT(PORTB, 7); // pin 40 of IC static bit rs @ PORTBIT(PORTC, 2); // pin 15 of IC static bit en1 @ PORTBIT(PORTC, 3); // pin 16 of IC static bit en2 @ PORTBIT(PORTB, 5); //...
  10. A

    Programming Error HELP needed..!!

    could you please explain which port pin you want to address, is it an ADC pin or other??
  11. A

    Problem in parallel operation of two sinewave inverters

    Thanks mtwieg for showing your concern, as you are saying that some heavy circuit modification is required, will please tell what modifications are required actually, means some switchgears or some compensator type of thing?? Both the inverters are now working in parallel and as you have said I...
  12. A

    Problem in parallel operation of two sinewave inverters

    Hi, FvM thanks for your review. I have developed CAN bus communication for my inverter. Now for synchronization i need help for a scheme to synchronize the two inverters, means how to synchronize them so they can also share the currents equally among themselves.
  13. A

    How can i use IGBT in parallel operation

    Re: parallel working of IGBT IGBT type should be of positive temperature coefficient in parallel operation.
  14. A

    Problem in parallel operation of two sinewave inverters

    ok , thanks for this idea. But is there any other method using digital communication like CAN bus between two inverters??
  15. A

    Welcome to the Proteus Design Suite Group, Please Introduce Yourself...

    Hello everyone, I am a newbie in proteus and I think this group will be a great help to me..

Part and Inventory Search

Back
Top