Sunteți pe pagina 1din 12

What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

ELECTRONICS (HTTPS://CIRCUITDIGEST.COM/ELECTRONICS-PROJECTS)

RS232 Serial Communication Protocol: Basics,


Working & Specifications (/article/rs232-serial-
communication-protocol-basics-specifications)
By (page_author.html)Tamanna Sharma (/users/tamanna-sharma)  Jan 01, 2018 0

RS232 serial communication

What is a serial communication?


In telecommunication, the process of sending data sequentially over a computer bus is called as serial
communication, which means the data will be transmitted bit by bit. While in parallel communication the data is
transmitted in a byte (8 bit) or character on several data lines or buses at a time. Serial communication is
slower than parallel communication but used for long data transmission due to lower cost and practical
reasons.

Serial communication

1 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

Parallel communication

Example to understand:

Serial communication – you are shooting a target using machine guns, where bullets reach one by one to the
target.

Parallel communication- you are shooting a target using a shotgun, where no. of bullets reach at the same time.

Modes of Data Transfer in Serial Communication:

Asynchronous Data Transfer – The mode in which the bits of data are not synchronized by a clock
pulse. Clock pulse is a signal used for synchronization of operation in an electronic system.
Synchronous Data Transfer – The mode in which the bits of data are synchronized by a clock pulse.

Characteristics of Serial Communication:

Baud rate is used to measure the speed of transmission. It is described as the number of bits
passing in one second. For example, if the baud rate is 200 then 200 bits per Sec passed. In
telephone lines, the baud rates will be 14400, 28800 and 33600.
Stop Bits are used for a single packet to stop the transmission which is denoted as “T”. Some typical
values are 1, 1.5 & 2 bits.
Parity Bit is the simplest form of checking the errors. There are of four kinds, i.e., even odd, marked
and spaced. For example, If 011 is a number the parity bit=0, i.e., even parity and the parity=1, i.e., odd
parity.

What is RS232?
RS232C “Recommended Standard 232C” is the recent version of Standard 25 pin whereas, RS232D which is of
22 pins. In new PC’s male D-type which is of 9 pins.

RS232 is a standard protocol used for serial communication, it is used for connecting computer and its
peripheral devices to allow serial data exchange between them. As it obtains the voltage for the path used for
the data exchange between the devices. It is used in serial communication up to 50 feet with the rate of
1.492kbps. As EIA de�nes, the RS232 is used for connecting Data Transmission Equipment (DTE) and Data
Communication Equipment (DCE).

RS232 protocol

Universal Asynchronous Data Receiver &Transmitter (UART) used in connection with RS232 for transferring
data between printer and computer. The microcontrollers are not able to handle such kind of voltage levels,
connectors are connected between RS232 signals. These connectors are known as the DB-9 Connector as a
serial port and they are of two type’s Male connector (DTE) & Female connector (DCE).

2 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

Electrical

Specifications
Let us discuss the electrical speci�cations of RS232 given below:

Voltage Levels: RS232 also used as ground & 5V level. Binary 0 works with voltages up to +5V to
+15Vdc. It is called as ‘ON’ or spacing (high voltage level) whereas Binary 1 works with voltages up to
-5V to -15Vdc. It is called as ‘OFF’ or marking (low voltage level).
Received signal voltage level: Binary 0 works on the received signal voltages up to +3V to +13 Vdc &
Binary 1 works with voltages up to -3V to -13 Vdc.
Line Impedances: The impedance of wires is up to 3 ohms to 7 ohms & the maximum cable length
are 15 meters, but new maximum length in terms of capacitance per unit length.
Operation Voltage: The operation voltage will be 250v AC max.
Current Rating: The current rating will be 3 Amps max.
Dielectric withstanding voltage: 1000 VAC min.
Slew Rate: The rate of change of signal levels is termed as Slew Rate. With its slew rate is up to 30
V/microsecond and the maximum bitrate will be 20 kbps.

The ratings and speci�cation changes with the change in equipment model.

How RS232 Works?


RS232 works on the two-way communication that exchanges data to one another. There are two devices
connected to each other, (DTE) Data Transmission Equipment& (DCE) Data Communication Equipment which
has the pins like TXD, RXD, and RTS& CTS. Now, from DTE source, the RTS generates the request to send the
data. Then from the other side DCE, the CTS, clears the path for receiving the data. After clearing a path, it will
give a signal to RTS of the DTE source to send the signal. Then the bits are transmitted from DTE to DCE. Now
again from DCE source, the request can be generated by RTS and CTS of DTE sources clears the path for
receiving the data and gives a signal to send the data. This is the whole process through which data
transmission takes place.

TXD TRANSMITTER

RXD RECEIVER

RTS REQUEST TO SEND

CTS CLEAR TO SEND

GND GROUND

For example: The signals set to logic 1, i.e., -12V. The data transmission starts from next bit and to inform this,
DTE sends start bit to DCE. The start bit is always ‘0’, i.e., +12 V & next 5 to 9 characters is data bits. If we use
parity bit, then 8 bits data can be transmitted whereas if parity doesn’t use, then 9 bits are being transmitted.
The stop bits are sent by the transmitter whose values are 1, 1.5 or 2 bits after the data transmission.

Mechanical Specification
For mechanical speci�cations, we have to study about two types of connectors that is DB-25 and DB-9. In
DB-25, there are 25 pins available which are used for many of the applications, but some of the applications

didn’t use the whole 25 pins. So, the 9 pin connector is made for the convenience of the devices and

3 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...


equipments.

Now, here we are discussing the DB-9 pin connector which is used for connection between microcontrollers
and connector. These are of two types: Male Connector (DTE) & Female Connector (DCE). There are 5 pins on
the top row and 4 pins in the bottom row. It is often called DE-9 or D-type connector.

Pin Structure of DB-9 Connector:

RS232 or DB9 male connector

RS232 or DB9 female connector

Pin Description DB-9 Connector:

PIN No. Pin Name Pin Description

1 CD (Carrier Detect) Incoming signal from DCE

2 RD (Receive Data) Receives incoming data from DTE

3 TD (Transmit Data) Send outgoing data to DCE

4 DTR (Data Terminal Ready) Outgoing handshaking signal

5 GND (Signal ground) Common reference voltage

6 DSR (Data Set Ready) Incoming handshaking signal 

4 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...


7 RTS (Request to Send) Outgoing signal for controlling �ow

8 CTS (Clear to Send) Incoming signal for controlling �ow

9 RI (Ring Indicator) Incoming signal from DCE

What is Handshaking?
How can a transmitter, transmits and the receiver receives data successfully. So, the Handshaking de�nes, for
this reason.

Handshaking is the process which is used to transfer the signal from DTE to DCE to make the connection
before the actual transfer of data. The messaging between transmitter & receiver can be done by handshaking.

There are 3 types of handshaking processes named as:-

No Handshaking:

If there is no handshaking, then DCE reads the already received data while DTE transmits the next data. All the
received data stored in a memory location known as receiver’s buffer. This buffer can only store one bit so
receiver must read the memory buffer before the next bit arrives. If the receiver is not able to read the stored bit
in the buffer and next bit arrives then the stored bit will be lost.

As shown in below diagram, a receiver was unable to read the 4 th bit till the 5th bit arrival and this result
overriding of 4th bit by 5th bit and 4th bit is lost.

NO handshaking example

Hardware Handshaking:

It uses speci�c serial ports, i.e., RTS & CTS to control data �ow.
In this process, transmitter asks the receiver that it is ready to receive data then receiver checks the
buffer that it is empty, if it is empty then it will give signal to the transmitter that I am ready to receive
data.
The receiver gives the signal to transmitter not to send any data while already received data cannot
be read.
Its working process is same as above described in handshaking.

Software Handshaking:

In this process, there are two forms, i.e., X-ON & X-OFF. Here, ‘X’ is the transmitter.
X-ON is the part in which it resumes the data transmission.
X-OFF is the part in which it pauses the data transmission.
It is used to control the data �ow and prevent loss during transmission.

5 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

Software handshaking example

Applications
RS232 serial communication is used in old generation PCs for connecting the peripheral devices like
mouse, printers, modem etc.
Nowadays, RS232 is replaced by advanced USB.
It is also used in PLC machines, CNC machines, and servo controllers because it is far cheaper.
It is still used by some microcontroller boards, receipt printers, point of sale system (PoS), etc.

Tags RS232 (/TAGS/RS232) COMMUNICATION (/TAGS/COMMUNICATION)

SERIAL COMMUNICATION (/TAGS/SERIAL-COMMUNICATION)

RECOMMENDED POSTS

(http://bit.ly/2qkijam ) (http://bit.ly/386Bw0k )
Dev Kit Weekly: Ayla Development Kit v2.0 Dev Kit Weekly: BeagleBone AI (http://bit.ly
(http://bit.ly/2qkijam ) /386Bw0k )

(http://bit.ly/34LTsLA ) (http://bit.ly/2DNvmo0 )
Industrial IoT Workloads Benefit from Edge to The Engineer's Answer to Faster Sampling at
Cloud Intelligence (http://bit.ly/34LTsLA ) Lower Power (http://bit.ly/2DNvmo0 )

(http://bit.ly/360oDD9 ) (http://bit.ly/2qqaOPm )
Modem or Module? Answering a Key Question Enhancing Debug and Trace Capabilities for
for Cellular IoT Design Projects (http://bit.ly System Developers (http://bit.ly/2qqaOPm )
/360oDD9 )

6 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

(http://bit.ly/2LmMYv3 ) (http://bit.ly/2qhkOds )
How to Develop High-Performance Object IoT Device Security Conference 2020
Recognition on FPGA Edge Devices (http://bit.ly (http://bit.ly/2qhkOds )
/2LmMYv3 )

Get Our Weekly Newsletter!


Subscribe below to receive most popular news, articles and DIY projects from Circuit Digest

Email Address *

Name

Country

United States of America

Subscribe

RELATED CONTENT

 PREVIOUS
POST
Diodes: PN
Junction,
Types,
(/tutorial/serial-communication-
protocols)
Serial Communication Protocols
(/tutorial/serial-communication-
protocols)
Construction and Working (https://circuitdigest.com/article/what-is-diode-types-working-pn-
junction-theory)

NEXT POST 
PID Controllers: Working, Structure and Tuning Methods (https://circuitdigest.com/article
/what-is-pid-controller-working-structure-applications)

COMMENTS

LOG IN (/USER/LOGIN?DESTINATION=NODE/1519%23COMMENT-FORM) OR REGISTER (/USER


/REGISTER?DESTINATION=NODE/1519%23COMMENT-FORM) TO POST COMMENT

Reimagine What is Truly Possible (http://bit.ly/2L99s2n )


Mouser’s latest ebook examines NXP’s use of AI to reshape solutions and products for the future.

(http://bit.ly
/2L99s2n )
Maxim MAX32520 ChipDNA Secure ARM Cortex™-M4 MCU (http://bit.ly/35TUntL )
Features a DeepCover® embedded security solution to cloak sensitive data.

(http://bit.ly
/35TUntL )

Littelfuse 8.0SMDJ Series TVS Diodes (http://bit.ly/2DslCPQ )

7 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

 Protect against voltage transients from lightning and other transient voltage events.

(http://bit.ly
/2DslCPQ )
Analog Devices LT8210 Buck Boost DC/DC Controllers (http://bit.ly/2L4yTlK )
Function in pass-through, forced continuous, pulse-skipping, and Burst Mode® operations.

(http://bit.ly
/2L4yTlK )
Texas Instruments Single-Cell Buck Battery Charger (http://bit.ly/33BaL0o )
1.5A switch-mode battery charge management and system Power Path management device.

(http://bit.ly
/33BaL0o )
TDK InvenSense MOD-CH101 Ultrasonic ToF Sensor (http://bit.ly/2OBCutL )
Contains a CH-101 sensor on a small PCB and is based on Chirp’s patented MEMS technology.

(http://bit.ly
/2OBCutL )
Switchcraft Signal/Power Multi-Con-X Connectors (http://bit.ly/33yaMSZ )
Offer an IP67 waterproof rating, a 300VRMS voltage rating, and a UL94HB �ame rating. 

(http://bit.ly
/33yaMSZ
)
Radiall Single-Pole Power Connectors (http://bit.ly/33upBWA )
Offer 500 mating cycles min., IP2X �nger protected contacts, and are IP67 sealed when mated.

(http://bit.ly
/33upBWA
)

SPONSORED ARTICLE
Driver Assistance to Driver Replacement: The Cognitive Vehicle Is Built Upon Foundational, High
Integrity Sensor Data (/article/driver-assistance-to-driver-replacement-the-cognitive-vehicle-is-built-
upon-high-integrity-sensor-data)

NEWS ARTICLES PROJECTS

RV1S92xxA & RV1S22xxA – Smallest 8.2mm Photocouplers for Industrial Automation and
Solar Inverters (/news/smallest-82mm-photocouplers-for-industrial-automation-and-solar-
inverters)
(/news
/smallest-
82mm-
photocouplers-
for-industrial-
automation-
and-solar-
inverters)

PolarFire SoC – RISC-V Enabled Low Power FPGA from Microchip now Open for Early Access
(/news/polar�re-soc-risc-v-enabled-low-power-fpga)

(/news
/polar�re-soc-
risc-
v-enabled-
low-power-
fpga)

Transistors can now both process and store information (/news/transistors-can-now-both-


process-and-store-information) 

8 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

(/news
/transistors-
can-now-both-
process-and-
store-
information)

32-bit Bluetooth 5.0 Microcontroller with Enhanced Security and Privacy for IoT Endpoint
Devices (/news/32-bit-bluetooth-50-microcontroller-with-enhanced-security-and-privacy-for-
iot-endpoint-devices)
(/news/32-bit-
bluetooth-50-
microcontroller-
with-
enhanced-
security-and-
privacy-for-
iot-endpoint-
devices)

Three Phase Brushless Motor Pre Driver IC for Sensorless Closed Loop Speed Control (/news
/tc78b009ftg-three-phase-brushless-motor-pre-driver-ic-for-sensorless-closed-loop-speed-
control)
(/news
/tc78b009ftg-
three-phase-
brushless-
motor-pre-
driver-ic-for-
sensorless-
closed-loop-
speed-
control)

REFERENCE
DESIGNS

Isolated CAN Flexible Data (FD) Rate Repeater Reference Design (https://ad.doubleclick.net
/ddm/clk/454731015;252144386;a?http://www.ti.com/tool/TIDA-01487?HQS=sys-ind-fa-
indcomms19-asset-rd-CircuitDigest-in&DCM=yes &http%3A
(https://ad.doubleclick.net
%2F%2Fwww.ti.com%2Ftool%2FTIDA-01487%3FHQS=sys-ind-fa-indcomms19-asset-rd-
/ddm/clk
CircuitDigest-in&DCM=yes_)
/454731015;252144386;a?http:
The CAN transceiver and arbitration logic in this TI design support CAN FD speed up to 2Mbps.
//www.ti.com
/tool/TIDA-
01487?HQS=sys-
ind-fa-
indcomms19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDA-
01487%3FHQS=sys-
ind-fa-
indcomms19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)
Ultra-Small IO-Link Sensor Transmitter with RTD Front End Reference Design
(https://ad.doubleclick.net/ddm/clk/454773767;252144386;u?http://www.ti.com/tool/TIDA-
01335?HQS=sys-ind-fa-functionalsafety19-asset-rd-CircuitDigest-in&DCM=yes &http%3A
(https://ad.doubleclick.net
%2F%2Fwww.ti.com%2Ftool%2FTIDA-01335%3FHQS=sys-ind-fa-functionalsafety19-asset-rd-
/ddm/clk
CircuitDigest-in&DCM=yes_)
/454773767;252144386;u?http:
Small 6mm form factor PCB width with integrated protection and resistance temperature detector.
//www.ti.com
/tool/TIDA-
01335?HQS=sys-
ind-fa-
functionalsafety19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDA-
01335%3FHQS=sys- 

9 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

ind-fa-

functionalsafety19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)
TUV-assessed digital input reference design for IEC 61508 (SIL-2) (https://ad.doubleclick.net
/ddm/clk/454770317;252144386;i?http://www.ti.com/tool/TIDA-010049?HQS=sys-ind-fa-
functionalsafety19-asset-rd-CircuitDigest-in&DCM=yes &http%3A
(https://ad.doubleclick.net
%2F%2Fwww.ti.com%2Ftool%2FTIDA-010049%3FHQS=sys-ind-fa-functionalsafety19-asset-
/ddm/clk
rd-CircuitDigest-in&DCM=yes_)
/454770317;252144386;i?http:
8-channel, group-isolated, digital input module design for industrial functional safety.
//www.ti.com
/tool/TIDA-
010049?HQS=sys-
ind-fa-
functionalsafety19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDA-
010049%3FHQS=sys-
ind-fa-
functionalsafety19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)
Nanosecond Laser Driver Reference Design for LiDAR (https://ad.doubleclick.net/ddm/clk
/454730208;252144386;d?http://www.ti.com/tool/TIDA-01573?HQS=sys-ind-fa-robotics19-
asset-rd-CircuitDigest-in&DCM=yes &http%3A%2F%2Fwww.ti.com%2Ftool%2FTIDA-
(https://ad.doubleclick.net
01573%3FHQS=sys-ind-fa-robotics19-asset-rd-CircuitDigest-in&DCM=yes_)
/ddm/clk
This design showcases the LMG1020, low-side nanosecond GaN gate driver capable of driving a FET.
/454730208;252144386;d?http:
//www.ti.com
/tool/TIDA-
01573?HQS=sys-
ind-fa-
robotics19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDA-
01573%3FHQS=sys-
ind-fa-
robotics19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)
Three-level, three-phase SiC AC-to-DC converter reference design (https://ad.doubleclick.net
/ddm/clk/454731825;252144386;j?http://www.ti.com/tool/TIDA-010039?HQS=sys-ind-gi-
evcharging19-asset-rd-CircuitDigest-in&DCM=yes &http%3A
(https://ad.doubleclick.net
%2F%2Fwww.ti.com%2Ftool%2FTIDA-010039%3FHQS=sys-ind-gi-evcharging19-asset-rd-
/ddm/clk
CircuitDigest-in&DCM=yes_)
/454731825;252144386;j?http:
This design features SiC MOSFETs with switching loss to enable higher DC bus voltages of up to 800V.
//www.ti.com
/tool/TIDA-
010039?HQS=sys-
ind-gi-
evcharging19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDA-
010039%3FHQS=sys-
ind-gi-
evcharging19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)
Bidirectional CLLLC resonant DAB reference design for HEV/EV onboard charger 
(https://ad.doubleclick.net/ddm/clk/454766393;252144386;r?http://www.ti.com/tool/TIDM-

10 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

 02002?HQS=sys-ind-gi-evcharging19-asset-rd-CircuitDigest-in&DCM=yes &http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDM-02002%3FHQS=sys-ind-gi-evcharging19-asset-rd-
CircuitDigest-in&DCM=yes_)
(https://ad.doubleclick.net
/ddm/clk Reference design from Texas Instruments for HEV/EV onboard charter and energy storage applications.

/454766393;252144386;r?http:
//www.ti.com
/tool/TIDM-
02002?HQS=sys-
ind-gi-
evcharging19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDM-
02002%3FHQS=sys-
ind-gi-
evcharging19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)
Texas Instruments has many helpful resources to help in your EV Charging Design
(https://ad.doubleclick.net/ddm/clk/454730991;252144386;m?http://www.ti.com/solution
/renewables_ev_charging?HQS=sys-ind-gi-evcharging19-asset-appd-CircuitDigest-in&
(https://ad.doubleclick.net
DCM=yes &http%3A
/ddm/clk
%2F%2Fwww.ti.com%2Fsolution%2Frenewables_ev_charging%3FHQS=sys-ind-gi-
/454730991;252144386;m?http:
evcharging19-asset-appd-CircuitDigest-in&DCM=yes_)
//www.ti.com
Our ICs & reference designs enable smarter and safer AC charging stations for electric vehicles.
/solution
/renewables_ev_charging?HQS=sys-
ind-gi-
evcharging19-
asset-appd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Fsolution%2Frenewables_ev_charging%3FHQS=sys-
ind-gi-
evcharging19-
asset-appd-
CircuitDigest-
in&
DCM=yes_)
Bi-directional, dual active bridge reference design for level 3 EV charging
(https://ad.doubleclick.net/ddm/clk/448478838;252144386;y?http://www.ti.com/tool/TIDA-
010054?HQS=sys-ind-gi-evcharging19-asset-rd-CircuitDigest-in&DCM=yes &http%3A
(https://ad.doubleclick.net
%2F%2Fwww.ti.com%2Ftool%2FTIDA-010054%3FHQS=sys-ind-gi-evcharging19-asset-rd-
/ddm/clk
CircuitDigest-in&DCM=yes_)
/448478838;252144386;y?http:
Bene�cial where power density, cost, weight and high voltage conversion ratio are critical factors.
//www.ti.com
/tool/TIDA-
010054?HQS=sys-
ind-gi-
evcharging19-
asset-rd-
CircuitDigest-
in&
DCM=yes
&http%3A
%2F%2Fwww.ti.com%2Ftool%2FTIDA-
010054%3FHQS=sys-
ind-gi-
evcharging19-
asset-rd-
CircuitDigest-
in&
DCM=yes_)

11 of 12 12/12/19, 4:20 am
What is RS232 Serial Communication Protocol?... https://circuitdigest.com/article/rs232-serial-c...

Need electronics solutions?

TDK's new application guides for


electronics, get the most suitable one for
your design
TDK Corporation

Connect with us on social media and stay updated with latest news, articles and projects!

 (https://www.linkedin.com

  (https://www.youtube.com
  /company
(https://www.facebook.com
(https://twitter.com
/channel
(https://www.instagram.com
(https://www.pinterest.com
/circuit-
/circuitdigest/)
/CircuitDigest)
/UCy3CUAIYgZdAOG9k3IPdLmw)
/circuit_digest/)
/circuitdigest/)
digest/)

CATEGORIES

Embedded Electronics (https://circuitdigest.com/embedded)

Power Electronics (https://circuitdigest.com/power-electronics)

Analog Electronics (https://circuitdigest.com/analog-electronics)

Internet of Things (https://circuitdigest.com/internet-of-things)

Audio Electronics (https://circuitdigest.com/audio-electronics)

Electric Vehicles (https://circuitdigest.com/electric-vehicles)

Events (https://circuitdigest.com/events)

POPULAR

ROBOTICS (/ROBOTICS-PROJECTS) 555 CIRCUITS (/555-TIMER-CIRCUITS)

ARDUINO PROJECTS (/ARDUINO-PROJECTS)

RASPBERRY PI PROJECTS (/SIMPLE-RASPBERRY-PI-PROJECTS-FOR-BEGINNERS)

ELECTRONICS NEWS (HTTPS://CIRCUITDIGEST.COM/NEWS)

ELECTRONICS FORUM (HTTPS://CIRCUITDIGEST.COM/FORUMS)

CALCULATORS (HTTPS://CIRCUITDIGEST.COM/CALCULATORS)

NEWSLETTER

Sign Up for Latest News

Enter your email

Subscribe

Copyright © 2019 Circuit Digest (http://circuitdigest.com/). All rights reserved.

Privacy Policy (http://circuitdigest.com/privacy-policy) | Cookie Policy (https://circuitdigest.com/cookie-policy) | Terms of Use


(https://circuitdigest.com/terms-of-use) | Contact Us (http://circuitdigest.com/contact) | Advertise (http://circuitdigest.com
/advertise)

12 of 12 12/12/19, 4:20 am

S-ar putea să vă placă și