Final Draft
Final Draft
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/ IC L293D
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE A well-liked 16-Pin motor driver IC is the L293D. It is
"https://www.elprocus.com/wp-content/uploads/ primarily utilised to drive motors, as the name would imply.
MOSFET-1.png" \* MERGEFORMATINET Two DC motors can be driven simultaneously by a single
INCLUDEPICTURE L293D IC, and each motor's direction can be regulated
"https://www.elprocus.com/wp-content/uploads/ separately. Therefore, this IC will be the best option if there
MOSFET-1.png" \* MERGEFORMATINET are motors that need to be controlled by digital circuits like
Op-Amp, 555 timers, digital gates, or even Microcontrollers
INCLUDEPICTURE
like Arduino, PIC, ARM, etc. that operate at less than 36V
"https://www.elprocus.com/wp-content/uploads/
and 600mA of current.
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/ III. ELECTRONIC CIRCUIT / HARDWARE DESIGN
MOSFET-1.png" \* MERGEFORMATINET
Step Up Transformers
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/ The low voltage (LV) and high current from the primary side
of the transformer are converted to the high voltage (HV)
MOSFET-1.png" \* MERGEFORMATINET and low current value on the secondary side of the
INCLUDEPICTURE transformer by a step-up transformer. Known as a step down
"https://www.elprocus.com/wp-content/uploads/ transformer, this is how it works in reverse.
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE Converter
"https://www.elprocus.com/wp-content/uploads/
Electronic converters in use today employ switching
MOSFET-1.png" \* MERGEFORMATINET methods. By briefly storing the input energy and releasing it
INCLUDEPICTURE to the output at a different voltage, switched-mode DC-to-
"https://www.elprocus.com/wp-content/uploads/ DC converters change one DC voltage level to another that
MOSFET-1.png" \* MERGEFORMATINET may be greater or lower.
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/
MOSFET-1.png" \* MERGEFORMATINET
INCLUDEPICTURE
"https://www.elprocus.com/wp-content/uploads/
V. Working
The Arduino, which produces 50Hz square waves with a
50% duty cycle, serves as the circuit's brain. The buffers for
MOSFET IRF540N are the two BC548 devices. The
Arduino pins only provide 5V, while the IRF540N or the
majority of MOSFETs require 10V to completely switch on.
The two BC548 take the low voltage (5V Signal) from the
Arduino and deliver 12V at the "gate" port, which is enough
to turn the MOSFETs fully ON. The output voltage and
current will be impacted if the MOSFET is not fully ON
since there will be resistance between the Source and Drain
Terminals. In order to provide stable 50Hz 230V AC at the
output, the Arduino oscillates each MOSFET while
alternatively energising the secondary side winding.
void setup()
{
pinMode(sPWMpin1, OUTPUT);
pinMode(sPWMpin2, OUTPUT);
}
void loop()
{
for(int i(0); i != SpwmArryValues; i++)
{
if(sPWMpin1Status)
{
digitalWrite(sPWMpin1, HIGH); VII. Result & Output
delayMicroseconds(SpwamArry[i]);
sPWMpin1Status = false;
}
else 1.
{
digitalWrite(sPWMpin1, LOW);
delayMicroseconds(SpwmArry[i]);
sPWMpin1Status = true;
}
}