Skip to content

Commit e737cdd

Browse files
authored
Merge pull request #671 from Killaship/patch-1
Fix some grammatical errors in ReadAnalogVoltage.md
2 parents 5f41852 + 608b5d5 commit e737cdd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

content/built-in-examples/01.basics/ReadAnalogVoltage/ReadAnalogVoltage.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ The microcontroller of the board has a circuit inside called an *analog-to-digit
3636

3737
### Code
3838

39-
In the program below, the very first thing that you do will in the setup function is to begin serial communications, at 9600 bits of data per second, between your board and your computer with the line:
39+
In the program below, the very first thing you'll do will be in the setup function, to begin serial communication at 9600 bits of data per second, between your board and your computer with the line:
4040

4141
`Serial.begin(9600);`
4242

@@ -48,7 +48,7 @@ To change the values from 0-1023 to a range that corresponds to the voltage the
4848

4949
`float voltage= sensorValue * (5.0 / 1023.0);`
5050

51-
Finally, you need to print this information to your serial window as. You can do this with the command [Serial.println](https://www.arduino.cc/en/Serial/Println)() in your last line of code:
51+
Finally, you need to print this information to your serial monitor. You can do this with the command [Serial.println](https://www.arduino.cc/en/Serial/Println)() in your last line of code:
5252

5353
`Serial.println(voltage)`
5454

@@ -62,4 +62,4 @@ You can find more basic tutorials in the [built-in examples](/built-in-examples)
6262

6363
You can also explore the [language reference](https://www.arduino.cc/reference/en/), a detailed collection of the Arduino programming language.
6464

65-
*Last revision 2015/07/29 by SM*
65+
*Last revision Nov. 20, 2022 by Killaship*

0 commit comments

Comments
 (0)