You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/learn/04.electronics/10.power-pins/power-pins.md
+25-13Lines changed: 25 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ tags:
12
12
author: 'José Bagur, Taddy Chung, Karl Söderby'
13
13
---
14
14
15
-
Arduino boards can be powered in several ways; we can use dedicated **connectors** (USB ports and barrel jacks) or dedicated **pins**. One fundamental question that usually arises when using an Arduino board in real-life applications is what dedicated power connector or pin we should use. This article will describe the main characteristics and correct use of power pins and connectors of Arduino boards.
15
+
Arduino boards can be powered in several ways; we can use dedicated **connectors** (USB ports, barrel jacks or battery connectors) or dedicated **pins**. One fundamental question that usually arises when using an Arduino board in real-life applications is what dedicated power connector or pin we should use. This article will describe the main characteristics and correct use of power pins and connectors of Arduino boards.
16
16
17
17
## Powering Alternatives
18
18
@@ -21,7 +21,7 @@ Arduino boards have **five** options in which they can be powered:
21
21
22
22
1. Powering via USB connector
23
23
24
-
2. Powering via the barrel jack connector (if available on the board)
24
+
2. Powering via the onboard barrel jack connector (if available on the board)
25
25
26
26
3. Powering via the onboard battery connector (if available on the board)
27
27
@@ -32,13 +32,16 @@ Arduino boards have **five** options in which they can be powered:
32
32
***\*Powering your board via the 3V3/5V pins is not recommended, as it can damage your board's voltage regulator. Read more [here](#3v35v-pin).***
33
33
34
34
35
-
This article will examine the alternatives to power your Arduino more in-depth.
35
+
This article will examine these alternatives more in-depth.
36
36
37
37
38
38
## USB Connector
39
39
40
40
41
-
The most common and easiest way we can power an Arduino board is by using its **onboard USB connector**. The USB connector provides a regulated 5V line to power the board's electronics. However, it can also power external components via the 5V pin that can be found in Arduino boards, as shown in the image below:
41
+
The most common and easiest way we can power an Arduino board is by using its **onboard USB connector**. The USB connector provides a regulated 5V line to power the board's electronics. However, **5V from the USB connector can also power external components through the 5V pin** that can be found in Arduino boards.
42
+
43
+
44
+

42
45
43
46
44
47
Something important about the USB connection is the current rating of the USB host device. For example, a USB host device can be a computer; this means that the computer's USB port is the 5V power source of the Arduino board connected to it. Besides USB ports of computers, we can also use power banks, for example, as power sources for Arduino boards. Power banks usually have one or more USB outputs that provide regulated 5V lines at different current ratings. Arduino boards that run at 5V use the USB-regulated 5V line directly, boards that run at 3V3 regulate the 5V line from the USB connector to 3V3 using their onboard voltage regulator. Output current rating from the 5V pin will vary, depending on the 5V power source.
@@ -61,26 +64,30 @@ Some Arduino boards have an **onboard barrel jack connector** that is used to co
***Arduino boards with onboard barrel jacks are configured with positive polarity; this means a negative sleeve and a positive pin. They use a a negative 5.5mm sleeve and a 2.1mm positive pin***
67
+
***Arduino boards with onboard barrel jacks are configured with positive polarity; this means a negative sleeve and a positive pin. Boards with an onboard barreljack use a a negative 5.5mm sleeve and a 2.1mm positive pin***
68
+
69
+
70
+

65
71
66
72
67
-
The voltage line from the barrel jack connector is regulated in Arduino boards using their onboard voltage regulator; usually, it is first regulated to 5V and then regulated again to 3V3 in most Arduino boards. The recommended voltage and current ratings for external regulated power supplies connected to the barrel jack connector are summarized in the table below:
73
+
74
+
The voltage line from the barrel jack connector is regulated in Arduino boards using their onboard voltage regulator; usually, it is first regulated to 5V and then regulated again to 3V3 in most Arduino boards. The **recommended voltage and current ratings for external regulated DC power supplies** connected to the barrel jack connector are summarized in the table below:
68
75
69
76
70
77
|**Board**|**External Power Supply Voltage (V)**|**External Power Supply Current (A)**|
Some Arduino boards also have an **onboard battery connector** to connect a battery to the board and use it as its primary or secondary power supply. The Arduino boards with an onboard battery connector are the following:
90
+
Some Arduino boards have an **onboard battery connector** to connect a battery to the board and use it as its primary or secondary power supply. The Arduino boards with an onboard battery connector are the following:
***Pro family boards use a 3-pin, 1.2mm SMD ACH battery connector, and MKR family boards use a 2-pin, 2mm SMD PH battery connector.***
104
+
***Pro family boards use a 3-pin, 1.2mm SMD ACH battery connector; MKR family boards use a 2-pin, 2mm SMD PH battery connector.***
105
+
106
+
107
+

108
+
98
109
110
+
The boards mentioned before have an **onboard integrated battery charge management circuit**. This circuit integrates the most common battery and power management functions, like a battery charger, a voltage regulator, and a load switch, all in one.
99
111
100
-
The boards mentioned before have an **onboard integrated battery charge management circuit**. This circuit integrates the most common battery and power management functions, like a battery charger, a voltage regulator, and a load switch. **Boards can work with single cell 3V7 Li-Ion and Li-polymer batteries**.
112
+
***Arduino boards with an onboard battery connector can work with single cell 3V7 Li-Ion and Li-polymer batteries***.
101
113
102
114
103
115
## VIN Pin
104
116
105
117
106
-
The VIN pin in Arduino boards is a power pin with a dual function. This pin can work as a **voltage input for regulated external power supplies** that do not use a barrel jack connector. This pin can also work as a **voltage output when an external power supply is connected to the barrel jack connector** present in some Arduino boards. An important consideration is that the Vin pin is connected directly to the input pin of the onboard voltage regulator on Arduino boards. Since the VIN pin is directly connected to the voltage regulator, the **VIN pin does not have reverse polarity protection**.
118
+
The VIN pin in Arduino boards is a power pin with a dual function. This pin can work as a **voltage input for regulated external power supplies** that do not use a barrel jack connector. This pin can also work as a **voltage output when an external power supply is connected to the barrel jack connector** present in some Arduino boards. An important consideration is that the VIN pin is connected directly to the input pin of the onboard voltage regulator on Arduino boards. Since the VIN pin is directly connected to the voltage regulator, the **VIN pin does not have reverse polarity protection**.
107
119
108
120
109
121
***Use the VIN pin carefully to avoid damaging your Arduino board since it does not have reverse polarity protection.***
0 commit comments