Skip to content

Commit 58f8047

Browse files
authored
Fixed some typos
Ops, can believe I missed these.
1 parent 940449b commit 58f8047

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Language/Functions/Analog IO/analogRead.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ subCategories: [ "Analog I/O" ]
1212

1313
[float]
1414
=== Description
15-
Reads the value from the specified analog pin. Arduino boards contain multichannel channel, 10-bit analog to digital converter. This means that it will map input voltages between 0 and the operating voltage(5V or 3.3V) into integer values between 0 and 1023. On a Arduino UNO, for example, this yields a resolution between readings of: 5 volts / 1024 units or, 0.0049 volts (4.9 mV) per unit. See the table below for the usable pins, operating voltage and maximum resolution for some Arduino boards.
15+
Reads the value from the specified analog pin. Arduino boards contain a multichannel, 10-bit analog to digital converter. This means that it will map input voltages between 0 and the operating voltage(5V or 3.3V) into integer values between 0 and 1023. On an Arduino UNO, for example, this yields a resolution between readings of: 5 volts / 1024 units or, 0.0049 volts (4.9 mV) per unit. See the table below for the usable pins, operating voltage and maximum resolution for some Arduino boards.
1616

1717
The input range can be changed using link:../analogreference[analogReference()], while the resolution can be changed (only for Zero, Due and MKR boards) using link:../../zero-due-mkr-family/analogreadresolution[analogReadResolution()].
1818

@@ -48,7 +48,7 @@ On ATmega based boards (UNO, Nano, Mini, Mega), it takes about 100 microseconds
4848
[float]
4949
=== Returns
5050

51-
The analog reading on the pin (int). Although it is limited to resolution of the analog to digital converter (0-1023 for 10 bits or 0-4095 for 12 bits).
51+
The analog reading on the pin (int). Although it is limited to the resolution of the analog to digital converter (0-1023 for 10 bits or 0-4095 for 12 bits).
5252

5353
--
5454
// OVERVIEW SECTION ENDS

0 commit comments

Comments
 (0)