jean12
Advanced Member level 2
- Joined
- Aug 27, 2013
- Messages
- 529
- Helped
- 5
- Reputation
- 12
- Reaction score
- 6
- Trophy points
- 18
- Activity points
- 5,497
It's completely unclear how you are driving a half-bridge with ICL7667. If you want effective help, you should at least sketch the implemented circuit topology,I am not able to give you the circuit becuase my proteus is does not has the components I am suing,but I have the PIC 16f1827 whith which I am outputting a square wave which passes into the driver ICL7667 and then those the output of the drive go to the gate of the MOSFET ,but the MOSFET are becoming very hot,so I am asking if there is any isolation required ?
If yes is it possible to use for example 6N135 or 4N25 becuase those are the ones I have ;if yes how would be the connection of those optocoupler mainly the Emitter pin where it has to be connected?
Do you see "those spikes"? You didn't yet report actual measurements.How do you think I can remove those spikes
#include <16F1827.h>
#DEVICE ADC=10
#fuses HS,NOWDT,NODEBUG,NOCPD,NOLVP
#use delay(clock=4000000)
void main()
{
set_tris_b(0x00);
while(1)
{
output_high(PIN_B0);
output_low(PIN_B2);
delay_us(40);
output_low(PIN_B0);
delay_us(10);
output_low(PIN_B0);
output_high(PIN_B2);
delay_us(40);
output_low(PIN_B2);
delay_us(10);
}
}
The generated frequency according to the code is 10 kHz, not 31 kHz.
I don't see where you would use 22 nF capacitors and why.
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?
We use cookies and similar technologies for the following purposes:
Do you accept cookies and these technologies?